I created a table and insert a value into the table with sql cell, got error
No result set received
Traceback (most recent call last):
at block 7, line 1
at block 4, line 6, in _datalore_internal_python_execute_sql_query(sql_query, database_id, user_id, parameters)
TypeError: 'NoneType' object is not subscriptable
Is this normal?
My sql statements are
CREATE TABLE IF NOT EXISTS test (name varchar(255));
INSERT INTO test values ('myname');
and even with this error, the table is created and the value is inserted into db.