Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix ROWID keyword in auto completion
For some reason instead of using the ROWID keyword for auto completion
we we're only completing it to ROW.
  • Loading branch information
MKleusberg committed Sep 27, 2018
1 parent 320c71e commit 78ae2c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SqlUiLexer.cpp
Expand Up @@ -44,7 +44,7 @@ void SqlUiLexer::setupAutoCompletion()
<< "OUTER" << "PLAN" << "PRAGMA" << "PRIMARY" << "QUERY"
<< "RAISE" << "RECURSIVE" << "REFERENCES" << "REGEXP" << "REINDEX" << "RELEASE"
<< "RENAME" << "REPLACE" << "RESTRICT" << "RIGHT" << "ROLLBACK"
<< "ROW" << "SAVEPOINT" << "SELECT" << "SET" << "TABLE"
<< "ROWID" << "SAVEPOINT" << "SELECT" << "SET" << "TABLE"
<< "TEMP" << "TEMPORARY" << "THEN" << "TO" << "TRANSACTION"
<< "TRIGGER" << "UNION" << "UNIQUE" << "UPDATE" << "USING"
<< "VACUUM" << "VALUES" << "VIEW" << "VIRTUAL" << "WHEN"
Expand Down

0 comments on commit 78ae2c3

Please sign in to comment.