I have an issue when I am trying to create a temporary table in ClickHouse. I execute simple query and get an error
create TEMPORARY TABLE nn1 as select 1;
message: Code: 113, e.displayText() = DB::Exception: There is no session, e.what() = DB::Exception
Is someone know why it happen and how to solve the issue? I suppos I need start session before doing the query but I don't know how to do this.
I am trying to doing this using ClickHouse's interface for making query. It looks like