Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix missing indexes by quoting schema/table name to ::regclass #711

Merged
merged 1 commit into from
Mar 12, 2024
Merged

fix missing indexes by quoting schema/table name to ::regclass #711

merged 1 commit into from
Mar 12, 2024

Commits on Feb 7, 2024

  1. fix missing indexes by quoting schema/table name to ::regclass

    The same approach is used in pkg/statements/sql/table_schema.sql
    and a sample reproduction for the bug is:
    
      CREATE SCHEMA test;
      CREATE TABLE test.data (id INTEGER PRIMARY KEY, name TEXT);
      CREATE UNIQUE INDEX "test.data_uniq" ON test.data (name);
    
    Only the primary key is shown, and not the index created above.
    ashkulz committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    e4e2449 View commit details
    Browse the repository at this point in the history