Hello.

Starting from version 1.4.197 in queries, aliases for columns in queries 
are not working correctly.

Example:
CREATE TABLE test (ID int);

INSERT INTO test (ID) VALUES (1); 
COMMIT;

SELECT ID AS VALUE_ID FROM test;
Result:
ID
1

Aliases for expressions work correctly:
SELECT ID + 1 AS VALUE_ID FROM test;
Result:
VALUE_ID
2

Because of this error, the query logic in applications stopped working :(

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to