From 8521406d5e81401ac934d495cd2eed48d2fc9e23 Mon Sep 17 00:00:00 2001 From: Roman Zharkov Date: Tue, 16 Mar 2021 15:32:53 +0700 Subject: [PATCH] Remove extra double quotes in the extension name. --- pg_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg_variables.c b/pg_variables.c index 152b5d6..d76e01f 100644 --- a/pg_variables.c +++ b/pg_variables.c @@ -2494,7 +2494,7 @@ compatibility_check(void) if (!pg_compatibility_check_no_error()) freeStatsLists(); - PG_COMPATIBILITY_CHECK("pg_variables"); + PG_COMPATIBILITY_CHECK(pg_variables); } # endif /* PG_COMPATIBILITY_CHECK */ # endif /* PG_VERSION_NUM */