mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-16 11:28:45 +00:00
ad79ef48a2
* add tests * add bench
8 lines
249 B
Plaintext
8 lines
249 B
Plaintext
|
|
CREATE TEMPORARY TABLE TempTable (
|
|
key TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT REPLACE,
|
|
value TEXT NOT NULL ON CONFLICT FAIL);
|
|
ALTER TABLE TempTable RENAME TO DoNotRead;
|
|
SELECT name FROM temp.sqlite_master;
|
|
|