Starting with the following postgres statement:
SELECT TRUE as can_has_cheese_burger
when I convert it to the db2 dialect, I get the following:
SELECT
1 AS can_has_cheese_burger
but I think it should be more along the lines of:
SELECT
1 AS can_has_cheese_burger
FROM "SYSIBM".SYSDUMMY1 s
Starting with the following postgres statement:
when I convert it to the db2 dialect, I get the following:
but I think it should be more along the lines of: