mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
|
|
CREATE TABLE t1(x INT, y REAL);
|
|
INSERT INTO t1 VALUES('1234','4567'),('0x1234','0x4567');
|
|
SELECT typeof(x), x, typeof(y), y, '#' FROM t1 ORDER BY rowid;
|
|
|
|
|
|
SELECT CAST('0x1234' AS INTEGER);
|
|
|