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

Commit cde40f1

Browse files
author
Epstein
authored
int to long (#57)
1 parent 48c0a2a commit cde40f1

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
@@ -198,7 +198,7 @@ def _start_run(run_id=None, tags=None, experiment_id=None, run_name=None, nested
198198
prepared_statement = db_connection.prepareStatement('CALL SYSCS_UTIL.SYSCS_GET_CURRENT_TRANSACTION()')
199199
x = prepared_statement.executeQuery()
200200
x.next()
201-
timestamp = x.getInt(1)
201+
timestamp = x.getLong(1)
202202
prepared_statement.close()
203203

204204
tags = tags if tags else {}

0 commit comments

Comments
 (0)