This can be due either due to use of TIME() in sql statement:
do_execsql_test json-dredd-2.1 {
CREATE TABLE t0(a);
INSERT INTO t0 VALUES(040);
ALTER TABLE t0 RENAME TO t1;
SELECT 00, (TIME()), (''BETWEEN(json_array_length(70)) AND 0) FROM t1;
} {0 22:19:59 0}
Or due to some encoding problem:
do_execsql_test func-dredd-14.1 {
CREATE TABLE t0(c0, c1);
INSERT INTO t0 VALUES('', '');
SELECT CHAR(0 NOT BETWEEN(t0.c1) AND 0) FROM t0 ORDER BY(0)
OR(LIKE(NULL, t0.c0, 'a'));
} {u0001}
This can be due either due to use of TIME() in sql statement:
Or due to some encoding problem: