We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e182060 + ac5332e commit be6fbcaCopy full SHA for be6fbca
1 file changed
pgtt.c
@@ -1685,7 +1685,11 @@ create_temporary_table_internal(Oid parent_relid, bool preserved)
1685
if (IsA(cur_stmt, CreateStmt))
1686
{
1687
Datum toast_options;
1688
+#if PG_VERSION_NUM < 180000
1689
static char *validnsps[] = HEAP_RELOPT_NAMESPACES;
1690
+#else
1691
+ const char *validnsps[] = HEAP_RELOPT_NAMESPACES;
1692
+#endif
1693
Oid temp_relowner;
1694
1695
/* Temporary table owner must be current user */
0 commit comments