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 6bd90d4 commit 228da16Copy full SHA for 228da16
1 file changed
soda-core/src/soda_core/common/sql_dialect.py
@@ -624,6 +624,12 @@ def get_schema_prefix_index(self) -> int | None:
624
return 1
625
626
def sql_expr_timestamp_with_tz_literal(self, datetime_in_iso8601: str) -> str:
627
+ """Convert to a SQL representation of a timestamp with timezone.
628
+
629
+ By default this will return the standard SQL timestamp representation but may be overridden.
630
+ We may wish to add some logic to detect timezones in datetime and return the appropriate representation.
631
+ For now it's up to the user to decide which representation to use.
632
+ """
633
return self.sql_expr_timestamp_literal(datetime_in_iso8601)
634
635
def sql_expr_timestamp_literal(self, datetime_in_iso8601: str) -> str:
0 commit comments