dolthub/doltgresql

Panic creating unique index

fulghum opened this issue · 1 comments

Repro:

CREATE TABLE customers (
    username character varying(50) NOT NULL
);

CREATE UNIQUE INDEX ix_cust_username ON customers (username);

Looks like this comes from Doltgres' schema name not being used in the ToDoltSchema and GenerateTagsForNewColumns functions.