mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Support writing "CREATE/ALTER TABLE ... SET STORAGE DEFAULT".
We already allow explicitly writing DEFAULT for SET COMPRESSION, so it seems a bit inflexible and non-orthogonal to not have it for STORAGE. Aleksander Alekseev Discussion: https://postgr.es/m/CAJ7c6TMX9ui+6y3TQFaXJYVpZyBukvqhQbVDJ8OUokeLRhtnpA@mail.gmail.com
This commit is contained in:
@ -3758,6 +3758,7 @@ opt_column_compression:
|
||||
|
||||
column_storage:
|
||||
STORAGE ColId { $$ = $2; }
|
||||
| STORAGE DEFAULT { $$ = pstrdup("default"); }
|
||||
;
|
||||
|
||||
opt_column_storage:
|
||||
|
Reference in New Issue
Block a user