Files
turso/core
Glauber Costa 249a8cf8d2 keep type information as a string in column metadata
SQLite holds on to it deeply, for example:

sqlite> create table a(a int);
sqlite> create table b(b integer);
sqlite> create table c(c glauber);

sqlite> pragma table_info=a;
0|a|INT|0||0
sqlite> pragma table_info=b;
0|b|INTEGER|0||0
sqlite> pragma table_info=c;
0|c|glauber|0||0

So we'll keep it as well so we can produce the same responses.
2025-01-30 19:53:36 -05:00
..
2025-01-26 16:27:19 +02:00
2025-01-30 03:44:33 +02:00
2025-01-28 14:55:38 -05:00
2025-01-29 22:37:04 +02:00
2025-01-28 14:55:38 -05:00
2025-01-11 17:19:25 +02:00
2024-12-24 18:04:30 +01:00
2025-01-26 16:27:19 +02:00