Skip to content

Commit 0384b70

Browse files
committed
Use query instead of query_stateful
1 parent 722811e commit 0384b70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chdb/session/state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import tempfile
22
import shutil
33

4-
from chdb import query_stateful
4+
from chdb import query
55

66

77
class Session():
@@ -35,4 +35,4 @@ def query(self, sql, fmt="CSV"):
3535
"""
3636
Execute a query.
3737
"""
38-
return query_stateful(sql, fmt, path=self._path)
38+
return query(sql, fmt, path=self._path)

0 commit comments

Comments
 (0)