Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c526597 commit 03d55d0Copy full SHA for 03d55d0
src/utils/remote.c
@@ -260,14 +260,14 @@ static bool check_certified()
260
261
static char* extract_pg_edition_str()
262
{
263
- static char *_1C = "1C";
264
static char *vanilla = "vanilla";
+#ifdef PGPRO_EDITION
265
+ static char *_1C = "1C";
266
static char *std = "standard";
267
static char *ent = "enterprise";
268
static char *std_cert = "standard-certified";
269
static char *ent_cert = "enterprise-certified";
270
-#ifdef PGPRO_EDITION
271
if (strcmp(PGPRO_EDITION, _1C) == 0)
272
return vanilla;
273
0 commit comments