| /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 66 SELECT input, * FROM t3 WHERE input = 123 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'; 82 SELECT input, * FROM t1 WHERE input < 'b' AND input = 'a b c'; [all …]
|
| H A D | fts5tok2.test | 31 set input [format "abc%cxyz" $i] 33 SELECT input, token, start, end FROM t3 WHERE input=$input 39 SELECT input, token, start, end FROM t5($input)
|
| H A D | fts5unicode2.test | 26 proc do_unicode_token_test {tn input res} { 28 sqlite3_fts5_tokenize -subst db "unicode61 remove_diacritics 0" $input 32 proc do_unicode_token_test2 {tn input res} { 34 sqlite3_fts5_tokenize -subst db "unicode61" $input 40 set input [lindex $args end-1] 43 sqlite3_fts5_tokenize -subst db $tokenizer $input 426 set input [string map [list * $c] "hello*world"] 428 do_unicode_token_test3 7.$tn1.$tn2 {*}$config $input $output 581 SELECT token FROM ft1 WHERE input = '[email protected]';
|
| H A D | fts5fault2.test | 30 WITH input(a,b) AS ( 33 FROM input WHERE a < 1000 35 INSERT INTO t1 SELECT * FROM input;
|
| H A D | fts5unicode.test | 24 proc tokenize_test {tn tokenizer input output} { 27 foreach {z s e} [sqlite3_fts5_tokenize db {$tokenizer} {$input}] {
|
| /sqlite-3.40.0/test/ |
| 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 65 SELECT * FROM t3 WHERE input = 123 69 SELECT * FROM t1 WHERE input = 'a b c' AND token = 'b'; 75 SELECT * FROM t1 WHERE token = 'b' AND input = 'a b c'; 81 SELECT * FROM t1 WHERE input < 'b' AND input = 'a b c'; [all …]
|
| H A D | fts2token.test | 98 # simple input string via the built-in test function. This is as much 127 proc do_icu_test {name locale input output} { 143 set input "\u0e2d\u0e30\u0e44\u0e23\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a" 148 do_icu_test fts2token-4.3 th_TH $input $output 149 do_icu_test fts2token-4.4 en_US $input $output 153 do_icu_test fts2token-4.5 MiddleOfTheOcean $input $output 158 set input "short tokens then " 159 append input $longtoken 165 do_icu_test fts2token-4.6 MiddleOfTheOcean $input $output 166 do_icu_test fts2token-4.7 th_TH $input $output [all …]
|
| H A D | fts3atoken.test | 167 # simple input string via the built-in test function. This is as much 197 proc do_icu_test {name locale input output} { 213 set input "\u0e2d\u0e30\u0e44\u0e23\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a" 218 do_icu_test fts3atoken-4.3 th_TH $input $output 219 do_icu_test fts3atoken-4.4 en_US $input $output 223 do_icu_test fts3atoken-4.5 MiddleOfTheOcean $input $output 228 set input "short tokens then " 229 append input $longtoken 235 do_icu_test fts3atoken-4.6 MiddleOfTheOcean $input $output 236 do_icu_test fts3atoken-4.7 th_TH $input $output [all …]
|
| H A D | fts4unicode.test | 20 proc do_unicode_token_test {tn input res} { 21 set input [string map {' ''} $input] 23 SELECT fts3_tokenizer_test('unicode61', 'remove_diacritics=0', '$input'); 27 proc do_unicode_token_test2 {tn input res} { 28 set input [string map {' ''} $input] 30 SELECT fts3_tokenizer_test('unicode61', '$input'); 415 set input [string map [list * $c] "hello*world"] 417 do_unicode_token_test3 7.$tn1.$tn2 {*}$config $input $output 565 SELECT token FROM ft1 WHERE input = '[email protected]';
|
| H A D | percentile.test | 68 } {1 {2nd argument to percentile() is not the same for all input rows}} 164 # Infinity as an input 173 } {1 {Inf input to percentile()}} 179 } {1 {Inf input to percentile()}}
|
| H A D | resolver01.test | 26 # bind against an input column named "y". 69 # The "y" binds more tightly to output columns than to input columns. 107 # the input column names and only use the output column names if no 108 # input column name matches. 156 # more tightly to the input tables in all cases.
|
| H A D | fts4merge.test | 174 # * There are less segments on the input level that the disrupted 177 # * Sufficient segments exist on the input level but the segments 262 # second 'merge=1,2' operation below actually "merges" a single input
|
| H A D | shell3.test | 71 } {1 {Error: in prepare, incomplete input}} 101 } {1 {Parse error near line 1: incomplete input}}
|
| H A D | fts3tok_err.test | 41 execsql { SELECT token FROM t1 WHERE input = 'A galaxy far, far away' }
|
| H A D | aggerror.test | 23 # x_count will error out if its input is 40 or 41 or if its
|
| H A D | tkt-a8a0d2996a.test | 13 # input operands. Ticket [a8a0d2996a]
|
| /sqlite-3.40.0/ext/session/ |
| H A D | changesetfuzz1.test | 55 forcecopy c1.changeset input.changeset 57 exec $CF input.changeset $i 1 58 exec $CF input.changeset-0 59 forcecopy input.changeset-0 input.changeset 73 forcecopy p1.patchset input.patchset 75 exec $CF input.patchset $i 1 76 exec $CF input.patchset-0 77 forcecopy input.patchset-0 input.patchset
|
| /sqlite-3.40.0/tool/ |
| H A D | stripccomments.c | 38 FILE * input; member 70 for( ; EOF != (ch = fgetc(App.input)); prev = ch, in do_it_all() 81 for( ++col; !endOfString && EOF != (ch2 = fgetc(App.input)); in do_it_all() 224 App.input = stdin; in main()
|
| H A D | dbtotxt.md | 21 If OPTIONAL-FILENAME is omitted, then the text is taken from the input stream, 54 and loaded. Furthermore, you can make subtle corruptions to the input
|
| /sqlite-3.40.0/ext/wasm/sql/ |
| H A D | 001-sudoku.sql | 2 input(sud) AS ( 11 SELECT sud, instr(sud, '.') FROM input
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | testing.css | 25 span.labeled-input { 45 .input-wrapper {
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5parse.y | 82 input ::= expr(X). { sqlite3Fts5ParseFinished(pParse, X); } 83 %destructor input { (void)pParse; }
|
| /sqlite-3.40.0/autoconf/tea/ |
| H A D | configure.ac | 2 dnl This file is an input file used by the GNU "autoconf" program to
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | README.md | 123 Emscripten-specific header for the `--post-js` input. It opens up 126 Emscripten-specific footer for the `--post-js` input. This closes
|
| /sqlite-3.40.0/src/ |
| H A D | shell.c.in | 712 ** Retrieve a single line of input text. 1317 ** Limit input nesting via .read or any other input redirect. 4417 " input text.", 4973 ** of the input is returned. 5473 const char *zFile; /* Name of the input file */ 7603 /* Parse the input line into tokens. 7628 /* Process the input line. 11073 ** Read input from *in and process it. If *in==0 then input 11104 /* End of input */ 11258 ** parameter is NULL, take input from ~/.sqliterc [all …]
|