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

allow [table, column] also as field

parent e88dee87
No related branches found
No related tags found
No related merge requests found
......@@ -2763,6 +2763,11 @@ SqlUtils.parseField = function(pField)
}
else
{
if (pField.length == 2)
{
pField.push(pField[0]);
}
if (pField.length == 3)
{
alias = pField[2] + "." + pField[1];
......
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