Closed chris-s-friedman closed 1 year ago
See title.
In PostgreSQL, CREATE TABLE has a parameter to indicate if a table is temporary. Per psql docs, this param can either be TEMPORARY or TEMP.
CREATE TABLE
TEMPORARY
TEMP
Per the sql-lint docs, only CREATE TEMPORARY TABLE is allowed but CREATE TEMP TABLE is not allowed.
CREATE TEMPORARY TABLE
CREATE TEMP TABLE
Why isn't this pattern permitted in sql-lint?
Closing as resolved by yourself here https://github.com/joereynolds/sql-lint/pull/253
See title.
In PostgreSQL,
CREATE TABLE
has a parameter to indicate if a table is temporary. Per psql docs, this param can either beTEMPORARY
orTEMP
.Per the sql-lint docs, only
CREATE TEMPORARY TABLE
is allowed butCREATE TEMP TABLE
is not allowed.Why isn't this pattern permitted in sql-lint?