We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ed8f1 commit b939ec6Copy full SHA for b939ec6
elementary/monitor/data_monitoring/data_monitoring.py
@@ -79,8 +79,8 @@ def get_elementary_database_and_schema(self):
79
relation = self.internal_dbt_runner.run_operation(
80
"elementary_cli.get_elementary_database_and_schema", quiet=True
81
)[0]
82
- # Replace double quotes with single quotes for proper SQL compatibility
83
- relation = relation.replace('"', "'") if relation else relation
+ # Replace double quotes with backticks for proper SQL compatibility
+ relation = relation.replace('"', "`") if relation else relation
84
logger.info(f"Elementary's database and schema: '{relation}'")
85
return relation
86
except Exception as ex:
0 commit comments