Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions postgres/parser/parser/sql.y
Original file line number Diff line number Diff line change
Expand Up @@ -14549,6 +14549,7 @@ complex_db_object_name_no_keywords:
simple_ident:
IDENT
| PUBLIC // PUBLIC is a keyword, but its use as the default schema makes it nice to include here
| STATUS // STATUS is a keyword, but needed for dolt.status system table (issue #1057)

// DB object name component -- this cannot not include any reserved
// keyword because of ambiguity after FROM, but we've been too lax
Expand Down
1 change: 0 additions & 1 deletion testing/go/dolt_tables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1910,7 +1910,6 @@ func TestUserSpaceDoltTables(t *testing.T) {
},
},
{
Skip: true, // TODO: ERROR: at or near "status": syntax error
Query: `DESCRIBE dolt.status`,
Expected: []sql.Row{
{"table_name", "text", "NO", "PRI", nil, ""},
Expand Down