Releases: modeldba/sql-autocomplete
Releases · modeldba/sql-autocomplete
1.1.1
1.1.0
- Added ability to specify column and table names, so that AutocompleteOptions of type COLUMN and TABLE will now also include the name if the name matches one provided during construction
new SQLAutocomplete(SQLDialect.MYSQL, ['table1'], ['columnA']);
or usingsetTableNames(tableNames: string[])
/setColumnNames(columnNames: string[])
. - Fixed bug introduced with latest version of
antlr4-c3
where autocompleting the last token in a query immediately after a space would fail. - Updated dependencies