Skip to content
Snippets Groups Projects
Commit 4edbaa95 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

sql lib bugfix - another missing var

parent 9b78f283
No related branches found
No related tags found
No related merge requests found
......@@ -1330,7 +1330,7 @@ SqlBuilder.prototype._prepare = function(pField, pValue, pCondition, pFieldType,
var alias;
if (pField != null)
{
[alias, field] = SqlUtils.parseField(pField)
var [alias, field] = SqlUtils.parseField(pField)
if (pFieldType == undefined)
pFieldType = SqlUtils.getSingleColumnType(pField, undefined, this.alias);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment