You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE foo (...)
DROP TABLE IF EXISTS foo;
INSERT INTO foo (bar, baz) SELECT * FROM zzz
gets a response from the server that looks like
{'state': 'error', 'message': 'OK'}
which causes the client to raise a rather confusing error message:
Traceback (most recent call last):
File "det/query.py", line 51, in <module>
wsdb.query(q)
File "/usr/home/ww/src/webstore-client/webstore/client/__init__.py", line 233, in query
headers={'Content-Type': 'application/json'})
File "/usr/home/ww/src/webstore-client/webstore/client/__init__.py", line 181, in _request
raise WebstoreClientException(response, data)
webstore.client.WebstoreClientException: OK
The text was updated successfully, but these errors were encountered:
Doing sql operations with webstore-client such as
gets a response from the server that looks like
which causes the client to raise a rather confusing error message:
The text was updated successfully, but these errors were encountered: