We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df7911b commit a380702Copy full SHA for a380702
programs/local/LocalChdb.cpp
@@ -321,9 +321,9 @@ void cursor_wrapper::execute(const std::string & query_str)
321
release_result();
322
global_query_obj = findQueryableObjFromQuery(query_str);
323
324
- // Always use Arrow format internally
+ // Use JSONCompactEachRowWithNamesAndTypes format for better type support
325
py::gil_scoped_release release;
326
- current_result = query_conn(conn->get_conn(), query_str.c_str(), "ArrowStream");
+ current_result = query_conn(conn->get_conn(), query_str.c_str(), "JSONCompactEachRowWithNamesAndTypes");
327
}
328
329
0 commit comments