summaryrefslogtreecommitdiff
path: root/src/backend/nodes
diff options
context:
space:
mode:
authorPeter Eisentraut2024-02-20 10:10:59 +0000
committerPeter Eisentraut2024-02-20 10:10:59 +0000
commit74563f6b90216180fc13649725179fc119dddeb5 (patch)
treedb420dbac5843e3ba963da90447b0b0533515a79 /src/backend/nodes
parentd2ca9a50b5b99ef29aa65b68b5e6ddb253fbb04a (diff)
Revert "Improve compression and storage support with inheritance"
This reverts commit 0413a556990ba628a3de8a0b58be020fd9a14ed0. pg_dump cannot currently dump all the structures that are allowed by this patch. This needs more work in pg_dump and more test coverage. Discussion: https://www.postgresql.org/message-id/flat/[email protected]
Diffstat (limited to 'src/backend/nodes')
-rw-r--r--src/backend/nodes/makefuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/makefuncs.c b/src/backend/nodes/makefuncs.c
index 86b8dcfe7ea..a02332a1ecb 100644
--- a/src/backend/nodes/makefuncs.c
+++ b/src/backend/nodes/makefuncs.c
@@ -500,7 +500,7 @@ makeColumnDef(const char *colname, Oid typeOid, int32 typmod, Oid collOid)
n->is_local = true;
n->is_not_null = false;
n->is_from_type = false;
- n->storage_name = NULL;
+ n->storage = 0;
n->raw_default = NULL;
n->cooked_default = NULL;
n->collClause = NULL;