Lines Matching defs:file_format
17447 u8 file_format; /* Schema format version for this file */
88707 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){
88729 if( (i&1)==i && file_format>=4 ){
97294 pDb->pSchema->file_format = pOp->p3;
97437 if( pDb->pSchema->file_format < p->minWriteFileFormat ){
97438 p->minWriteFileFormat = pDb->pSchema->file_format;
120669 }else if( pNew->pSchema->file_format && pNew->pSchema->enc!=ENC(db) ){
125542 if( pDb->pSchema->file_format>=4 ){
127606 }else if ( 0==p->file_format ){
135610 if( pTab->pSchema->file_format<2 ) return;
142144 ** file_format==1 Version 3.0.0.
142145 ** file_format==2 Version 3.1.3. // ALTER TABLE ADD COLUMN
142146 ** file_format==3 Version 3.1.4. // ditto but with non-NULL defaults
142147 ** file_format==4 Version 3.3.0. // DESC indices. Boolean constants
142149 pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1];
142150 if( pDb->pSchema->file_format==0 ){
142151 pDb->pSchema->file_format = 1;
142153 if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){