Home
last modified time | relevance | path

Searched refs:K (Results 1 – 25 of 41) sorted by relevance

12

/sqlite-3.40.0/test/
H A Dfts3first.test41 INSERT INTO x1(docid,a,b,c) VALUES(0, 'K H D S T', 'V M N Y K', 'S Z N Q S');
42 INSERT INTO x1(docid,a,b,c) VALUES(1, 'K N J L W', 'S Z W J Q', 'D U W S E');
44 INSERT INTO x1(docid,a,b,c) VALUES(3, 'U R Q M L', 'M J K A V', 'Q W J T J');
71 1 "^K" {0 1 14}
82 11 {"^K H"} {0 14}
83 12 {"K H"} {0 10 14}
84 13 {"K ^H"} {}
100 1 {^K} {{[K] H D S T} {[K] N J L W} {[K] H A B L}}
101 2 {^X} {{[X] Y D L S} {[X] J P K R} {[X] S B X Y}}
102 3 {^X Y} {{[X] [Y] D L S} {D [Y] P O I...[X] J P K R} {[X] S B X [Y]}}
[all …]
H A Dfts4content.test100 INSERT INTO t2 VALUES('J O B N K N E C H Z R K J O U G M K L S'); -- 6
108 INSERT INTO t2 VALUES('N G Y O K Q K Z N M H U J E D H U W R K'); -- 14
130 3 {"N K N"} {6}
144 1 {"N K N"} {{J O B N K N E C H Z R K J O U G M K L S}}
154 1 {"N K N"} {{..O B [N] [K] [N] E..}}
164 1 {"N K N"} {{0 0 6 1 0 1 8 1 0 2 10 1}}
210 INSERT INTO ft3(rowid, x, y) VALUES(0, 'R T M S M', 'A F O K H');
211 INSERT INTO ft3(rowid, x, y) VALUES(1, 'C Z J O X', 'U S Q D K');
249 INSERT INTO t3(rowid, x, y) VALUES(0, 'R T M S M', 'A F O K H');
250 INSERT INTO t3(rowid, x, y) VALUES(1, 'C Z J O X', 'U S Q D K');
[all …]
H A Dfts4docid.test29 0 {F N K B T I K V B A} 1 {D M J E S P H E L O}
30 2 {W U T Q T Q T L H G} 3 {D W H M B R S Z B K}
32 6 {O V R A C R K C Y H} 7 {Z J H T Q Q O R A G}
33 8 {L K J W G D Y W B M} 9 {K E Y I A Q R Q T S}
36 14 {S I T C J R X S J M} 15 {M X M K E X L H Q Y}
40 22 {W D K H D H F G O J} 23 {T X Y P G M J U I L}
41 24 {F V X E B C N B K W} 25 {E B A Y N N T Z I C}
42 26 {G E E B C P U D H G} 27 {J D J K N S B Q T M}
H A Dfts3auto.test652 "A B C" "D E F" "G H I" "J K L"
653 "B C D" "E F G" "H I J" "K L A"
654 "C D E" "F G H" "I J K" "L A B"
655 "D E F" "G H I" "J K L" "A B C"
656 "E F G" "H I J" "K L A" "B C D"
657 "F G H" "I J K" "L A B" "C D E"
682 "F E N O T K X V A X I E X A P G Q V H U"
683 "R V A E T C V Q N I E L O N U G J K L U"
685 "S G D Z X R P G S S Y B K A S G A I L L"
686 "L S I C H T Z S R Q P R N K J X L F M J"
[all …]
H A Dfts3fault2.test118 INSERT INTO ft VALUES('T B N L W', 'C A K T I');
119 INSERT INTO ft VALUES('K E Z L O', 'L L Y C E');
121 INSERT INTO ft VALUES('S K H G W', 'R W Q F G');
H A Dtkt3757.test44 # (1) Table T1 has about 250K entries
H A DselectG.test39 # 2018-01-14. A 100K-entry VALUES clause within a scalar expression does
H A Dmisc1.test713 …ON SELECT 1 ORDER BY S in(WITH K AS(WITH K AS(select'CREINDERcharREADEVIRTUL5TABLECONFLICT !1 USI…
714 …,b,b,c,d,MAato_aecSELEC,+?b," "O,"i","a",""b ,5 ))KEY)SELECT*FROM((k()reaC,k,K) eA,k '' )t ,K M);
H A Dwindow1.test1147 (11,'K', 'cc', 'xyz'),
1159 11 K cc 'xyz' K |
1179 (11,'K', 'cc', 'xyz'),
1203 11 K cc 'xyz' K |
H A Dbigrow.test120 # size to 64K. Now rows can be much bigger. Test that logic. Also
H A Dlike2.test98 INSERT INTO t1(x,y) VALUES(75,'K');
549 db eval "SELECT x FROM t1 WHERE y LIKE 'K%'"
552 db eval "SELECT x FROM t2 WHERE y LIKE 'K%'"
H A Dwalro2.test43 # for which the getpagesize() call returns greater than 32K, the *-shm
H A DcorruptL.test1203 | 3712: 00 00 00 00 00 00 00 00 4b 06 06 17 25 25 01 5b ........K...%%.[
1394 | 3104: 00 a1 40 06 01 e2 00 00 a0 4b 06 13 02 00 00 9e ..@......K......
1406 | 3296: 06 13 12 00 00 85 4b 06 03 02 01 00 84 37 06 13 ......K......7..
H A DwhereG.test51 INSERT INTO album VALUES(102, 'Missa Brevis in D-, K.65');
/sqlite-3.40.0/src/
H A Dtest_wsd.c54 void *sqlite3_wsd_find(void *K, int L){ in sqlite3_wsd_find() argument
61 iHash = (iHash<<3) + ((unsigned char *)&K)[i]; in sqlite3_wsd_find()
66 for(pVar=pGlobal->aData[iHash]; pVar && pVar->pKey!=K; pVar=pVar->pNext); in sqlite3_wsd_find()
73 pVar->pKey = K; in sqlite3_wsd_find()
78 memcpy(&pVar[1], K, L); in sqlite3_wsd_find()
H A DsqliteInt.h1032 # define SELECTTRACE(K,P,S,X) \ argument
1033 if(sqlite3TreeTrace&(K)) \
1037 # define SELECTTRACE(K,P,S,X) argument
1047 # define WHERETRACE(K,X) if(sqlite3WhereTrace&(K)) sqlite3DebugPrintf X argument
1050 # define WHERETRACE(K,X) argument
1144 void *sqlite3_wsd_find(void *K, int L);
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js625 T.mustThrowMatching(()=>K(), /via 'new'/).
627 const k1 = new K(), k2 = new K();
629 T.assert(k1.constructor === K).
630 assert(K.isA(k1)).
631 assert(k1 instanceof K).
638 assert(K.resolveToInstance(k1.pointer)===k1).
643 key = K.memberKey(key);
674 const k3 = new K();
676 T.assert(k3 === K.instanceForPointer(ptr));
677 K.disposeAll();
[all …]
/sqlite-3.40.0/ext/misc/
H A Dscrub.c430 u32 X, M, K, nLocal; in scrubBackupBtree() local
454 K = M + ((P-M)%(p->szUsable-4)); in scrubBackupBtree()
459 nLocal = K<=X ? K : M; in scrubBackupBtree()
/sqlite-3.40.0/ext/recover/
H A Ddbdata.c595 int M, K; in dbdataNext() local
597 K = M+((nPayload-M)%(U-4)); in dbdataNext()
598 if( K<=X ){ in dbdataNext()
599 nLocal = K; in dbdataNext()
H A Dsqlite3recover.c2132 int K = M+((nPayload-M)%(n-4)); in recoverIsValidPage() local
2136 }else if( K<=X ){ in recoverIsValidPage()
2137 nByte += K+4; in recoverIsValidPage()
/sqlite-3.40.0/ext/fts5/test/
H A Dfts5corrupt5.test76 | 16: 0f 88 0f 6d 0f 4b 0f 2c 0f 0e 0e ec 0e cd 0e ad ...m.K.,........
77 | 32: 0e 8e 0e 6c 0e 4b 0e 29 0e 08 0d e6 0d c4 0d b5 ...l.K.)........
290 | 16: 0f 88 0f 6d 0f 4b 0f 2c 0f 0e 0e ec 0e cd 0e ad ...m.K.,........
291 | 32: 0e 8e 0e 6c 0e 4b 0e 29 0e 08 0d e6 0d c4 0d b5 ...l.K.)........
621 | 16: 0f 88 0f 6d 0f 4b 0f 2c 0f 0e 0e ec 0e cd 0e ad ...m.K.,........
622 | 32: 0e 8e 0e 6c 0e 4b 0e 29 0e 08 0d e6 0d c4 0d b5 ...l.K.)........
H A Dfts5corrupt3.test3072 | 3584: 66 69 67 27 28 6b 20 50 52 49 4d 41 52 59 20 4b fig'(k PRIMARY K
3418 | 3584: 66 69 67 27 28 6b 20 50 52 49 4d 41 52 59 20 4b fig'(k PRIMARY K
3605 | 3584: 66 69 67 27 28 6b 20 50 52 49 4d 41 52 59 20 4b fig'(k PRIMARY K
3889 | 288: 20 70 67 6e 6f 2c 20 50 52 49 4d 41 52 59 20 4b pgno, PRIMARY K
3976 | 3584: 66 69 67 27 28 6b 20 50 52 49 4d 41 52 59 20 4b fig'(k PRIMARY K
4319 | 16: 0f 88 0f 6d 0f 4b 0f 2c 0f 0e 0e ec 0e cd 0e ad ...m.K.,........
4320 | 32: 0e 8e 0e 6c 0e 4b 0e 29 0e 08 0d e6 0d c4 0d b5 ...l.K.)........
4545 | 3584: 66 69 67 27 28 6b 20 50 52 49 4d 41 52 59 20 4b fig'(k PRIMARY K
4947 | 16: 0f 88 0f 6d 0f 4b 0f 2c 0f 0e 0e ec 0e cd 0e ad ...m.K.,........
4948 | 32: 0e 8e 0e 6c 0e 4b 0e 29 0e 08 0d e6 0d c4 0d b5 ...l.K.)........
[all …]
H A Dfts5ac.test172 1.12 "L O O L V V K"
200 6.5 "L + O + O + L + V + V + K"
/sqlite-3.40.0/ext/fts3/unicode/
H A DCaseFolding.txt75 004B; C; 006B; # LATIN CAPITAL LETTER K
151 0136; C; 0137; # LATIN CAPITAL LETTER K WITH CEDILLA
205 0198; C; 0199; # LATIN CAPITAL LETTER K WITH HOOK
244 01E8; C; 01E9; # LATIN CAPITAL LETTER K WITH CARON
611 1E30; C; 1E31; # LATIN CAPITAL LETTER K WITH ACUTE
612 1E32; C; 1E33; # LATIN CAPITAL LETTER K WITH DOT BELOW
613 1E34; C; 1E35; # LATIN CAPITAL LETTER K WITH LINE BELOW
925 24C0; C; 24DA; # CIRCLED LATIN CAPITAL LETTER K
993 2C69; C; 2C6A; # LATIN CAPITAL LETTER K WITH DESCENDER
1105 A740; C; A741; # LATIN CAPITAL LETTER K WITH STROKE
[all …]
/sqlite-3.40.0/
H A DREADME.md218 The amalgamation source file is more than 200K lines long. Some symbolic
219 debuggers (most notably MSVC) are unable to deal with files longer than 64K
226 individual source file exceeds 32K lines in length.

12