| /sqlite-3.40.0/test/ |
| H A D | fuzz_common.tcl | 114 proc Table {} { procedure 167 {[SelectKw] [ResultSet $nRes $::ColumnList] FROM [Table]} \ 178 {[SelectKw] * FROM [Table]} \ 179 {[SelectKw] * FROM [Table] WHERE [Expr $::ColumnList]} \ 182 FROM [Table],[Table] AS t2 186 FROM [Table] LEFT OUTER JOIN [Table] AS t2 234 {INSERT INTO [Table] VALUES([Expr], [Expr], [Expr]);} 235 {INSERT INTO [Table] VALUES([Expr], [Expr], [Expr], [Expr]);} 236 {INSERT INTO [Table] VALUES([Expr], [Expr]);} 249 {UPDATE [Table] [all …]
|
| H A D | swarmvtab.test | 132 # 2.2: Table does not exist. 133 # 2.3: Table schema does not match.
|
| H A D | tkt3757.test | 44 # (1) Table T1 has about 250K entries
|
| H A D | schema5.test | 21 # Table constraints should be separated by commas, but they do not have
|
| H A D | view3.test | 24 # Ticket [d58ccbb3f1b]: Prevent Table.nRef overflow.
|
| /sqlite-3.40.0/src/ |
| H A D | sqliteInt.h | 1215 typedef struct Table Table; typedef 2273 struct Table { struct 4613 Expr *sqlite3ColumnExpr(Table*,Column*); 4622 Index *sqlite3PrimaryKeyIndex(Table*); 4688 void sqlite3DeleteTable(sqlite3*, Table*); 4726 int sqlite3IsReadOnly(Parse*, Table*, int); 4832 void sqlite3SetMakeRecordP5(Vdbe*,Table*); 5254 int sqlite3VtabCallConnect(Parse*, Table*); 5324 u32 sqlite3FkOldmask(Parse*, Table*); 5325 FKey *sqlite3FkReferences(Table *); [all …]
|
| H A D | vtab.c | 341 void sqlite3VtabClear(sqlite3 *db, Table *p){ in sqlite3VtabClear() 512 Table *pOld; in sqlite3VtabFinishParse() 559 Table *pTab, in vtabCallConstructor() 768 Table *pTab; in sqlite3VtabCallCreate() 810 Table *pTab; in sqlite3_declare_vtab() 846 Table *pNew = sParse.pNewTable; in sqlite3_declare_vtab() 903 Table *pTab; in sqlite3VtabCallDestroy() 1131 Table *pTab; in sqlite3VtabOverloadFunction() 1198 Table **apVtabLock; in sqlite3VtabMakeWritable() 1231 Table *pTab; in sqlite3VtabEponymousTableInit() [all …]
|
| H A D | fkey.c | 323 Table *pTab, /* Parent table of FK pFKey */ in fkLookupParent() 505 Table *pTab, /* The table whose column is desired */ in exprTableColumn() 550 Table *pTab, /* The parent table */ in fkScanChildren() 676 FKey *sqlite3FkReferences(Table *pTab){ in sqlite3FkReferences() 708 Table *pTab = sqliteHashData(k); in sqlite3FkClearTriggerCache() 735 void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){ in sqlite3FkDropTable() 799 Table *pTab, /* Table being updated */ in fkChildIsModified() 826 Table *pTab, in fkParentIsModified() 1092 Table *pTab /* Table being modified */ in sqlite3FkOldmask() 1142 Table *pTab, /* Table being modified */ in sqlite3FkRequired() [all …]
|
| H A D | build.c | 356 Table *p = 0; in sqlite3FindTable() 439 Table *p; in sqlite3LocateTable() 885 Table *p; in sqlite3UnlinkAndDeleteTable() 1220 Table *pTable; in sqlite3StartTable() 1495 Table *p; in sqlite3AddColumn() 1608 Table *p; in sqlite3AddNotNull() 1737 Table *p; in sqlite3AddDefaultValue() 1943 Table *p; in sqlite3AddCollateType() 2967 Table *p; in sqlite3CreateView() 3459 Table *pTab; in sqlite3DropTable() [all …]
|
| H A D | trigger.c | 50 Trigger *sqlite3TriggerList(Parse *pParse, Table *pTab){ in sqlite3TriggerList() 397 Table *pTab; in sqlite3FinishTrigger() 658 static Table *tableOfTrigger(Trigger *pTrigger){ in tableOfTrigger() 667 Table *pTable; in sqlite3DropTriggerPtr() 713 Table *pTab = tableOfTrigger(pTrigger); in sqlite3UnlinkAndDeleteTrigger() 914 Table *pTab /* The table being updated */ in sqlite3ExpandReturning() 957 Table *pTab, /* The table to code triggers from */ in codeReturningTrigger() 1153 Table *pTab, /* The table pTrigger is attached to */ in codeRowTrigger() 1302 Table *pTab, /* The table to code triggers from */ in sqlite3CodeRowTriggerDirect() 1377 Table *pTab, /* The table to code triggers from */ in sqlite3CodeRowTrigger() [all …]
|
| H A D | delete.c | 31 Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){ in sqlite3SrcListLookup() 33 Table *pTab; in sqlite3SrcListLookup() 76 static int vtabIsReadOnly(Parse *pParse, Table *pTab){ in vtabIsReadOnly() 96 static int tabIsReadOnly(Parse *pParse, Table *pTab){ in tabIsReadOnly() 117 int sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk){ in sqlite3IsReadOnly() 140 Table *pView, /* View definition */ in sqlite3MaterializeView() 191 Table *pTab; in sqlite3LimitWhere() 285 Table *pTab; /* The table from which records will be deleted */ in sqlite3DeleteFrom() 735 Table *pTab, /* Table containing the row to be deleted */ in sqlite3GenerateRowDelete() 887 Table *pTab, /* Table containing the row to be deleted */ in sqlite3GenerateRowIndexDelete()
|
| H A D | alter.c | 31 static int isAlterableTable(Parse *pParse, Table *pTab){ in isAlterableTable() 131 Table *pTab; /* Table being renamed */ in sqlite3AlterRenameTable() 314 Table *pNew; /* Copy of pParse->pNewTable */ in sqlite3AlterFinishAddColumn() 315 Table *pTab; /* Table being altered */ in sqlite3AlterFinishAddColumn() 479 Table *pNew; in sqlite3AlterBeginAddColumn() 480 Table *pTab; in sqlite3AlterBeginAddColumn() 521 pNew = (Table*)sqlite3DbMallocZero(db, sizeof(Table)); in sqlite3AlterBeginAddColumn() 1481 Table *pTab; in renameColumnFunc() 1726 Table *pTab = sParse.pNewTable; in renameTableFunc() 2073 Table *pTab; in dropColumnFunc() [all …]
|
| H A D | analyze.c | 207 Table *pStat; in openStatTable() 972 Table *pTab, /* Table whose indices are to be analyzed */ in analyzeOneTable() 998 Table *pStat1 = 0; in analyzeOneTable() 1027 pStat1 = (Table*)sqlite3DbMallocZero(db, sizeof(Table) + 13); in analyzeOneTable() 1358 Table *pTab = (Table*)sqliteHashData(k); in analyzeDatabase() 1405 Table *pTab; in sqlite3Analyze() 1539 Table *pTable; 1690 Table *pTab = sqlite3FindTable(db, zName, zDb); 1831 const Table *pStat4; 1873 const Table *pStat1; [all …]
|
| H A D | pragma.c | 1167 Table *pTab; in sqlite3Pragma() 1249 Table *pTab; in sqlite3Pragma() 1271 Table *pTab = sqliteHashData(k); in sqlite3Pragma() 1303 Table *pTab = sqliteHashData(i); in sqlite3Pragma() 1325 Table *pTab; in sqlite3Pragma() 1370 Table *pTab; in sqlite3Pragma() 1462 Table *pTab; in sqlite3Pragma() 1519 pTab = (Table*)sqliteHashData(k); in sqlite3Pragma() 1721 Table *pTab = sqliteHashData(x); in sqlite3Pragma() 1749 Table *pTab = sqliteHashData(x); in sqlite3Pragma() [all …]
|
| H A D | insert.c | 30 Table *pTab, /* The table to be opened */ in sqlite3OpenTable() 84 Table *pTab = pIdx->pTable; in sqlite3IndexAffinityStr() 118 char *sqlite3TableAffinityStr(sqlite3 *db, const Table *pTab){ in sqlite3TableAffinityStr() 175 void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){ in sqlite3TableAffinity() 225 static int readsTable(Parse *p, int iDb, Table *pTab){ in readsTable() 281 Table *pTab /* The table */ in sqlite3ComputeGeneratedColumns() 405 Table *pTab /* The table we are writing to */ in autoIncBegin() 414 Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab; in autoIncBegin() 580 Table *pDest, /* The table we are inserting into */ 2502 void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){ in sqlite3SetMakeRecordP5() [all …]
|
| H A D | select.c | 1032 Table *pTab; in selectExprDefer() 2077 Table *pTab; in sqlite3GenerateColumnNames() 2178 Table *pTab; in sqlite3ColumnsFromExprList() 2336 Table *pTab; in sqlite3ResultSetOfSelect() 5210 Table *pTab; in isSimpleCount() 5249 Table *pTab = pFrom->pTab; in sqlite3IndexedByLookup() 5478 Table *pTab; in resolveFromTermToCte() 5649 Table *pTab; in sqlite3ExpandSubquery() 5769 Table *pTab; in selectExpander() 6144 Table *pTab = pFrom->pTab; in selectAddSubqueryTypeInfo() [all …]
|
| H A D | update.c | 22 Table *pTab, /* The virtual table */ 61 void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ in sqlite3ColumnDefault() 205 Table *pTab = pTabList->a[0].pTab; in updateFromSelect() 295 Table *pTab; /* The table to be updated */ in sqlite3Update() 1187 Table *pTab, /* The virtual table */ in updateVirtualTable()
|
| H A D | upsert.c | 95 Table *pTab; /* That table into which we are inserting */ in sqlite3UpsertAnalyzeTarget() 257 Table *pTab, /* The table being updated */ in sqlite3UpsertDoUpdate()
|
| H A D | vdbevtab.c | 214 Table *pTab = (Table*)sqliteHashData(k); in bytecodevtabColumn()
|
| H A D | vdbeInt.h | 517 Table *pTab; /* Schema object being upated */ 640 Vdbe*,VdbeCursor*,int,const char*,Table*,i64,int,int);
|
| H A D | vdbeblob.c | 33 Table *pTab; /* Table object */ 135 Table *pTab; in sqlite3_blob_open()
|
| H A D | auth.c | 146 Table *pTab = 0; /* The table being read */ in sqlite3AuthRead()
|
| /sqlite-3.40.0/ext/fts5/test/ |
| H A D | fts5rank.test | 168 CREATE VIRTUAL TABLE "My.Table" USING fts5(Text); 170 INSERT INTO "My.Table" VALUES ('hello this is a test'); 171 INSERT INTO "My.Table" VALUES ('of trying to order by'); 172 INSERT INTO "My.Table" VALUES ('rank on an fts5 table'); 173 INSERT INTO "My.Table" VALUES ('that have periods in'); 174 INSERT INTO "My.Table" VALUES ('the table names.'); 175 INSERT INTO "My.Table" VALUES ('table table table'); 178 SELECT * FROM "My.Table" WHERE Text MATCH 'table' ORDER BY rank;
|
| /sqlite-3.40.0/ext/session/ |
| H A D | session3.test | 30 # session3-1.1.*: Table does not exist in target db. 31 # session3-1.2.*: Table has wrong number of columns in target db. 32 # session3-1.3.*: Table has wrong PK columns in target db. 91 # session3-2.1.*: Table is dropped midway through the session. 92 # session3-2.2.*: Table is dropped and recreated with a different # cols. 93 # session3-2.3.*: Table is dropped and recreated with a different PK. 98 # session3-2.4.*: Table is dropped and recreated with an identical schema.
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | README | 9 1.1 Table Creation 21 1.1 Table Creation.
|