Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 67) sorted by relevance

123

/sqlite-3.40.0/ext/wasm/common/
H A DSqliteTestUtil.js185 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 Dfiddle-worker.js354 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 Dvfs-shm.txt43 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 Dsqlitecon.tcl196 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 Dpageropt.test112 # 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 DcorruptC.test325 set last 0
326 for {set i 1} {$i<=512 && !$last} {incr i 1} {
399 set last -1
406 set last -1
H A Dcorrupt2.test282 # 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 Dbtree01.test134 # committed last night.
136 # When the stay-on-last page optimization of sqlite3BtreeIndexMoveto() is
H A DcorruptI.test177 # 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 Dfuzzcheck.c945 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 Dtkt3918.test34 # The leaf page is also the last page in the database. The
H A Dwalthread.test227 # 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 Dwalcrash4.test24 # does not support POWERSAFE_OVERWRITE, and the last frame written to
H A Dnulls1.test112 CREATE TABLE first(nulls, last);
113 INSERT INTO first(last, nulls) VALUES(100,200), (300,400), (200,300);
H A Dfts3defer3.test70 # The first two queries succeed, as they defer token "b". The last one
H A Datof1.test65 # UTF16, ignore the last byte so that the string has an integer number of
H A Dindex3.test82 # This test corrupts the database file so it must be the last test
H A Dcorrupt3.test52 # the overflow page is on the last 4 bytes of page 2.
H A Dscanstatus.test33 set stmt [db version -last-stmt-ptr]
82 sqlite3_stmt_scanstatus_reset [db version -last-stmt-ptr]
H A Dtkt2640.test21 # the last term would not be recognized as dependencies.
H A Dtrigger7.test105 # This test corrupts the database file so it must be the last test
H A Dincrvacuum.test839 # 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 Dmkfts5c.tcl63 set idx [expr {[string last . $date]-1}]
/sqlite-3.40.0/ext/fts2/
H A Dfts2.c4162 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 DREADME.md85 *NB: The following are developer notes, last validated on 2022-08-18*

123