Adding upstream version 25.20.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b35dbeb6b6
commit
0b78a18345
119 changed files with 78094 additions and 71498 deletions
|
@ -845,6 +845,9 @@ class TestPostgres(Validator):
|
|||
self.validate_identity("ALTER TABLE t1 SET ACCESS METHOD method")
|
||||
self.validate_identity("ALTER TABLE t1 SET TABLESPACE tablespace")
|
||||
self.validate_identity("ALTER TABLE t1 SET (fillfactor = 5, autovacuum_enabled = TRUE)")
|
||||
self.validate_identity(
|
||||
"ALTER TABLE tested_table ADD CONSTRAINT unique_example UNIQUE (column_name) NOT VALID"
|
||||
)
|
||||
self.validate_identity(
|
||||
"CREATE FUNCTION pymax(a INT, b INT) RETURNS INT LANGUAGE plpython3u AS $$\n if a > b:\n return a\n return b\n$$",
|
||||
)
|
||||
|
@ -1023,6 +1026,10 @@ class TestPostgres(Validator):
|
|||
self.validate_identity(
|
||||
"CREATE INDEX CONCURRENTLY IF NOT EXISTS ix_table_id ON tbl USING btree(id)"
|
||||
)
|
||||
self.validate_identity("DROP INDEX ix_table_id")
|
||||
self.validate_identity("DROP INDEX IF EXISTS ix_table_id")
|
||||
self.validate_identity("DROP INDEX CONCURRENTLY ix_table_id")
|
||||
self.validate_identity("DROP INDEX CONCURRENTLY IF EXISTS ix_table_id")
|
||||
|
||||
self.validate_identity(
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue