Currently, to workaround tsql issues...
- AST representations are converted to lowercase
- Column names are converted to lowercase
In postgres, these are not issues because unquoted column names should be made lowercase in the AST (as the official parser does). This also means that column names tend to be lowercase, too. Using casing is possible, though, so we don't want to convert everything to lowercase for postgres.