]> granicus.if.org Git - postgresql/commitdiff
Fix inconsistencies and typos in the tree
authorMichael Paquier <michael@paquier.xyz>
Mon, 22 Jul 2019 01:01:50 +0000 (10:01 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 22 Jul 2019 01:01:50 +0000 (10:01 +0900)
This is numbered take 7, and addresses a set of issues with code
comments, variable names and unreferenced variables.

Author: Alexander Lakhin
Discussion: https://postgr.es/m/dff75442-2468-f74f-568c-6006e141062f@gmail.com

44 files changed:
contrib/jsonb_plperl/jsonb_plperlu--1.0.sql
contrib/pgcrypto/pgp-compress.c
doc/src/sgml/problems.sgml
src/backend/access/common/reloptions.c
src/backend/access/gin/gindatapage.c
src/backend/access/gist/gistget.c
src/backend/access/gist/gistutil.c
src/backend/access/hash/hashovfl.c
src/backend/access/hash/hashpage.c
src/backend/access/heap/heapam.c
src/backend/access/heap/pruneheap.c
src/backend/access/index/genam.c
src/backend/access/spgist/spgscan.c
src/backend/access/transam/clog.c
src/backend/access/transam/xlog.c
src/backend/commands/trigger.c
src/backend/executor/nodeAgg.c
src/backend/executor/spi.c
src/backend/partitioning/partbounds.c
src/backend/port/win32_sema.c
src/backend/storage/ipc/procarray.c
src/backend/utils/adt/datetime.c
src/backend/utils/adt/jsonb_util.c
src/backend/utils/adt/oid.c
src/backend/utils/adt/tsvector_op.c
src/backend/utils/fmgr/fmgr.c
src/backend/utils/time/snapmgr.c
src/common/md5.c
src/include/access/ginblock.h
src/include/access/ginxlog.h
src/include/access/heapam_xlog.h
src/include/access/spgist_private.h
src/include/access/xact.h
src/include/executor/nodeAgg.h
src/include/mb/pg_wchar.h
src/include/pg_config.h.win32
src/include/utils/formatting.h
src/include/utils/jsonb.h
src/include/utils/relcache.h
src/interfaces/ecpg/ecpglib/execute.c
src/interfaces/ecpg/pgtypeslib/timestamp.c
src/pl/plpgsql/src/pl_gram.y
src/pl/tcl/pltcl.c
src/test/recovery/t/011_crash_recovery.pl

index 5a5e475ad30ba257d014d649d3410d1db95f312e..aa84b37bef728807cbf8f5b71c3fad973844464d 100644 (file)
@@ -1,4 +1,4 @@
-/* contrib/json_plperl/jsonb_plperl--1.0.sql */
+/* contrib/jsonb_plperl/jsonb_plperlu--1.0.sql */
 
 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
 \echo Use "CREATE EXTENSION jsonb_plperlu" to load this file. \quit
index eaeb221877f9119ffdbd5029bfb3883e46d7a4cb..2adaf2c8755fe6ddeb5f8ad8b01730438391915b 100644 (file)
@@ -311,7 +311,7 @@ pgp_decompress_filter(PullFilter **res, PGP_Context *ctx, PullFilter *src)
 {
        return pullf_create(res, &decompress_filter, ctx, src);
 }
-#else                                                  /* !HAVE_ZLIB */
+#else                                                  /* !HAVE_LIBZ */
 
 int
 pgp_compress_filter(PushFilter **res, PGP_Context *ctx, PushFilter *dst)
index 02ed975ec2ffcec406eb907d54c9a08f94403c76..cf432628721139f2056cd46a885a1ab7285fb2f6 100644 (file)
       C library, processor, memory information, and so on. In most
       cases it is sufficient to report the vendor and version, but do
       not assume everyone knows what exactly <quote>Debian</quote>
-      contains or that everyone runs on i386s. If you have
+      contains or that everyone runs on x86_64. If you have
       installation problems then information about the toolchain on
       your machine (compiler, <application>make</application>, and so
       on) is also necessary.
index 577302149931b53087c12333266ae941d26e1937..42647b052654957009560f4780eb57e03d0c97d7 100644 (file)
@@ -69,7 +69,7 @@
  * currently executing.
  *
  * Fillfactor can be set because it applies only to subsequent changes made to
- * data blocks, as documented in heapio.c
+ * data blocks, as documented in hio.c
  *
  * n_distinct options can be set at ShareUpdateExclusiveLock because they
  * are only used during ANALYZE, which uses a ShareUpdateExclusiveLock,
index 57c3b830d85b4704141936f333b08a4ff9bc59c7..21de8ed714df17baa5b3ee4147b2472e536efcea 100644 (file)
@@ -92,7 +92,7 @@ typedef struct
 
        /*
         * The following fields represent the items in this segment. If 'items' is
-        * not NULL, it contains a palloc'd array of the itemsin this segment. If
+        * not NULL, it contains a palloc'd array of the items in this segment. If
         * 'seg' is not NULL, it contains the items in an already-compressed
         * format. It can point to an on-disk page (!modified), or a palloc'd
         * segment in memory. If both are set, they must represent the same items.
index 8108fbb7d8e6968ca25ab8e46bbca6e2b25ca8e8..46d08e0635042b79d3656f2578ff8775b8aa0782 100644 (file)
@@ -663,7 +663,7 @@ gistgettuple(IndexScanDesc scan, ScanDirection dir)
                        }
 
                        /*
-                        * Check the last returned tuple and add it to killitems if
+                        * Check the last returned tuple and add it to killedItems if
                         * necessary
                         */
                        if (scan->kill_prior_tuple
index 49df05653b31273a57c03179d3b22b7026b9ddd8..7d1b219bbc83805930d1cdd8037794860283303d 100644 (file)
@@ -120,7 +120,7 @@ gistjoinvector(IndexTuple *itvec, int *len, IndexTuple *additvec, int addlen)
 }
 
 /*
- * make plain IndexTupleVector
+ * make plain IndexTuple vector
  */
 
 IndexTupleData *
index a07bd27a0e3d73ad142f7cb7a40ea69714cdbf9a..487103fb79873f6490faebb9aa9bfde34c233c48 100644 (file)
@@ -793,7 +793,7 @@ _hash_initbitmapbuffer(Buffer buf, uint16 bmsize, bool initpage)
  *     be confused into returning the same tuple more than once or some tuples
  *     not at all by the rearrangement we are performing here.  To prevent
  *     any concurrent scan to cross the squeeze scan we use lock chaining
- *     similar to hasbucketcleanup.  Refer comments atop hashbucketcleanup.
+ *     similar to hashbucketcleanup.  Refer comments atop hashbucketcleanup.
  *
  *     We need to retain a pin on the primary bucket to ensure that no concurrent
  *     split can start.
index 376ee2a63b524e065e4b041225e7fc7dc7bc2eda..defdc9b4085ceefa04afcf7a2aafa2a40fb29d73 100644 (file)
@@ -509,7 +509,7 @@ _hash_init_metabuffer(Buffer buf, double num_tuples, RegProcedure procid,
         * Choose the number of initial bucket pages to match the fill factor
         * given the estimated number of tuples.  We round up the result to the
         * total number of buckets which has to be allocated before using its
-        * _hashm_spare element. However always force at least 2 bucket pages. The
+        * hashm_spares element. However always force at least 2 bucket pages. The
         * upper limit is determined by considerations explained in
         * _hash_expandtable().
         */
index d768b9b061cd976eb9aecb3c760131c091a13e99..94309949fac3380a4f8a58617ccb7d2403b9d448 100644 (file)
@@ -102,7 +102,7 @@ static void MultiXactIdWait(MultiXactId multi, MultiXactStatus status, uint16 in
 static bool ConditionalMultiXactIdWait(MultiXactId multi, MultiXactStatus status,
                                                                           uint16 infomask, Relation rel, int *remaining);
 static XLogRecPtr log_heap_new_cid(Relation relation, HeapTuple tup);
-static HeapTuple ExtractReplicaIdentity(Relation rel, HeapTuple tup, bool key_modified,
+static HeapTuple ExtractReplicaIdentity(Relation rel, HeapTuple tup, bool key_changed,
                                                                                bool *copy);
 
 
index 0efe3ce999540e9e442d1bfba7471e74014e7a57..a0d22173cefa6c90e92afae2576d94e940f2cf16 100644 (file)
@@ -256,7 +256,7 @@ heap_page_prune(Relation relation, Buffer buffer, TransactionId OldestXmin,
                MarkBufferDirty(buffer);
 
                /*
-                * Emit a WAL HEAP_CLEAN record showing what we did
+                * Emit a WAL XLOG_HEAP2_CLEAN record showing what we did
                 */
                if (RelationNeedsWAL(relation))
                {
index 42aaa5bad62c9054767b54517dd48dc493ffd98b..2599b5d3425fc95ab8d13b8b37f85244a4576de6 100644 (file)
@@ -557,8 +557,8 @@ systable_endscan(SysScanDesc sysscan)
  * we could do a heapscan and sort, but the uses are in places that
  * probably don't need to still work with corrupted catalog indexes.)
  * For the moment, therefore, these functions are merely the thinnest of
- * wrappers around index_beginscan/index_getnext.  The main reason for their
- * existence is to centralize possible future support of lossy operators
+ * wrappers around index_beginscan/index_getnext_slot.  The main reason for
+ * their existence is to centralize possible future support of lossy operators
  * in catalog scans.
  */
 SysScanDesc
index 557dd18d7e8aad986a8facd28c3e31494e20945e..1cf28ecf2fdea7f829ee273fabf8f1551284578f 100644 (file)
@@ -643,7 +643,7 @@ spgInnerTest(SpGistScanOpaque so, SpGistSearchItem *item,
                                continue;
 
                        /*
-                        * Use infinity distances if innerConsistent() failed to return
+                        * Use infinity distances if innerConsistentFn() failed to return
                         * them or if is a NULL item (their distances are really unused).
                         */
                        distances = out.distances ? out.distances[i] : so->infDistances;
index d78f706ff7f51fa2b0a3d204c72e7eec89fb8647..34c74d96f8e22fe16f1abcfb9aa8f24a6078eec8 100644 (file)
@@ -891,7 +891,7 @@ ExtendCLOG(TransactionId newestXact)
  * Remove all CLOG segments before the one holding the passed transaction ID
  *
  * Before removing any CLOG data, we must flush XLOG to disk, to ensure
- * that any recently-emitted HEAP_FREEZE records have reached disk; otherwise
+ * that any recently-emitted FREEZE_PAGE records have reached disk; otherwise
  * a crash and restart might leave us with some unfrozen tuples referencing
  * removed CLOG data.  We choose to emit a special TRUNCATE XLOG record too.
  * Replaying the deletion from XLOG is not critical, since the files could
index b6c9353cbd298eb201cea1283c64736027c05a08..da3d25098608f86e3a932124a3cb9c5cf112cde8 100644 (file)
@@ -9158,7 +9158,7 @@ CreateRestartPoint(int flags)
 
        /*
         * Update pg_control, using current time.  Check that it still shows
-        * IN_ARCHIVE_RECOVERY state and an older checkpoint, else do nothing;
+        * DB_IN_ARCHIVE_RECOVERY state and an older checkpoint, else do nothing;
         * this is a quick hack to make sure nothing really bad happens if somehow
         * we get here after the end-of-recovery checkpoint.
         */
index ee878d70a91b3fe46968fd373b88f3d43a1162c7..2d9a8e9d5411cf92e5987766d95ee30557d8e547 100644 (file)
@@ -775,7 +775,7 @@ CreateTrigger(CreateTrigStmt *stmt, const char *queryString,
                                                                                          NULL,
                                                                                          true, /* islocal */
                                                                                          0,    /* inhcount */
-                                                                                         true, /* isnoinherit */
+                                                                                         true, /* noinherit */
                                                                                          isInternal);  /* is_internal */
        }
 
index cb4ab4b21e9e9ad67f1bff8b025e224b49ec26d8..2342ca30185e02a8732d799ff052ea63980b0372 100644 (file)
@@ -2988,8 +2988,8 @@ build_pertrans_for_aggref(AggStatePerTrans pertrans,
                numTransArgs = pertrans->numTransInputs + 1;
 
                /*
-                * Set up infrastructure for calling the transfn.  Note that invtrans
-                * is not needed here.
+                * Set up infrastructure for calling the transfn.  Note that
+                * invtransfn is not needed here.
                 */
                build_aggregate_transfn_expr(inputTypes,
                                                                         numArguments,
index 74f8d89bcb1c25e83aee5166027124189c2a3c10..b8eb83b2e0aa2bdba38bca7f237df21780da032b 100644 (file)
@@ -2369,7 +2369,7 @@ _SPI_execute_plan(SPIPlanPtr plan, ParamListInfo paramLI,
                        /*
                         * The last canSetTag query sets the status values returned to the
                         * caller.  Be careful to free any tuptables not returned, to
-                        * avoid intratransaction memory leak.
+                        * avoid intra-transaction memory leak.
                         */
                        if (canSetTag)
                        {
index 7d8907b2b4237054feaaf38f1b14fb48624f2117..d7ef942973cba785f76929d022c586ad89701bb9 100644 (file)
@@ -2835,7 +2835,7 @@ satisfies_hash_partition(PG_FUNCTION_ARGS)
                PartitionKey key;
                int                     j;
 
-               /* Open parent relation and fetch partition keyinfo */
+               /* Open parent relation and fetch partition key info */
                parent = try_relation_open(parentId, AccessShareLock);
                if (parent == NULL)
                        PG_RETURN_NULL();
index f08fbd16908e0720b8522ede0aa27e7cb2c34a1e..013c122451d20ef1f050bb420be00ec00b6aa3ef 100644 (file)
@@ -127,7 +127,6 @@ PGSemaphoreReset(PGSemaphore sema)
  * PGSemaphoreLock
  *
  * Lock a semaphore (decrement count), blocking if count would be < 0.
- * Serve the interrupt if interruptOK is true.
  */
 void
 PGSemaphoreLock(PGSemaphore sema)
index ea02973dc73dec524f1b7b1829c1b644f341173e..ae6780011b895ce8ba3cff655671e5b7d05df566 100644 (file)
@@ -3130,7 +3130,7 @@ DisplayXidCache(void)
 
 
 /* ----------------------------------------------
- *             KnownAssignedTransactions sub-module
+ *             KnownAssignedTransactionIds sub-module
  * ----------------------------------------------
  */
 
index 54ea69f7f163cbbe29946392c011d206e070bcab..4d8db1a0604762f1d214d527551e2cb2ae82b7bd 100644 (file)
@@ -1855,7 +1855,7 @@ DecodeTimeOnly(char **field, int *ftype, int nf,
 
                                /*
                                 * Was this an "ISO time" with embedded field labels? An
-                                * example is "h04m05s06" - thomas 2001-02-04
+                                * example is "h04mm05s06" - thomas 2001-02-04
                                 */
                                if (ptype != 0)
                                {
index 7969f6f58435ff836417f5bb438b1d3fb72008da..ac04c4a57bc134210ab866f3fd61928ddada2223 100644 (file)
@@ -510,7 +510,7 @@ fillJsonbValue(JsonbContainer *container, int index,
  * "raw scalar" pseudo array to append it - the actual scalar should be passed
  * next and it will be added as the only member of the array.
  *
- * Values of type jvbBinary, which are rolled up arrays and objects,
+ * Values of type jbvBinary, which are rolled up arrays and objects,
  * are unpacked before being added to the result.
  */
 JsonbValue *
index bb67e0149968ed144a9c21d289decb8ce69cafde..778d186f5b819014cf75117887ace4929a3baf2f 100644 (file)
@@ -308,7 +308,7 @@ oidvectorsend(PG_FUNCTION_ARGS)
 }
 
 /*
- *             oidparse                                - get OID from IConst/FConst node
+ *             oidparse                                - get OID from ICONST/FCONST node
  */
 Oid
 oidparse(Node *node)
index 4f7bafd142e4a5ca424b1e798a6642e5c0d12231..696a7fdf914689e7d3a9fe88bc88528f9cfff466 100644 (file)
@@ -1152,7 +1152,7 @@ tsvector_concat(PG_FUNCTION_ARGS)
 /*
  * Compare two strings by tsvector rules.
  *
- * if isPrefix = true then it returns zero value iff b has prefix a
+ * if prefix = true then it returns zero value iff b has prefix a
  */
 int32
 tsCompareString(char *a, int lena, char *b, int lenb, bool prefix)
index 9b640ccd406d2fcbfb7c331169b6ced7919852c8..99c34516bd639298a3123ce99c6741d876abb419 100644 (file)
@@ -217,7 +217,7 @@ fmgr_info_cxt_security(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt,
 
                        /*
                         * For an ordinary builtin function, we should never get here
-                        * because the isbuiltin() search above will have succeeded.
+                        * because the fmgr_isbuiltin() search above will have succeeded.
                         * However, if the user has done a CREATE FUNCTION to create an
                         * alias for a builtin function, we can end up here.  In that case
                         * we have to look up the function by name.  The name of the
index ef9fc15ac368540109ba692f42028b95da773dc3..6690d781379be4e9187df6dd6bf449915275592f 100644 (file)
@@ -1093,7 +1093,7 @@ AtEOXact_Snapshot(bool isCommit, bool resetXmin)
                 * prevent a warning below.
                 *
                 * As with the FirstXactSnapshot, we don't need to free resources of
-                * the snapshot iself as it will go away with the memory context.
+                * the snapshot itself as it will go away with the memory context.
                 */
                foreach(lc, exportedSnapshots)
                {
index 24b96eb31495c3b2c17ef10e920481ba988a8115..55eaeed828660b64015b6054d56ff11b58a468cd 100644 (file)
@@ -277,7 +277,7 @@ bytesToHex(uint8 b[16], char *s)
  *
  *     OUTPUT            hexsum  the MD5 sum as a '\0'-terminated string of
  *                                               hexadecimal digits.  an MD5 sum is 16 bytes long.
- *                                               each byte is represented by two heaxadecimal
+ *                                               each byte is represented by two hexadecimal
  *                                               characters.  you thus need to provide an array
  *                                               of 33 characters, including the trailing '\0'.
  *
index 5fd397c136040b98d875947e48a0c5b17d2b8baf..e7d49b152eb9589e172a231719e0d62ee8adfadf 100644 (file)
@@ -171,9 +171,6 @@ typedef struct GinMetaPageData
         GinItemPointerGetBlockNumber(p) == (BlockNumber)0)
 #define ItemPointerSetMax(p)  \
        ItemPointerSet((p), InvalidBlockNumber, (OffsetNumber)0xffff)
-#define ItemPointerIsMax(p)  \
-       (GinItemPointerGetOffsetNumber(p) == (OffsetNumber)0xffff && \
-        GinItemPointerGetBlockNumber(p) == InvalidBlockNumber)
 #define ItemPointerSetLossyPage(p, b)  \
        ItemPointerSet((p), (b), (OffsetNumber)0xffff)
 #define ItemPointerIsLossyPage(p)  \
index 2c5d743caceb7b0ff25e25f6857931f3f66f0dfb..7ef3bcf765875b021b548da42b9ee9f420394981 100644 (file)
@@ -127,7 +127,7 @@ typedef struct ginxlogSplit
 
 /*
  * Vacuum simply WAL-logs the whole page, when anything is modified. This
- * is functionally identical to heap_newpage records, but is kept separate for
+ * is functionally identical to XLOG_FPI records, but is kept separate for
  * debugging purposes. (When inspecting the WAL stream, it's easier to see
  * what's going on when GIN vacuum records are marked as such, not as heap
  * records.) This is currently only used for entry tree leaf pages.
index f6cdca83eab5620b53696a94489666f22477e500..9629db9df4e9577af57628386174e70c2f937913 100644 (file)
@@ -195,14 +195,14 @@ typedef struct xl_multi_insert_tuple
  *
  * Backup blk 0: new page
  *
- * If XLOG_HEAP_PREFIX_FROM_OLD or XLOG_HEAP_SUFFIX_FROM_OLD flags are set,
+ * If XLH_UPDATE_PREFIX_FROM_OLD or XLH_UPDATE_SUFFIX_FROM_OLD flags are set,
  * the prefix and/or suffix come first, as one or two uint16s.
  *
  * After that, xl_heap_header and new tuple data follow.  The new tuple
  * data doesn't include the prefix and suffix, which are copied from the
  * old tuple on replay.
  *
- * If HEAP_CONTAINS_NEW_TUPLE_DATA flag is given, the tuple data is
+ * If XLH_UPDATE_CONTAINS_NEW_TUPLE flag is given, the tuple data is
  * included even if a full-page image was taken.
  *
  * Backup blk 1: old page, if different. (no data, just a reference to the blk)
@@ -217,8 +217,8 @@ typedef struct xl_heap_update
        OffsetNumber new_offnum;        /* new tuple's offset */
 
        /*
-        * If XLOG_HEAP_CONTAINS_OLD_TUPLE or XLOG_HEAP_CONTAINS_OLD_KEY flags are
-        * set, a xl_heap_header struct and tuple data for the old tuple follows.
+        * If XLH_UPDATE_CONTAINS_OLD_TUPLE or XLH_UPDATE_CONTAINS_OLD_KEY flags
+        * are set, xl_heap_header and tuple data for the old tuple follow.
         */
 } xl_heap_update;
 
index 4a389387325c2780a2677e8718c3c6fd84b13b5d..e0d1178f24572801a9b33f87274ee8c126ac9a14 100644 (file)
@@ -328,7 +328,7 @@ typedef struct SpGistLeafTupleData
 {
        unsigned int tupstate:2,        /* LIVE/REDIRECT/DEAD/PLACEHOLDER */
                                size:30;                /* large enough for any palloc'able value */
-       OffsetNumber nextOffset;        /* next tuple in chain, or InvalidOffset */
+       OffsetNumber nextOffset;        /* next tuple in chain, or InvalidOffsetNumber */
        ItemPointerData heapPtr;        /* TID of represented heap tuple */
        /* leaf datum follows */
 } SpGistLeafTupleData;
index a20726afa0e10d66fae29ed8c3e19786d514a9d3..d7145517047c4be82534b79821888f51d0e4dcb0 100644 (file)
@@ -283,8 +283,8 @@ typedef struct xl_xact_abort
 
        /* xl_xact_xinfo follows if XLOG_XACT_HAS_INFO */
        /* xl_xact_dbinfo follows if XINFO_HAS_DBINFO */
-       /* xl_xact_subxacts follows if HAS_SUBXACT */
-       /* xl_xact_relfilenodes follows if HAS_RELFILENODES */
+       /* xl_xact_subxacts follows if XINFO_HAS_SUBXACT */
+       /* xl_xact_relfilenodes follows if XINFO_HAS_RELFILENODES */
        /* No invalidation messages needed. */
        /* xl_xact_twophase follows if XINFO_HAS_TWOPHASE */
        /* twophase_gid follows if XINFO_HAS_GID. As a null-terminated string. */
index 30541361301efb8350bb194cfc0ae08509400767..1a8ca98a8c3bd35a07242ef8e3f7fc5b92f0b595 100644 (file)
@@ -300,7 +300,7 @@ typedef struct AggStatePerHashData
        int                     numhashGrpCols; /* number of columns in hash table */
        int                     largestGrpColIdx;       /* largest col required for hashing */
        AttrNumber *hashGrpColIdxInput; /* hash col indices in input slot */
-       AttrNumber *hashGrpColIdxHash;  /* indices in hashtbl tuples */
+       AttrNumber *hashGrpColIdxHash;  /* indices in hash table tuples */
        Agg                *aggnode;            /* original Agg node, for numGroups etc. */
 }                      AggStatePerHashData;
 
index 60c561579930123ab33399734aa742544f1eb209..0339b98041d06c58c10c6c42eefa176253a79d32 100644 (file)
@@ -544,7 +544,7 @@ extern int  pg_mbstrlen_with_len(const char *mbstr, int len);
 extern int     pg_mbcliplen(const char *mbstr, int len, int limit);
 extern int     pg_encoding_mbcliplen(int encoding, const char *mbstr,
                                                                  int len, int limit);
-extern int     pg_mbcharcliplen(const char *mbstr, int len, int imit);
+extern int     pg_mbcharcliplen(const char *mbstr, int len, int limit);
 extern int     pg_encoding_max_length(int encoding);
 extern int     pg_database_encoding_max_length(void);
 extern mbcharacter_incrementer pg_database_encoding_character_incrementer(void);
index 8e35cf0a037b3cef8b201b66a5c4f18b5224b50e..2d903c82b80d6231c4223774998354a4ae9ce8d1 100644 (file)
 /* Define to 1 if you have the <editline/readline.h> header file. */
 /* #undef HAVE_EDITLINE_READLINE_H */
 
-/* Define to 1 if you have the `fcvt' function. */
-#define HAVE_FCVT 1
-
 /* Define to 1 if you have the `fdatasync' function. */
 /* #undef HAVE_FDATASYNC */
 
-/* Define to 1 if you have finite(). */
-#define HAVE_FINITE 1
-
 /* Define to 1 if you have the `fpclass' function. */
 /* #undef HAVE_FPCLASS */
 
 /* Define to 1 if `__ss_len' is member of `struct sockaddr_storage'. */
 /* #undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN */
 
-/* Define to 1 if the system has the type `struct sockaddr_un'. */
-/* #undef HAVE_STRUCT_SOCKADDR_UN */
-
 /* Define to 1 if `tm_zone' is member of `struct tm'. */
 /* #undef HAVE_STRUCT_TM_TM_ZONE */
 
 /* Define to 1 if you have the `sync_file_range' function. */
 /* #undef HAVE_SYNC_FILE_RANGE */
 
-/* Define to 1 if you have the `sysconf' function. */
-/* #undef HAVE_SYSCONF */
-
 /* Define to 1 if you have the syslog interface. */
 /* #undef HAVE_SYSLOG */
 
index 5b275dc9850437b46876b4dfe11935d382a01e76..741c5f4809fa7548227cf55725b9ad7d75e72b21 100644 (file)
@@ -7,7 +7,7 @@
  *      Portions Copyright (c) 1999-2019, PostgreSQL Global Development Group
  *
  *      The PostgreSQL routines for a DateTime/int/float/numeric formatting,
- *      inspire with Oracle TO_CHAR() / TO_DATE() / TO_NUMBER() routines.
+ *      inspired by the Oracle TO_CHAR() / TO_DATE() / TO_NUMBER() routines.
  *
  *      Karel Zak
  *
index 2fe7d32fec2d043042d8f1d09a9a52507e3b705f..ac52b75f51d8496dd3c8724a85746d0422b30cce 100644 (file)
@@ -367,7 +367,7 @@ extern JsonbValue *findJsonbValueFromContainer(JsonbContainer *sheader,
 extern JsonbValue *getIthJsonbValueFromContainer(JsonbContainer *sheader,
                                                                                                 uint32 i);
 extern JsonbValue *pushJsonbValue(JsonbParseState **pstate,
-                                                                 JsonbIteratorToken seq, JsonbValue *jbVal);
+                                                                 JsonbIteratorToken seq, JsonbValue *jbval);
 extern JsonbIterator *JsonbIteratorInit(JsonbContainer *container);
 extern JsonbIteratorToken JsonbIteratorNext(JsonbIterator **it, JsonbValue *val,
                                                                                        bool skipNested);
index d9c10ffcbafb8b673538309a1ab12e00a15ac54d..2f2ace35b051649cfd36e0bbf8c5cc2e161405e5 100644 (file)
@@ -59,7 +59,7 @@ typedef enum IndexAttrBitmapKind
 } IndexAttrBitmapKind;
 
 extern Bitmapset *RelationGetIndexAttrBitmap(Relation relation,
-                                                                                        IndexAttrBitmapKind keyAttrs);
+                                                                                        IndexAttrBitmapKind attrKind);
 
 extern void RelationGetExclusionInfo(Relation indexRelation,
                                                                         Oid **operators,
index 4394b420a15e84b04bbadccd4327cdcd0c96b0cd..4e2016c7aea6d05fff346d529ff5a2a67022e73c 100644 (file)
@@ -2073,9 +2073,9 @@ ecpg_do_prologue(int lineno, const int compat, const int force_indicator,
         * offset - offset between ith and (i+1)th entry in an array, normally
         * that means sizeof(type)
         * ind_type - type of indicator variable
-        * ind_value - pointer to indicator variable
+        * ind_pointer - pointer to indicator variable
         * ind_varcharsize - empty
-        * ind_arraysize - arraysize of indicator array
+        * ind_arrsize - arraysize of indicator array
         * ind_offset - indicator offset
         *------
         */
index efd9f3aa7198ce0c0db7eec3aadbc4eb8e0563f8..e830ee737e7e891133ac301e720e2403f97b8d3e 100644 (file)
@@ -275,8 +275,8 @@ PGTYPEStimestamp_to_asc(timestamp tstamp)
                           *tm = &tt;
        char            buf[MAXDATELEN + 1];
        fsec_t          fsec;
-       int                     DateStyle = 1;  /* this defaults to ISO_DATES, shall we make
-                                                                * it an option? */
+       int                     DateStyle = 1;  /* this defaults to USE_ISO_DATES, shall we
+                                                                * make it an option? */
 
        if (TIMESTAMP_NOT_FINITE(tstamp))
                EncodeSpecialTimestamp(tstamp, buf);
index dea95f42308c4555517831165b540f82a6d9c49a..a82930e81d9b99e0e52cb5a02729a461d227d481 100644 (file)
@@ -3691,7 +3691,7 @@ plpgsql_sql_error_callback(void *arg)
                        internalerrposition(myerrpos + errpos - cbarg->leaderlen - 1);
        }
 
-       /* In any case, flush errposition --- we want internalerrpos only */
+       /* In any case, flush errposition --- we want internalerrposition only */
        errposition(0);
 }
 
index eecd2032d878a1d34c51c03fc6fa7ed612fb0336..b318854d6c266b63441b72cfabf628156d37f31b 100644 (file)
@@ -1634,7 +1634,7 @@ compile_pltcl_function(Oid fn_oid, Oid tgreloid,
 
                /************************************************************
                 * prefix procedure body with
-                * upvar #0 <internal_procname> GD
+                * upvar #0 <internal_proname> GD
                 * and with appropriate setting of arguments
                 ************************************************************/
                Tcl_DStringAppend(&proc_internal_body, "upvar #0 ", -1);
index 5dc52412cadd88fef45f2694d7cb8311d9ccd5a5..526a3481fb567fe060de91abf7f9eeb50e53193e 100644 (file)
@@ -51,7 +51,7 @@ my $xid = $stdout;
 chomp($xid);
 
 is($node->safe_psql('postgres', qq[SELECT txid_status('$xid');]),
-       'in progress', 'own xid is in-progres');
+       'in progress', 'own xid is in-progress');
 
 # Crash and restart the postmaster
 $node->stop('immediate');