mirror of
https://github.com/postgres/postgres.git
synced 2025-11-22 12:22:45 +03:00
Turn a few 'validnsps' static variables into locals
There was no need for these to be static buffers, local variables work just as well. I think they were marked as 'static' to imply that they are read-only, but 'const' is more appropriate for that, so change them to const. To make it possible to mark the variables as 'const', also add 'const' decorations to the transformRelOptions() signature. Reviewed-by: Andres Freund Discussion: https://www.postgresql.org/message-id/54c29fb0-edf2-48ea-9814-44e918bbd6e8@iki.fi
This commit is contained in:
@@ -1155,7 +1155,7 @@ ProcessUtilitySlow(ParseState *pstate,
|
||||
{
|
||||
CreateStmt *cstmt = (CreateStmt *) stmt;
|
||||
Datum toast_options;
|
||||
static char *validnsps[] = HEAP_RELOPT_NAMESPACES;
|
||||
const char *const validnsps[] = HEAP_RELOPT_NAMESPACES;
|
||||
|
||||
/* Remember transformed RangeVar for LIKE */
|
||||
table_rv = cstmt->relation;
|
||||
|
||||
Reference in New Issue
Block a user