| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | SqliteTestUtil.js | 185 if(!f.last){ 186 f.last = { text: '', step: 0 }; 193 if(text === f.last.text) return; 194 f.last.text = text; 196 f.ui.progress.value = f.last.step; 197 f.ui.progress.max = f.last.step + 1; 199 ++f.last.step;
|
| /sqlite-3.40.0/ext/wasm/fiddle/ |
| H A D | fiddle-worker.js | 354 if(!f.last) f.last = { step: 0, text: '' }; 355 else if(text === f.last.text) return; 356 f.last.text = text; 359 data:{step: ++f.last.step, text: text||null}
|
| /sqlite-3.40.0/doc/ |
| H A D | vfs-shm.txt | 43 the header to indicate the new "last valid frame". 49 and zero the last valid frame field of the wal-index 51 other than to zero the last valid frame field in the 97 last valid frame counter in the header of the wal-index back to zero. 99 (10) A WRITE can only increase the last valid frame pointer in the header.
|
| /sqlite-3.40.0/contrib/ |
| H A D | sqlitecon.tcl | 196 set last [lindex $v(history) [expr $v(historycnt)-1]] 197 if {[string compare $last $line]} { 477 set last anchor 480 set last $cur 484 $w tag add sel $first $last 485 $w tag remove sel $last end
|
| /sqlite-3.40.0/test/ |
| H A D | pageropt.test | 112 # Verify that the last page of an overflow chain is not read from 146 # Note the new optimization that when pulling the very last page off of the 164 # Once again, we do not need to read the last page of an overflow chain
|
| H A D | corruptC.test | 325 set last 0 326 for {set i 1} {$i<=512 && !$last} {incr i 1} { 399 set last -1 406 set last -1
|
| H A D | corrupt2.test | 282 # step is executed, the last non-free page of the database file is 289 # The last page in the database page is the second page 307 # The last page in the database page is a non-root b-tree page. 328 # Set up a pointer-map entry so that the last page of the database 533 # It is not possible for the last page in a database file to be the
|
| H A D | btree01.test | 134 # committed last night. 136 # When the stay-on-last page optimization of sqlite3BtreeIndexMoveto() is
|
| H A D | corruptI.test | 177 # The last page of the db is now the only leaf of the sqlite_master table. 178 # Corrupt the db by adding it to the free-list as well (the second last
|
| H A D | fuzzcheck.c | 945 int first, last; in block_troublesome_sql() local 947 last = sizeof(azBadFuncs)/sizeof(azBadFuncs[0]) - 1; in block_troublesome_sql() 949 int mid = (first+last)/2; in block_troublesome_sql() 954 last = mid-1; in block_troublesome_sql() 959 }while( first<=last ); in block_troublesome_sql()
|
| H A D | tkt3918.test | 34 # The leaf page is also the last page in the database. The
|
| H A D | walthread.test | 227 # 1) Reading the md5sum of all but the last table row, 229 # 3) Reading the value stored in the last table row, 231 # the md5sum of all but the last table row has not changed.
|
| H A D | walcrash4.test | 24 # does not support POWERSAFE_OVERWRITE, and the last frame written to
|
| H A D | nulls1.test | 112 CREATE TABLE first(nulls, last); 113 INSERT INTO first(last, nulls) VALUES(100,200), (300,400), (200,300);
|
| H A D | fts3defer3.test | 70 # The first two queries succeed, as they defer token "b". The last one
|
| H A D | atof1.test | 65 # UTF16, ignore the last byte so that the string has an integer number of
|
| H A D | index3.test | 82 # This test corrupts the database file so it must be the last test
|
| H A D | corrupt3.test | 52 # the overflow page is on the last 4 bytes of page 2.
|
| H A D | scanstatus.test | 33 set stmt [db version -last-stmt-ptr] 82 sqlite3_stmt_scanstatus_reset [db version -last-stmt-ptr]
|
| H A D | tkt2640.test | 21 # the last term would not be recognized as dependencies.
|
| H A D | trigger7.test | 105 # This test corrupts the database file so it must be the last test
|
| H A D | incrvacuum.test | 839 # needs to be filled. After removing the last page from the end of 840 # the database file to fill the free page slot, the last page that 845 # small to hold the last page of the overflow chain.
|
| /sqlite-3.40.0/ext/fts5/tool/ |
| H A D | mkfts5c.tcl | 63 set idx [expr {[string last . $date]-1}]
|
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2.c | 4162 InteriorBlock *first, *last; member 4189 pWriter->last = pWriter->first = block; in interiorWriterInit() 4190 ASSERT_VALID_INTERIOR_BLOCK(pWriter->last); in interiorWriterInit() 4203 ASSERT_VALID_INTERIOR_BLOCK(pWriter->last); in interiorWriterAppend() 4231 if( pWriter->last->data.nData+n+nTerm-nPrefix>INTERIOR_MAX && in interiorWriterAppend() 4233 pWriter->last->next = interiorBlockNew(pWriter->iHeight, iChildBlock, in interiorWriterAppend() 4235 pWriter->last = pWriter->last->next; in interiorWriterAppend() 4239 dataBufferAppend2(&pWriter->last->data, c, n, in interiorWriterAppend() 4243 ASSERT_VALID_INTERIOR_BLOCK(pWriter->last); in interiorWriterAppend() 4281 if( block==pWriter->last && block->data.nData<ROOT_MAX ){ in interiorWriterRootInfo()
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | README.md | 85 *NB: The following are developer notes, last validated on 2022-08-18*
|