tursodatabase / libsql-shell-go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`.dump` produces broken `NULL;` statement when `UNIQUE` constraint is present

athoscouto opened this issue · comments

commented

A UNIQUE constraint is returned as an index when getTableIndexes is called.
Then it is passed to dumpTableIndexes, dumpIndex and getIndex.
The last function does a SQL query to fetch the index data, but the query returns null, which leads to a NULL; statement being print in the dump.