Thread
Commits
-
Fix typo in create_index.sql.
- 747e869af613 13.22 landed
- 0c27d80d5f0f 14.19 landed
- 8748148d6102 15.14 landed
- 112945a61e23 16.10 landed
- 191110b8ff62 17.6 landed
- 347b6a1fffc8 18.0 landed
- 88f0fdabead5 19 (unreleased) landed
-
Typo in create_index regression test
Dean Rasheed <dean.a.rasheed@gmail.com> — 2025-08-04T14:10:23Z
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 testing what it claims to test because there's a typo in the table name. Patch attached. Regards, Dean
-
Re: Typo in create_index regression test
Tender Wang <tndrwang@gmail.com> — 2025-08-04T14:18:38Z
Dean Rasheed <dean.a.rasheed@gmail.com> 于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 testing what it claims to test because there's a typo in > the table name. Patch attached. > Good catch. LGTM. -- Thanks, Tender Wang
-
Re: Typo in create_index regression test
Dean Rasheed <dean.a.rasheed@gmail.com> — 2025-08-04T15:47:37Z
On Mon, 4 Aug 2025 at 15:18, Tender Wang <tndrwang@gmail.com> wrote: > > Dean Rasheed <dean.a.rasheed@gmail.com> 于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. Thanks for looking. Regards, Dean