Re: Typo in create_index regression test

2025-08-04 Thread Dean Rasheed
On Mon, 4 Aug 2025 at 15:18, Tender Wang wrote: > > Dean Rasheed 于2025年8月4日周一 22:10写道: >> >> While looking at create_index.sql, I noticed the following: >> >> which isn't testing what it claims to test because there's a typo in >> the table name. Patch attached. > > Good catch. > LGTM. Pushed. T

Re: Typo in create_index regression test

2025-08-04 Thread Tender Wang
Dean Rasheed 于2025年8月4日周一 22:10写道: > While looking at create_index.sql, I noticed the following: > > -- > -- Check handling of indexes on system columns > -- > CREATE TABLE syscol_table (a INT); > > -- System columns cannot be indexed > CREATE INDEX ON syscolcol_table (ctid); > > which isn't test