We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c62d9f commit 275b2d4Copy full SHA for 275b2d4
1 file changed
src/query_farm_server_base/duckdb_serialized_expression.py
@@ -45,7 +45,7 @@ def decode_bitstring(data: bytes) -> str:
45
46
47
def interpret_time(value: int) -> str:
48
- t = timedelta(milliseconds=value)
+ t = timedelta(microseconds=value)
49
hours, remainder = divmod(t.seconds, 3600)
50
minutes, seconds = divmod(remainder, 60)
51
0 commit comments