vscode-js-annotations
vscode-js-annotations copied to clipboard
Gets incorrect parameters
VS Code Version: 1.41.1 Extension Version: 0.11.0
What's the issue:
The hint is looking at the
.union
method for the list of parameters, but it should be looking at the .load
method.
The line that starts with this.load(
is where the problem is. Instead of
this.load( table: where, pk: params, where: columns, params: null, columns: null, null, this.pk.length - 1);
it should be:
this.load( where: where, params: params, columns: columns, sort: null, group: null, limit: null, tableIndex: this.pk.length - 1);