DELETE a table in Riak TS
问题 I am attempting to drop an entire table in RIAK TS, but nothing seems to work. I have tried both "drop table" in a standard query so (using Python): from riak import RiakClient client = RiakClient(host = '127.0.0.1') client.ts_query('ticks', 'DROP TABLE ticks') but this gives me an error that DROP is not understood. An alternative would be to delete everything in the table using client.ts_delete('ticks', ["rows"]) but this seems to need me to specify the row keys. Is there a wildcard option