projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c671e14
)
Convert an extern variable to static
author
Peter Eisentraut
<
[email protected]
>
Thu, 1 Aug 2024 09:59:29 +0000
(11:59 +0200)
committer
Peter Eisentraut
<
[email protected]
>
Thu, 1 Aug 2024 10:43:26 +0000
(12:43 +0200)
Similar to
720b0eaae9b
, fixes new code from
bd15b7db489
.
src/bin/pg_dump/pg_dump.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/pg_dump.c
b/src/bin/pg_dump/pg_dump.c
index 0d0251627384ba9143b9e09735cd83850228ec49..79190470f7139406ee401dd80b2b06692766150c 100644
(file)
--- a/
src/bin/pg_dump/pg_dump.c
+++ b/
src/bin/pg_dump/pg_dump.c
@@
-112,7
+112,7
@@
typedef enum SeqType
SEQTYPE_BIGINT,
} SeqType;
-const char *const SeqTypeNames[] =
+
static
const char *const SeqTypeNames[] =
{
[SEQTYPE_SMALLINT] = "smallint",
[SEQTYPE_INTEGER] = "integer",