Alpha is not representative of beta/GA performance. Trust me.
Alpha is not representative of beta/GA performance. Trust me.
CREATE TABLE my_table (my_column TEXT CHECK(my_column REGEXP '\w+'))
ERROR 9009: SQL prepare error: no such function: REGEXP in CREATE TABLE my_table (my_column TEXT CHECK(my_column REGEXP '\w+')) at offset 54CREATE TABLE my_table (my_field TEXT);
-- need to use double apostrophe instead of backslash escaping
INSERT INTO my_table VALUES ('body with escaped string can\'t be done');