Skip to content

Commit

Permalink
[#70] Add keywords autocompletion for H2 databases.
Browse files Browse the repository at this point in the history
  • Loading branch information
kostafey committed Jan 26, 2019
1 parent 34e6689 commit 7500543
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ejc_sql/structure.clj
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@
" information_schema.tables AS t \n"
"WHERE t.table_schema = s.schema_name \n"
" AND LCASE(s.schema_name) != 'information_schema' \n"))
:columns (default-queries :columns)}
:columns (default-queries :columns)
:keywords (fn [& _]
"SELECT topic FROM information_schema.help")}
;;-------
:sqlserver ; ms sql server
;;-------
Expand Down

0 comments on commit 7500543

Please sign in to comment.