We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentfc67e1f commitfd9d665Copy full SHA for fd9d665
src/backend/utils/misc/check_guc
@@ -11,14 +11,14 @@
11
## Problems
12
## 1) Don't know what to do with TRANSACTION ISOLATION LEVEL
13
14
-## if an option is valid but shows up in only one file (guc.h or
+## if an option is valid but shows up in only one file (guc.c or
15
## postgresql.conf.sample, it should be listed here so that it
16
## can be ignored
17
INTENTIONALLY_NOT_INCLUDED="pre_auth_delay lc_messages lc_monetary\
18
lc_time lc_numeric fixbtree"
19
20
### What options are listed in postgresql.conf.sample, but don't appear
21
-### in guc.h?
+### in guc.c?
22
23
# grab everything that looks like a setting and convert it to lower case
24
SETTINGS=`grep' =' postgresql.conf.sample|
@@ -45,7 +45,7 @@ for i in $SETTINGS ; do
45
fi
46
done
47
48
-### What options are listed in guc.h, but don't appear
+### What options are listed in guc.c, but don't appear
49
### in postgresql.conf.sample?
50
51