Re: minor refactor on src/test/modules/test_ddl_deparse/sql/alter_table.sql

2025-12-10 Thread Heikki Linnakangas
On 25/08/2025 04:05, Chao Li wrote: On Aug 25, 2025, at 08:00, jian he wrote: in src/test/modules/test_ddl_deparse/sql/alter_table.sql: The test initially focuses on the "parent" table, then switches to the "part" table, and goes back to the "parent" table. This seems weird?  so I slight

Re: minor refactor on src/test/modules/test_ddl_deparse/sql/alter_table.sql

2025-08-24 Thread Chao Li
> On Aug 25, 2025, at 08:00, jian he wrote: > > hi. > > in src/test/modules/test_ddl_deparse/sql/alter_table.sql: > > > The test initially focuses on the "parent" table, then switches to the "part" > table, and goes back to the "parent" table. > This seems weird? so I slightly adjusted

minor refactor on src/test/modules/test_ddl_deparse/sql/alter_table.sql

2025-08-24 Thread jian he
hi. in src/test/modules/test_ddl_deparse/sql/alter_table.sql: ALTER TABLE parent ADD CONSTRAINT a_pos CHECK (a > 0); CREATE TABLE part ( a int ) PARTITION BY RANGE (a); CREATE TABLE part1 PARTITION OF part FOR VALUES FROM (1) to (100); CREATE TABLE part2 (a int);