Home | History | Annotate | Download | only in orig

Lines Matching defs:file_format

15077   u8 file_format;      /* Schema format version for this file */
72661 const int file_format = 1;
72670 iSerial = sqlite3VdbeSerialType(argv[0], file_format, &nVal);
76169 SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){
76189 if( (i&1)==i && file_format>=4 ){
82708 int file_format; /* File format to use for encoding */
82737 file_format = p->minWriteFileFormat;
82775 serial_type = sqlite3VdbeSerialType(pRec, file_format, &len);
83303 pDb->pSchema->file_format = pOp->p3;
83425 if( pDb->pSchema->file_format < p->minWriteFileFormat ){
83426 p->minWriteFileFormat = pDb->pSchema->file_format;
100915 }else if( pNew->pSchema->file_format && pNew->pSchema->enc!=ENC(db) ){
104757 if( pDb->pSchema->file_format>=4 ){
106556 }else if ( 0==p->file_format ){
112524 if( pTab->pSchema->file_format<2 ) return;
118046 ** file_format==1 Version 3.0.0.
118047 ** file_format==2 Version 3.1.3. // ALTER TABLE ADD COLUMN
118048 ** file_format==3 Version 3.1.4. // ditto but with non-NULL defaults
118049 ** file_format==4 Version 3.3.0. // DESC indices. Boolean constants
118051 pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1];
118052 if( pDb->pSchema->file_format==0 ){
118053 pDb->pSchema->file_format = 1;
118055 if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){