You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 using setTableNames(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.