mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Convert an extern variable to static
Similar to720b0eaae9
, fixes new code frombd15b7db48
.
This commit is contained in:
@ -112,7 +112,7 @@ typedef enum SeqType
|
|||||||
SEQTYPE_BIGINT,
|
SEQTYPE_BIGINT,
|
||||||
} SeqType;
|
} SeqType;
|
||||||
|
|
||||||
const char *const SeqTypeNames[] =
|
static const char *const SeqTypeNames[] =
|
||||||
{
|
{
|
||||||
[SEQTYPE_SMALLINT] = "smallint",
|
[SEQTYPE_SMALLINT] = "smallint",
|
||||||
[SEQTYPE_INTEGER] = "integer",
|
[SEQTYPE_INTEGER] = "integer",
|
||||||
|
Reference in New Issue
Block a user