Skip to content

Commit 75fe7a8

Browse files
committed
fixes
1 parent b8b20ef commit 75fe7a8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/query_farm_server_base/duckdb_serialized_expression.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88

99

1010
def interpret_timestamp_with_time_zone(value: str) -> str:
11-
return datetime.fromtimestamp(int(value) / 1_000_000, tz=timezone.utc).strftime(
12-
"%Y-%m-%d %H:%M:%S.%f"
11+
return (
12+
"'"
13+
+ datetime.fromtimestamp(int(value) / 1_000_000, tz=timezone.utc).strftime(
14+
"%Y-%m-%d %H:%M:%S.%f"
15+
)
16+
+ "'"
1317
)
1418

1519

0 commit comments

Comments
 (0)