mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
11 lines
233 B
Plaintext
11 lines
233 B
Plaintext
|
|
SELECT length(zeroblob(-1444444444444444));
|
|
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1(a,b,c);
|
|
CREATE INDEX t1bbc ON t1(b, b+c);
|
|
INSERT INTO t1(a,b,c) VALUES(1,zeroblob(8),3);
|
|
SELECT a, quote(b), length(b), c FROM t1;
|
|
|