multi_name_lengths

remove citus-tools

normalization added

normlize update

update

update

update

update

.

update

.

revert some files

update

update

update

update
pull/7726/head
Mehmet YILMAZ 2024-11-06 11:59:53 +00:00 committed by naisila
parent d5f067a03f
commit 61ac31fbcc
1 changed files with 5 additions and 0 deletions

View File

@ -319,3 +319,8 @@ s/COPY DEFAULT only available using COPY FROM/COPY DEFAULT cannot be used with C
s/COPY delimiter must not appear in the DEFAULT specification/COPY delimiter character must not appear in the DEFAULT specification/
#endif /* PG_VERSION_NUM < PG_VERSION_17 */
# PG 17 Removes outer parentheses from CHECK constraints
# we add them back for pg15,pg16 compatibility
# e.g. change CHECK other_col >= 100 to CHECK (other_col >= 100)
s/\| CHECK ([a-zA-Z])(.*)/| CHECK \(\1\2\)/g