You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to use the aliased column in group by , limbo returns a parser error, but it works fine in sqlite3 as shown below.
Sqlite3 output
SQLite version 3.48.0
sqlite> create table temp (t1 integer, t2 integer);
sqlite> insert into temp values (1, 2), (1, 2), (3, 4);
sqlite> select t1 as x, count(t1) from temp group by x;
1|2
3|1
Limbo output
limbo> create table temp (t1 integer, t2 integer);
limbo> insert into temp values (1, 2), (1, 2), (3, 4);
limbo> select t1 as x, count(t1) from temp group by x;
× Parse error: Column x not found
The text was updated successfully, but these errors were encountered:
When I tried to use the aliased column in group by , limbo returns a parser error, but it works fine in sqlite3 as shown below.
Sqlite3 output
Limbo output
The text was updated successfully, but these errors were encountered: