| /sqlite-3.40.0/src/ |
| H A D | complete.c | 147 token = tkSEMI; in sqlite3_complete() 155 token = tkWS; in sqlite3_complete() 160 token = tkOTHER; in sqlite3_complete() 167 token = tkWS; in sqlite3_complete() 172 token = tkOTHER; in sqlite3_complete() 177 token = tkWS; in sqlite3_complete() 184 token = tkOTHER; in sqlite3_complete() 194 token = tkOTHER; in sqlite3_complete() 206 token = tkOTHER; in sqlite3_complete() 231 token = tkEND; in sqlite3_complete() [all …]
|
| H A D | vdbe.h | 91 void *token; /* id that may be used to recursive triggers */ member
|
| H A D | parse.y | 237 %token ABORT ACTION AFTER ANALYZE ASC ATTACH BEFORE BEGIN BY CASCADE CAST. 238 %token CONFLICT DATABASE DEFERRED DESC DETACH EACH END EXCLUSIVE EXPLAIN FAIL. 239 %token OR AND NOT IS MATCH LIKE_KW BETWEEN IN ISNULL NOTNULL NE EQ. 240 %token GT LE LT GE ESCAPE. 1893 %token 1928 %token SPACE ILLEGAL.
|
| /sqlite-3.40.0/test/ |
| H A D | tokenize.test | 22 } {1 {unrecognized token: "1.0e"}} 25 } {1 {unrecognized token: "1.0E"}} 28 } {1 {unrecognized token: "1.0e"}} 31 } {1 {unrecognized token: "1.0E"}} 34 } {1 {unrecognized token: "1.0e"}} 37 } {1 {unrecognized token: "1.0E"}} 40 } {1 {unrecognized token: "1.0e"}} 43 } {1 {unrecognized token: "1.0E"}} 46 } {1 {unrecognized token: "1.0F"}} 49 } {1 {unrecognized token: "1.0d"}} [all …]
|
| H A D | blob.test | 56 } {1 {unrecognized token: "X'01020k304'"}} 59 } {1 {unrecognized token: "X'01020, 100"}} 62 } {1 {unrecognized token: "X'01020 100'"}} 65 } {1 {unrecognized token: "X'01001'"}} 68 } {1 {unrecognized token: "x'012/45'"}} 71 } {1 {unrecognized token: "x'012:45'"}} 74 } {1 {unrecognized token: "x'012@45'"}} 77 } {1 {unrecognized token: "x'012G45'"}} 80 } {1 {unrecognized token: "x'012`45'"}} 83 } {1 {unrecognized token: "x'012g45'"}}
|
| H A D | fts3tok1.test | 38 SELECT token FROM $tbl WHERE input = 'OnE tWo tHrEe' 45 SELECT token FROM t3 WHERE input = '1x2x3x' 49 SELECT token FROM t1 WHERE input = '1x2x3x' 53 SELECT token FROM t3 WHERE input = '1''2x3x' 57 SELECT token FROM t3 WHERE input = '' 61 SELECT token FROM t3 WHERE input = NULL 69 SELECT * FROM t1 WHERE input = 'a b c' AND token = 'b'; 75 SELECT * FROM t1 WHERE token = 'b' AND input = 'a b c';
|
| H A D | fts3defer3.test | 30 # token "b" is extremely common and token "a" is not. 52 # Query for 'a b'. Although this test doesn't prove so, token "b" will 59 # Zero out the doclist for token "b" within the database file. Now the 60 # only queries that use token "b" that will work are those that defer 61 # it. Any query that tries to use the doclist belonging to token "b" 70 # The first two queries succeed, as they defer token "b". The last one
|
| H A D | main.test | 199 BOGUS token 322 } {1 {unrecognized token: "!"}} 330 } {1 {unrecognized token: "^"}} 333 } {1 {unrecognized token: "'abc"}} 336 } {1 {unrecognized token: ""abc"}} 339 } {1 {unrecognized token: "[abc"}} 342 } {1 {unrecognized token: "x'4869"}} 351 } {1 {unrecognized token: "x'486x'"}} 354 } {1 {unrecognized token: "$abc("}} 357 } {1 {unrecognized token: "$abc(x"}} [all …]
|
| H A D | vtabA.test | 104 # the token "HIDDEN". 114 # These tests vtabA-2.* concentrate on testing that the HIDDEN token
|
| H A D | normalize.test | 57 {SELECT x'abc'; -- illegal token} 177 {SELECT x'abc'; -- illegal token} 179 {1 {(1) unrecognized token: "x'abc'"}}
|
| H A D | fts3tok_err.test | 41 execsql { SELECT token FROM t1 WHERE input = 'A galaxy far, far away' }
|
| H A D | fts3auto.test | 41 # except that the "<column-name>:token" syntax is not supported. Tcl list 113 proc fts3_make_deferrable {tbl token {nRow 0}} { 125 set doc [string repeat "$token " 100] 128 execsql "INSERT INTO $tbl ($name) VALUES('aaaaaaa ${token}aaaaa')" 701 # Add extra documents to the database such that token "B" will be considered
|
| H A D | stat.test | 290 } {1 {unrecognized token: "123corp"}} 301 } {1 {unrecognized token: "123corp"}}
|
| H A D | fts3defer.test | 29 # one row with 15000 instances of the token "a". This makes the doclist for 33 # involving token "a". Then, fts3defer-1.3.* replaces the doclist for token
|
| H A D | shell2.test | 190 } {1 {Parse error near line 2: unrecognized token: "'unclosed;"
|
| /sqlite-3.40.0/ext/fts5/test/ |
| H A D | fts5tok1.test | 39 SELECT token FROM $tbl WHERE input = 'OnE tWo tHrEe' 46 SELECT token FROM t3 WHERE input = '1x2x3x' 50 SELECT token FROM t1 WHERE input = '1x2x3x' 54 SELECT token FROM t3 WHERE input = '1''2x3x' 58 SELECT token FROM t3 WHERE input = '' 62 SELECT token FROM t3 WHERE input = NULL 70 SELECT input, * FROM t1 WHERE input = 'a b c' AND token = 'b'; 76 SELECT input, * FROM t1 WHERE token = 'b' AND input = 'a b c';
|
| H A D | fts5tok2.test | 33 SELECT input, token, start, end FROM t3 WHERE input=$input 39 SELECT input, token, start, end FROM t5($input)
|
| H A D | fts5tokenizer.test | 99 foreach {tn2 token res} { 105 SELECT rowid FROM t1 WHERE t1 MATCH '\"$token\"' 148 proc test_token_cb {varname token iStart iEnd} { 150 lappend var $token
|
| H A D | fts5ea.test | 84 # Experiment with a tokenizer that considers " to be a token character. 91 # Experiment with a tokenizer that considers " to be a token character.
|
| H A D | fts5_common.tcl | 88 proc test_append_token {varname token iStart iEnd} { 90 lappend var $token 405 set token ""
|
| H A D | fts5dlidx.test | 43 # is an integer multiple of $spc1, then an "x" token is appended to the 44 # document. If it is *also* a multiple of $spc2, a "y" token is also appended.
|
| H A D | fts5hash.test | 112 # Add a small and very large token with the same hash value to an
|
| H A D | fts5rank.test | 100 # if there were zero occurrences of token 'y' in the dataset. The
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | README.syntax | 39 contain at least one instance of the token "hello", and at least one 40 instance of the token "world". Tokens may be grouped into phrases using 58 case is treated as an ordinary token. For example, the following query: 71 searches for a row containing an instance of each specified token seperated 77 searches for a row that contains an instance of the token "reliable" 98 Any token that is part of an Fts3 query expression, whether or not it is 101 of the token, not just those that exactly match it. For example, the 109 A token that is not part of a quoted phrase may be preceded by a '-' 123 may be associated with each token in a query by preceding a token with 161 handled as a regular token. [all …]
|
| /sqlite-3.40.0/tool/ |
| H A D | mkopts.tcl | 13 foreach token [split $line { }] { 14 if {![regexp {(([a-zA-Z]+)_)?([_a-zA-Z0-9]+)} $token all px p2 name]} continue
|