Typo in create_index regression test

From: Dean Rasheed <dean(dot)a(dot)rasheed(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Typo in create_index regression test
Date: 2025-08-04 14:10:23
Message-ID: CAEZATCV_CzRSOPMf1gbHQ7xTmyrV6kE7ViCBD6B81WF7GfTAEA@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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

Attachment Content-Type Size
v1-0001-Fix-typo-in-create_index.sql.patch text/x-patch 1.7 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tender Wang 2025-08-04 14:18:38 Re: Typo in create_index regression test
Previous Message Ashutosh Bapat 2025-08-04 13:53:38 Re: Dropping publication breaks logical replication