Column names should be wrapped in quotes
Description
Lightdash doesn't respect the columns that are case sensitive.
Eg. in a postges table I have the column "Region" but when queried via Lightdash is trying to get "region". Resulting in the following error:

To Reproduce
SQL Lightdash generates
SELECT
"new_demo_data".Region AS "new_demo_data_Region",
AVG("new_demo_data".Profit) AS "new_demo_data_average_of_profit"
FROM "postgres"."dbt_lightdash"."new_demo_data" AS "new_demo_data"
GROUP BY 1
ORDER BY "new_demo_data_average_of_profit" DESC
LIMIT 500
SQL it should generate:
SELECT
"new_demo_data"."Region" AS "new_demo_data_Region",
AVG("new_demo_data"."Profit") AS "new_demo_data_average_of_profit"
FROM "postgres"."dbt_lightdash"."new_demo_data" AS "new_demo_data"
GROUP BY 1
ORDER BY "new_demo_data_average_of_profit" DESC
LIMIT 500
App Version
0.251.2
Should we use the dbt quoting config to decide if we should wrap in quotes or not ?
Another option is to let them handle this by using sql on their schema. It does not require any change. /cc @TuringLovesDeathMetal @owlas


Another option is to let them handle this by using sql on their schema.
Don't love this option - it feels a bit broken that it doesn't "just work" for my columns (even if some of them are upper case)
:tada: This issue has been resolved in version 0.272.0 :tada:
The release is available on:
0.272.0- GitHub release
Your semantic-release bot :package::rocket: