mirror of
https://github.com/salexdv/bsl_console.git
synced 2024-11-24 08:33:29 +02:00
fix QueryTablesCompletition #160
This commit is contained in:
parent
dcc323f044
commit
e0dbbbd416
@ -3343,7 +3343,7 @@ class bslHelper {
|
||||
*/
|
||||
getQueryTablesCompletition(suggestions, kind) {
|
||||
|
||||
if (this.getLastCharacter() != '.' && this.lastExpression.indexOf('&') < 0) {
|
||||
if (this.getLastCharacter() != '.' && this.getLastCharacter() != '(' && this.lastExpression.indexOf('&') < 0) {
|
||||
|
||||
// Let's find start of current query
|
||||
let startMatch = this.model.findPreviousMatch('(?:выбрать|select)', this.position, true);
|
||||
|
Loading…
Reference in New Issue
Block a user