Is it possible to insert RowBinary using sessions? Right now the following query hangs as I don't know how to provide it with the data:
from chdb import session as chs
s = chs.Session()
s.query("create database dev")
s.query("create table dev.example(a UInt64) engine MergeTree order by tuple()")
s.query("insert into dev.example format RowBinary")
👋
Is it possible to insert RowBinary using sessions? Right now the following query hangs as I don't know how to provide it with the data: