Closed GoogleCodeExporter closed 8 years ago
I tracked this down to this piece of code in Select.java at line 778
if (found < 0) {
// special case: GROUP BY a column alias
for (int j = 0; j < expSize; j++) {
Expression e = expressions.get(j);
if (db.equalsIdentifiers(sql, e.getAlias())) {
found = j;
break;
}
}
At this point in time sql == ""x"" and e.getAlias() == "x"
Note the extra quotes around the x in the sql variable.
But I have no idea how to fix it.
Original comment by noelgrandin
on 25 Aug 2014 at 2:57
This should be fixed in version 1.4.184.
Original comment by thomas.t...@gmail.com
on 19 Dec 2014 at 8:46
Original issue reported on code.google.com by
thilopl...@googlemail.com
on 21 Aug 2014 at 3:10