Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Commit b309691

Browse files
committed
hot fix
1 parent 22a52fa commit b309691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

splicemachine/mlflow_support/mlflow_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _start_run(run_id=None, tags=None, experiment_id=None, run_name=None, nested
197197
prepared_statement = db_connection.prepareStatement('CALL SYSCS_UTIL.SYSCS_GET_CURRENT_TRANSACTION()')
198198
x = prepared_statement.executeQuery()
199199
x.next()
200-
timestamp = x.getInt(1)
200+
timestamp = x.getLong(1)
201201
prepared_statement.close()
202202

203203
tags = tags if tags else {}

0 commit comments

Comments
 (0)