You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE VIRTUAL TABLE t0 USING fts4(x,order=DESC);
|
|
INSERT INTO t0(docid,x)VALUES(-1E0,'0(o');
|
|
INSERT INTO t0 VALUES('');
|
|
INSERT INTO t0 VALUES('');
|
|
INSeRT INTO t0 VALUES('o');
|
|
SELECT docid FROM t0 WHERE t0 MATCH'"0*o"';
|