Searched defs:noSync (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dpager.c186 u8 noSync; /* Do not sync the journal if true */ member in struct:Pager
844 ** If mxPage is negative, the noSync flag is also set. noSync bypasses
845 ** calls to sqliteOsSync(). The pager runs much faster with noSync on,
852 pPager->noSync = pPager->tempFile;
853 if( pPager->noSync==0 ) pPager->needSync = 0;
855 pPager->noSync = 1;
890 pPager->noSync = level==1 || pPager->tempFile;
892 if( pPager->noSync==0 ) pPager->needSync = 0;
996 pPager->noSync
[all...]

Completed in 48 milliseconds