diff options
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index ef5b34a3126..701bd73f5ee 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8271,7 +8271,6 @@ ATExecSetStorage(Relation rel, const char *colName, Node *newValue, LOCKMODE loc AttrNumber attnum; ObjectAddress address; - Assert(IsA(newValue, String)); storagemode = strVal(newValue); if (pg_strcasecmp(storagemode, "plain") == 0) @@ -16171,7 +16170,6 @@ ATExecSetCompression(AlteredTableInfo *tab, char cmethod; ObjectAddress address; - Assert(IsA(newValue, String)); compression = strVal(newValue); attrel = table_open(AttributeRelationId, RowExclusiveLock); |