4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
13 #include "sqlite3expert.h"
18 #if !defined(SQLITE_AMALGAMATION)
19 #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST)
20 # define SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS 1
22 #if defined(SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS)
23 # define ALWAYS(X) (1)
25 #elif !defined(NDEBUG)
26 # define ALWAYS(X) ((X)?1:(assert(0),0))
27 # define NEVER(X) ((X)?(assert(0),1):0)
29 # define ALWAYS(X) (X)
32 #endif /* !defined(SQLITE_AMALGAMATION) */
35 #ifndef SQLITE_OMIT_VIRTUALTABLE
37 typedef sqlite3_int64 i64
;
38 typedef sqlite3_uint64 u64
;
40 typedef struct IdxColumn IdxColumn
;
41 typedef struct IdxConstraint IdxConstraint
;
42 typedef struct IdxScan IdxScan
;
43 typedef struct IdxStatement IdxStatement
;
44 typedef struct IdxTable IdxTable
;
45 typedef struct IdxWrite IdxWrite
;
47 #define STRLEN (int)strlen
50 ** A temp table name that we assume no user database will actually use.
51 ** If this assumption proves incorrect triggers on the table with the
52 ** conflicting name will be ignored.
54 #define UNIQUE_TABLE_NAME "t592690916721053953805701627921227776"
57 ** A single constraint. Equivalent to either "col = ?" or "col < ?" (or
58 ** any other type of single-ended range constraint on a column).
61 ** Used to temporarily link IdxConstraint objects into lists while
62 ** creating candidate indexes.
64 struct IdxConstraint
{
65 char *zColl
; /* Collation sequence */
66 int bRange
; /* True for range, false for eq */
67 int iCol
; /* Constrained table column */
68 int bFlag
; /* Used by idxFindCompatible() */
69 int bDesc
; /* True if ORDER BY <expr> DESC */
70 IdxConstraint
*pNext
; /* Next constraint in pEq or pRange list */
71 IdxConstraint
*pLink
; /* See above */
75 ** A single scan of a single table.
78 IdxTable
*pTab
; /* Associated table object */
79 int iDb
; /* Database containing table zTable */
80 i64 covering
; /* Mask of columns required for cov. index */
81 IdxConstraint
*pOrder
; /* ORDER BY columns */
82 IdxConstraint
*pEq
; /* List of == constraints */
83 IdxConstraint
*pRange
; /* List of < constraints */
84 IdxScan
*pNextScan
; /* Next IdxScan object for same analysis */
88 ** Information regarding a single database table. Extracted from
89 ** "PRAGMA table_info" by function idxGetTableInfo().
98 char *zName
; /* Table name */
100 IdxTable
*pNext
; /* Next table in linked list of all tables */
104 ** An object of the following type is created for each unique table/write-op
105 ** seen. The objects are stored in a singly-linked list beginning at
106 ** sqlite3expert.pWrite.
110 int eOp
; /* SQLITE_UPDATE, DELETE or INSERT */
115 ** Each statement being analyzed is represented by an instance of this
118 struct IdxStatement
{
119 int iId
; /* Statement number */
120 char *zSql
; /* SQL statement */
121 char *zIdx
; /* Indexes */
122 char *zEQP
; /* Plan */
128 ** A hash table for storing strings. With space for a payload string
129 ** with each entry. Methods are:
136 #define IDX_HASH_SIZE 1023
137 typedef struct IdxHashEntry IdxHashEntry
;
138 typedef struct IdxHash IdxHash
;
139 struct IdxHashEntry
{
140 char *zKey
; /* nul-terminated key */
141 char *zVal
; /* nul-terminated value string */
142 char *zVal2
; /* nul-terminated value string 2 */
143 IdxHashEntry
*pHashNext
; /* Next entry in same hash bucket */
144 IdxHashEntry
*pNext
; /* Next entry in hash */
147 IdxHashEntry
*pFirst
;
148 IdxHashEntry
*aHash
[IDX_HASH_SIZE
];
152 ** sqlite3expert object.
154 struct sqlite3expert
{
155 int iSample
; /* Percentage of tables to sample for stat1 */
156 sqlite3
*db
; /* User database */
157 sqlite3
*dbm
; /* In-memory db for this analysis */
158 sqlite3
*dbv
; /* Vtab schema for this analysis */
159 IdxTable
*pTable
; /* List of all IdxTable objects */
160 IdxScan
*pScan
; /* List of scan objects */
161 IdxWrite
*pWrite
; /* List of write objects */
162 IdxStatement
*pStatement
; /* List of IdxStatement objects */
163 int bRun
; /* True once analysis has run */
165 int rc
; /* Error code from whereinfo hook */
166 IdxHash hIdx
; /* Hash containing all candidate indexes */
167 char *zCandidates
; /* For EXPERT_REPORT_CANDIDATES */
172 ** Allocate and return nByte bytes of zeroed memory using sqlite3_malloc().
173 ** If the allocation fails, set *pRc to SQLITE_NOMEM and return NULL.
175 static void *idxMalloc(int *pRc
, int nByte
){
177 assert( *pRc
==SQLITE_OK
);
179 pRet
= sqlite3_malloc(nByte
);
181 memset(pRet
, 0, nByte
);
189 ** Initialize an IdxHash hash table.
191 static void idxHashInit(IdxHash
*pHash
){
192 memset(pHash
, 0, sizeof(IdxHash
));
196 ** Reset an IdxHash hash table.
198 static void idxHashClear(IdxHash
*pHash
){
200 for(i
=0; i
<IDX_HASH_SIZE
; i
++){
201 IdxHashEntry
*pEntry
;
203 for(pEntry
=pHash
->aHash
[i
]; pEntry
; pEntry
=pNext
){
204 pNext
= pEntry
->pHashNext
;
205 sqlite3_free(pEntry
->zVal2
);
206 sqlite3_free(pEntry
);
209 memset(pHash
, 0, sizeof(IdxHash
));
213 ** Return the index of the hash bucket that the string specified by the
214 ** arguments to this function belongs.
216 static int idxHashString(const char *z
, int n
){
217 unsigned int ret
= 0;
220 ret
+= (ret
<<3) + (unsigned char)(z
[i
]);
222 return (int)(ret
% IDX_HASH_SIZE
);
226 ** If zKey is already present in the hash table, return non-zero and do
227 ** nothing. Otherwise, add an entry with key zKey and payload string zVal to
228 ** the hash table passed as the second argument.
230 static int idxHashAdd(
236 int nKey
= STRLEN(zKey
);
237 int iHash
= idxHashString(zKey
, nKey
);
238 int nVal
= (zVal
? STRLEN(zVal
) : 0);
239 IdxHashEntry
*pEntry
;
241 for(pEntry
=pHash
->aHash
[iHash
]; pEntry
; pEntry
=pEntry
->pHashNext
){
242 if( STRLEN(pEntry
->zKey
)==nKey
&& 0==memcmp(pEntry
->zKey
, zKey
, nKey
) ){
246 pEntry
= idxMalloc(pRc
, sizeof(IdxHashEntry
) + nKey
+1 + nVal
+1);
248 pEntry
->zKey
= (char*)&pEntry
[1];
249 memcpy(pEntry
->zKey
, zKey
, nKey
);
251 pEntry
->zVal
= &pEntry
->zKey
[nKey
+1];
252 memcpy(pEntry
->zVal
, zVal
, nVal
);
254 pEntry
->pHashNext
= pHash
->aHash
[iHash
];
255 pHash
->aHash
[iHash
] = pEntry
;
257 pEntry
->pNext
= pHash
->pFirst
;
258 pHash
->pFirst
= pEntry
;
264 ** If zKey/nKey is present in the hash table, return a pointer to the
265 ** hash-entry object.
267 static IdxHashEntry
*idxHashFind(IdxHash
*pHash
, const char *zKey
, int nKey
){
269 IdxHashEntry
*pEntry
;
270 if( nKey
<0 ) nKey
= STRLEN(zKey
);
271 iHash
= idxHashString(zKey
, nKey
);
273 for(pEntry
=pHash
->aHash
[iHash
]; pEntry
; pEntry
=pEntry
->pHashNext
){
274 if( STRLEN(pEntry
->zKey
)==nKey
&& 0==memcmp(pEntry
->zKey
, zKey
, nKey
) ){
282 ** If the hash table contains an entry with a key equal to the string
283 ** passed as the final two arguments to this function, return a pointer
284 ** to the payload string. Otherwise, if zKey/nKey is not present in the
285 ** hash table, return NULL.
287 static const char *idxHashSearch(IdxHash
*pHash
, const char *zKey
, int nKey
){
288 IdxHashEntry
*pEntry
= idxHashFind(pHash
, zKey
, nKey
);
289 if( pEntry
) return pEntry
->zVal
;
294 ** Allocate and return a new IdxConstraint object. Set the IdxConstraint.zColl
295 ** variable to point to a copy of nul-terminated string zColl.
297 static IdxConstraint
*idxNewConstraint(int *pRc
, const char *zColl
){
299 int nColl
= STRLEN(zColl
);
301 assert( *pRc
==SQLITE_OK
);
302 pNew
= (IdxConstraint
*)idxMalloc(pRc
, sizeof(IdxConstraint
) * nColl
+ 1);
304 pNew
->zColl
= (char*)&pNew
[1];
305 memcpy(pNew
->zColl
, zColl
, nColl
+1);
311 ** An error associated with database handle db has just occurred. Pass
312 ** the error message to callback function xOut.
314 static void idxDatabaseError(
315 sqlite3
*db
, /* Database handle */
316 char **pzErrmsg
/* Write error here */
318 *pzErrmsg
= sqlite3_mprintf("%s", sqlite3_errmsg(db
));
322 ** Prepare an SQL statement.
324 static int idxPrepareStmt(
325 sqlite3
*db
, /* Database handle to compile against */
326 sqlite3_stmt
**ppStmt
, /* OUT: Compiled SQL statement */
327 char **pzErrmsg
, /* OUT: sqlite3_malloc()ed error message */
328 const char *zSql
/* SQL statement to compile */
330 int rc
= sqlite3_prepare_v2(db
, zSql
, -1, ppStmt
, 0);
333 idxDatabaseError(db
, pzErrmsg
);
339 ** Prepare an SQL statement using the results of a printf() formatting.
341 static int idxPrintfPrepareStmt(
342 sqlite3
*db
, /* Database handle to compile against */
343 sqlite3_stmt
**ppStmt
, /* OUT: Compiled SQL statement */
344 char **pzErrmsg
, /* OUT: sqlite3_malloc()ed error message */
345 const char *zFmt
, /* printf() format of SQL statement */
346 ... /* Trailing printf() arguments */
352 zSql
= sqlite3_vmprintf(zFmt
, ap
);
356 rc
= idxPrepareStmt(db
, ppStmt
, pzErrmsg
, zSql
);
364 /*************************************************************************
365 ** Beginning of virtual table implementation.
367 typedef struct ExpertVtab ExpertVtab
;
371 sqlite3expert
*pExpert
;
374 typedef struct ExpertCsr ExpertCsr
;
376 sqlite3_vtab_cursor base
;
380 static char *expertDequote(const char *zIn
){
382 char *zRet
= sqlite3_malloc(n
);
384 assert( zIn
[0]=='\'' );
385 assert( zIn
[n
-1]=='\'' );
390 for(iIn
=1; iIn
<(n
-1); iIn
++){
391 if( zIn
[iIn
]=='\'' ){
392 assert( zIn
[iIn
+1]=='\'' );
395 zRet
[iOut
++] = zIn
[iIn
];
404 ** This function is the implementation of both the xConnect and xCreate
405 ** methods of the r-tree virtual table.
407 ** argv[0] -> module name
408 ** argv[1] -> database name
409 ** argv[2] -> table name
410 ** argv[...] -> column names...
412 static int expertConnect(
415 int argc
, const char *const*argv
,
416 sqlite3_vtab
**ppVtab
,
419 sqlite3expert
*pExpert
= (sqlite3expert
*)pAux
;
424 *pzErr
= sqlite3_mprintf("internal error!");
427 char *zCreateTable
= expertDequote(argv
[3]);
429 rc
= sqlite3_declare_vtab(db
, zCreateTable
);
431 p
= idxMalloc(&rc
, sizeof(ExpertVtab
));
434 p
->pExpert
= pExpert
;
435 p
->pTab
= pExpert
->pTable
;
436 assert( sqlite3_stricmp(p
->pTab
->zName
, argv
[2])==0 );
438 sqlite3_free(zCreateTable
);
444 *ppVtab
= (sqlite3_vtab
*)p
;
448 static int expertDisconnect(sqlite3_vtab
*pVtab
){
449 ExpertVtab
*p
= (ExpertVtab
*)pVtab
;
454 static int expertBestIndex(sqlite3_vtab
*pVtab
, sqlite3_index_info
*pIdxInfo
){
455 ExpertVtab
*p
= (ExpertVtab
*)pVtab
;
460 SQLITE_INDEX_CONSTRAINT_EQ
| SQLITE_INDEX_CONSTRAINT_GT
|
461 SQLITE_INDEX_CONSTRAINT_LT
| SQLITE_INDEX_CONSTRAINT_GE
|
462 SQLITE_INDEX_CONSTRAINT_LE
;
464 pScan
= idxMalloc(&rc
, sizeof(IdxScan
));
468 /* Link the new scan object into the list */
469 pScan
->pTab
= p
->pTab
;
470 pScan
->pNextScan
= p
->pExpert
->pScan
;
471 p
->pExpert
->pScan
= pScan
;
473 /* Add the constraints to the IdxScan object */
474 for(i
=0; i
<pIdxInfo
->nConstraint
; i
++){
475 struct sqlite3_index_constraint
*pCons
= &pIdxInfo
->aConstraint
[i
];
478 && p
->pTab
->aCol
[pCons
->iColumn
].iPk
==0
479 && (pCons
->op
& opmask
)
482 const char *zColl
= sqlite3_vtab_collation(pIdxInfo
, i
);
483 pNew
= idxNewConstraint(&rc
, zColl
);
485 pNew
->iCol
= pCons
->iColumn
;
486 if( pCons
->op
==SQLITE_INDEX_CONSTRAINT_EQ
){
487 pNew
->pNext
= pScan
->pEq
;
491 pNew
->pNext
= pScan
->pRange
;
492 pScan
->pRange
= pNew
;
496 pIdxInfo
->aConstraintUsage
[i
].argvIndex
= n
;
500 /* Add the ORDER BY to the IdxScan object */
501 for(i
=pIdxInfo
->nOrderBy
-1; i
>=0; i
--){
502 int iCol
= pIdxInfo
->aOrderBy
[i
].iColumn
;
504 IdxConstraint
*pNew
= idxNewConstraint(&rc
, p
->pTab
->aCol
[iCol
].zColl
);
507 pNew
->bDesc
= pIdxInfo
->aOrderBy
[i
].desc
;
508 pNew
->pNext
= pScan
->pOrder
;
509 pNew
->pLink
= pScan
->pOrder
;
510 pScan
->pOrder
= pNew
;
517 pIdxInfo
->estimatedCost
= 1000000.0 / (n
+1);
521 static int expertUpdate(
524 sqlite3_value
**azData
,
535 ** Virtual table module xOpen method.
537 static int expertOpen(sqlite3_vtab
*pVTab
, sqlite3_vtab_cursor
**ppCursor
){
541 pCsr
= idxMalloc(&rc
, sizeof(ExpertCsr
));
542 *ppCursor
= (sqlite3_vtab_cursor
*)pCsr
;
547 ** Virtual table module xClose method.
549 static int expertClose(sqlite3_vtab_cursor
*cur
){
550 ExpertCsr
*pCsr
= (ExpertCsr
*)cur
;
551 sqlite3_finalize(pCsr
->pData
);
557 ** Virtual table module xEof method.
559 ** Return non-zero if the cursor does not currently point to a valid
560 ** record (i.e if the scan has finished), or zero otherwise.
562 static int expertEof(sqlite3_vtab_cursor
*cur
){
563 ExpertCsr
*pCsr
= (ExpertCsr
*)cur
;
564 return pCsr
->pData
==0;
568 ** Virtual table module xNext method.
570 static int expertNext(sqlite3_vtab_cursor
*cur
){
571 ExpertCsr
*pCsr
= (ExpertCsr
*)cur
;
574 assert( pCsr
->pData
);
575 rc
= sqlite3_step(pCsr
->pData
);
576 if( rc
!=SQLITE_ROW
){
577 rc
= sqlite3_finalize(pCsr
->pData
);
587 ** Virtual table module xRowid method.
589 static int expertRowid(sqlite3_vtab_cursor
*cur
, sqlite_int64
*pRowid
){
596 ** Virtual table module xColumn method.
598 static int expertColumn(sqlite3_vtab_cursor
*cur
, sqlite3_context
*ctx
, int i
){
599 ExpertCsr
*pCsr
= (ExpertCsr
*)cur
;
601 pVal
= sqlite3_column_value(pCsr
->pData
, i
);
603 sqlite3_result_value(ctx
, pVal
);
609 ** Virtual table module xFilter method.
611 static int expertFilter(
612 sqlite3_vtab_cursor
*cur
,
613 int idxNum
, const char *idxStr
,
614 int argc
, sqlite3_value
**argv
616 ExpertCsr
*pCsr
= (ExpertCsr
*)cur
;
617 ExpertVtab
*pVtab
= (ExpertVtab
*)(cur
->pVtab
);
618 sqlite3expert
*pExpert
= pVtab
->pExpert
;
625 rc
= sqlite3_finalize(pCsr
->pData
);
628 rc
= idxPrintfPrepareStmt(pExpert
->db
, &pCsr
->pData
, &pVtab
->base
.zErrMsg
,
629 "SELECT * FROM main.%Q WHERE sample()", pVtab
->pTab
->zName
634 rc
= expertNext(cur
);
639 static int idxRegisterVtab(sqlite3expert
*p
){
640 static sqlite3_module expertModule
= {
642 expertConnect
, /* xCreate - create a table */
643 expertConnect
, /* xConnect - connect to an existing table */
644 expertBestIndex
, /* xBestIndex - Determine search strategy */
645 expertDisconnect
, /* xDisconnect - Disconnect from a table */
646 expertDisconnect
, /* xDestroy - Drop a table */
647 expertOpen
, /* xOpen - open a cursor */
648 expertClose
, /* xClose - close a cursor */
649 expertFilter
, /* xFilter - configure scan constraints */
650 expertNext
, /* xNext - advance a cursor */
651 expertEof
, /* xEof */
652 expertColumn
, /* xColumn - read data */
653 expertRowid
, /* xRowid - read data */
654 expertUpdate
, /* xUpdate - write data */
655 0, /* xBegin - begin transaction */
656 0, /* xSync - sync transaction */
657 0, /* xCommit - commit transaction */
658 0, /* xRollback - rollback transaction */
659 0, /* xFindFunction - function overloading */
660 0, /* xRename - rename the table */
667 return sqlite3_create_module(p
->dbv
, "expert", &expertModule
, (void*)p
);
670 ** End of virtual table implementation.
671 *************************************************************************/
673 ** Finalize SQL statement pStmt. If (*pRc) is SQLITE_OK when this function
674 ** is called, set it to the return value of sqlite3_finalize() before
675 ** returning. Otherwise, discard the sqlite3_finalize() return value.
677 static void idxFinalize(int *pRc
, sqlite3_stmt
*pStmt
){
678 int rc
= sqlite3_finalize(pStmt
);
679 if( *pRc
==SQLITE_OK
) *pRc
= rc
;
683 ** Attempt to allocate an IdxTable structure corresponding to table zTab
684 ** in the main database of connection db. If successful, set (*ppOut) to
685 ** point to the new object and return SQLITE_OK. Otherwise, return an
686 ** SQLite error code and set (*ppOut) to NULL. In this case *pzErrmsg may be
687 ** set to point to an error string.
689 ** It is the responsibility of the caller to eventually free either the
690 ** IdxTable object or error message using sqlite3_free().
692 static int idxGetTableInfo(
693 sqlite3
*db
, /* Database connection to read details from */
694 const char *zTab
, /* Table name */
695 IdxTable
**ppOut
, /* OUT: New object (if successful) */
696 char **pzErrmsg
/* OUT: Error message (if not) */
698 sqlite3_stmt
*p1
= 0;
700 int nTab
= STRLEN(zTab
);
701 int nByte
= sizeof(IdxTable
) + nTab
+ 1;
707 rc
= idxPrintfPrepareStmt(db
, &p1
, pzErrmsg
, "PRAGMA table_xinfo=%Q", zTab
);
708 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(p1
) ){
709 const char *zCol
= (const char*)sqlite3_column_text(p1
, 1);
710 const char *zColSeq
= 0;
711 nByte
+= 1 + STRLEN(zCol
);
712 rc
= sqlite3_table_column_metadata(
713 db
, "main", zTab
, zCol
, 0, &zColSeq
, 0, 0, 0
715 if( zColSeq
==0 ) zColSeq
= "binary";
716 nByte
+= 1 + STRLEN(zColSeq
);
718 nPk
+= (sqlite3_column_int(p1
, 5)>0);
720 rc2
= sqlite3_reset(p1
);
721 if( rc
==SQLITE_OK
) rc
= rc2
;
723 nByte
+= sizeof(IdxColumn
) * nCol
;
725 pNew
= idxMalloc(&rc
, nByte
);
728 pNew
->aCol
= (IdxColumn
*)&pNew
[1];
730 pCsr
= (char*)&pNew
->aCol
[nCol
];
734 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(p1
) ){
735 const char *zCol
= (const char*)sqlite3_column_text(p1
, 1);
736 const char *zColSeq
= 0;
737 int nCopy
= STRLEN(zCol
) + 1;
738 pNew
->aCol
[nCol
].zName
= pCsr
;
739 pNew
->aCol
[nCol
].iPk
= (sqlite3_column_int(p1
, 5)==1 && nPk
==1);
740 memcpy(pCsr
, zCol
, nCopy
);
743 rc
= sqlite3_table_column_metadata(
744 db
, "main", zTab
, zCol
, 0, &zColSeq
, 0, 0, 0
747 if( zColSeq
==0 ) zColSeq
= "binary";
748 nCopy
= STRLEN(zColSeq
) + 1;
749 pNew
->aCol
[nCol
].zColl
= pCsr
;
750 memcpy(pCsr
, zColSeq
, nCopy
);
756 idxFinalize(&rc
, p1
);
761 }else if( ALWAYS(pNew
!=0) ){
763 if( ALWAYS(pNew
->zName
!=0) ) memcpy(pNew
->zName
, zTab
, nTab
+1);
771 ** This function is a no-op if *pRc is set to anything other than
772 ** SQLITE_OK when it is called.
774 ** If *pRc is initially set to SQLITE_OK, then the text specified by
775 ** the printf() style arguments is appended to zIn and the result returned
776 ** in a buffer allocated by sqlite3_malloc(). sqlite3_free() is called on
777 ** zIn before returning.
779 static char *idxAppendText(int *pRc
, char *zIn
, const char *zFmt
, ...){
783 int nIn
= zIn
? STRLEN(zIn
) : 0;
786 if( *pRc
==SQLITE_OK
){
787 zAppend
= sqlite3_vmprintf(zFmt
, ap
);
789 nAppend
= STRLEN(zAppend
);
790 zRet
= (char*)sqlite3_malloc(nIn
+ nAppend
+ 1);
792 if( zAppend
&& zRet
){
793 if( nIn
) memcpy(zRet
, zIn
, nIn
);
794 memcpy(&zRet
[nIn
], zAppend
, nAppend
+1);
800 sqlite3_free(zAppend
);
808 ** Return true if zId must be quoted in order to use it as an SQL
809 ** identifier, or false otherwise.
811 static int idxIdentifierRequiresQuotes(const char *zId
){
813 for(i
=0; zId
[i
]; i
++){
815 && !(zId
[i
]>='0' && zId
[i
]<='9')
816 && !(zId
[i
]>='a' && zId
[i
]<='z')
817 && !(zId
[i
]>='A' && zId
[i
]<='Z')
826 ** This function appends an index column definition suitable for constraint
827 ** pCons to the string passed as zIn and returns the result.
829 static char *idxAppendColDefn(
830 int *pRc
, /* IN/OUT: Error code */
831 char *zIn
, /* Column defn accumulated so far */
832 IdxTable
*pTab
, /* Table index will be created on */
836 IdxColumn
*p
= &pTab
->aCol
[pCons
->iCol
];
837 if( zRet
) zRet
= idxAppendText(pRc
, zRet
, ", ");
839 if( idxIdentifierRequiresQuotes(p
->zName
) ){
840 zRet
= idxAppendText(pRc
, zRet
, "%Q", p
->zName
);
842 zRet
= idxAppendText(pRc
, zRet
, "%s", p
->zName
);
845 if( sqlite3_stricmp(p
->zColl
, pCons
->zColl
) ){
846 if( idxIdentifierRequiresQuotes(pCons
->zColl
) ){
847 zRet
= idxAppendText(pRc
, zRet
, " COLLATE %Q", pCons
->zColl
);
849 zRet
= idxAppendText(pRc
, zRet
, " COLLATE %s", pCons
->zColl
);
854 zRet
= idxAppendText(pRc
, zRet
, " DESC");
860 ** Search database dbm for an index compatible with the one idxCreateFromCons()
861 ** would create from arguments pScan, pEq and pTail. If no error occurs and
862 ** such an index is found, return non-zero. Or, if no such index is found,
865 ** If an error occurs, set *pRc to an SQLite error code and return zero.
867 static int idxFindCompatible(
868 int *pRc
, /* OUT: Error code */
869 sqlite3
* dbm
, /* Database to search */
870 IdxScan
*pScan
, /* Scan for table to search for index on */
871 IdxConstraint
*pEq
, /* List of == constraints */
872 IdxConstraint
*pTail
/* List of range constraints */
874 const char *zTbl
= pScan
->pTab
->zName
;
875 sqlite3_stmt
*pIdxList
= 0;
876 IdxConstraint
*pIter
;
877 int nEq
= 0; /* Number of elements in pEq */
880 /* Count the elements in list pEq */
881 for(pIter
=pEq
; pIter
; pIter
=pIter
->pLink
) nEq
++;
883 rc
= idxPrintfPrepareStmt(dbm
, &pIdxList
, 0, "PRAGMA index_list=%Q", zTbl
);
884 while( rc
==SQLITE_OK
&& sqlite3_step(pIdxList
)==SQLITE_ROW
){
886 IdxConstraint
*pT
= pTail
;
887 sqlite3_stmt
*pInfo
= 0;
888 const char *zIdx
= (const char*)sqlite3_column_text(pIdxList
, 1);
890 /* Zero the IdxConstraint.bFlag values in the pEq list */
891 for(pIter
=pEq
; pIter
; pIter
=pIter
->pLink
) pIter
->bFlag
= 0;
893 rc
= idxPrintfPrepareStmt(dbm
, &pInfo
, 0, "PRAGMA index_xInfo=%Q", zIdx
);
894 while( rc
==SQLITE_OK
&& sqlite3_step(pInfo
)==SQLITE_ROW
){
895 int iIdx
= sqlite3_column_int(pInfo
, 0);
896 int iCol
= sqlite3_column_int(pInfo
, 1);
897 const char *zColl
= (const char*)sqlite3_column_text(pInfo
, 4);
900 for(pIter
=pEq
; pIter
; pIter
=pIter
->pLink
){
901 if( pIter
->bFlag
) continue;
902 if( pIter
->iCol
!=iCol
) continue;
903 if( sqlite3_stricmp(pIter
->zColl
, zColl
) ) continue;
913 if( pT
->iCol
!=iCol
|| sqlite3_stricmp(pT
->zColl
, zColl
) ){
921 idxFinalize(&rc
, pInfo
);
923 if( rc
==SQLITE_OK
&& bMatch
){
924 sqlite3_finalize(pIdxList
);
928 idxFinalize(&rc
, pIdxList
);
934 /* Callback for sqlite3_exec() with query with leading count(*) column.
935 * The first argument is expected to be an int*, referent to be incremented
936 * if that leading column is not exactly '0'.
938 static int countNonzeros(void* pCount
, int nc
,
939 char* azResults
[], char* azColumns
[]){
940 (void)azColumns
; /* Suppress unused parameter warning */
941 if( nc
>0 && (azResults
[0][0]!='0' || azResults
[0][1]!=0) ){
942 *((int *)pCount
) += 1;
947 static int idxCreateFromCons(
953 sqlite3
*dbm
= p
->dbm
;
955 if( (pEq
|| pTail
) && 0==idxFindCompatible(&rc
, dbm
, pScan
, pEq
, pTail
) ){
956 IdxTable
*pTab
= pScan
->pTab
;
959 IdxConstraint
*pCons
;
963 for(pCons
=pEq
; pCons
; pCons
=pCons
->pLink
){
964 zCols
= idxAppendColDefn(&rc
, zCols
, pTab
, pCons
);
966 for(pCons
=pTail
; pCons
; pCons
=pCons
->pLink
){
967 zCols
= idxAppendColDefn(&rc
, zCols
, pTab
, pCons
);
971 /* Hash the list of columns to come up with a name for the index */
972 const char *zTable
= pScan
->pTab
->zName
;
973 int quoteTable
= idxIdentifierRequiresQuotes(zTable
);
974 char *zName
= 0; /* Index name */
979 for(i
=0; zCols
[i
]; i
++){
980 h
+= ((h
<<3) + zCols
[i
]);
983 zName
= sqlite3_mprintf("%s_idx_%08x", zTable
, h
);
984 if( zName
==0 ) break;
985 /* Is is unique among table, view and index names? */
986 zFmt
= "SELECT count(*) FROM sqlite_schema WHERE name=%Q"
987 " AND type in ('index','table','view')";
988 zFind
= sqlite3_mprintf(zFmt
, zName
);
990 rc
= sqlite3_exec(dbm
, zFind
, countNonzeros
, &i
, 0);
991 assert(rc
==SQLITE_OK
);
998 }while( collisions
<50 && zName
!=0 );
1000 /* This return means "Gave up trying to find a unique index name." */
1001 rc
= SQLITE_BUSY_TIMEOUT
;
1002 }else if( zName
==0 ){
1006 zFmt
= "CREATE INDEX \"%w\" ON \"%w\"(%s)";
1008 zFmt
= "CREATE INDEX %s ON %s(%s)";
1010 zIdx
= sqlite3_mprintf(zFmt
, zName
, zTable
, zCols
);
1014 rc
= sqlite3_exec(dbm
, zIdx
, 0, 0, p
->pzErrmsg
);
1015 if( rc
!=SQLITE_OK
){
1016 rc
= SQLITE_BUSY_TIMEOUT
;
1018 idxHashAdd(&rc
, &p
->hIdx
, zName
, zIdx
);
1021 sqlite3_free(zName
);
1026 sqlite3_free(zCols
);
1032 ** Return true if list pList (linked by IdxConstraint.pLink) contains
1033 ** a constraint compatible with *p. Otherwise return false.
1035 static int idxFindConstraint(IdxConstraint
*pList
, IdxConstraint
*p
){
1036 IdxConstraint
*pCmp
;
1037 for(pCmp
=pList
; pCmp
; pCmp
=pCmp
->pLink
){
1038 if( p
->iCol
==pCmp
->iCol
) return 1;
1043 static int idxCreateFromWhere(
1045 IdxScan
*pScan
, /* Create indexes for this scan */
1046 IdxConstraint
*pTail
/* range/ORDER BY constraints for inclusion */
1048 IdxConstraint
*p1
= 0;
1049 IdxConstraint
*pCon
;
1052 /* Gather up all the == constraints. */
1053 for(pCon
=pScan
->pEq
; pCon
; pCon
=pCon
->pNext
){
1054 if( !idxFindConstraint(p1
, pCon
) && !idxFindConstraint(pTail
, pCon
) ){
1060 /* Create an index using the == constraints collected above. And the
1061 ** range constraint/ORDER BY terms passed in by the caller, if any. */
1062 rc
= idxCreateFromCons(p
, pScan
, p1
, pTail
);
1064 /* If no range/ORDER BY passed by the caller, create a version of the
1065 ** index for each range constraint. */
1067 for(pCon
=pScan
->pRange
; rc
==SQLITE_OK
&& pCon
; pCon
=pCon
->pNext
){
1068 assert( pCon
->pLink
==0 );
1069 if( !idxFindConstraint(p1
, pCon
) && !idxFindConstraint(pTail
, pCon
) ){
1070 rc
= idxCreateFromCons(p
, pScan
, p1
, pCon
);
1079 ** Create candidate indexes in database [dbm] based on the data in
1080 ** linked-list pScan.
1082 static int idxCreateCandidates(sqlite3expert
*p
){
1086 for(pIter
=p
->pScan
; pIter
&& rc
==SQLITE_OK
; pIter
=pIter
->pNextScan
){
1087 rc
= idxCreateFromWhere(p
, pIter
, 0);
1088 if( rc
==SQLITE_OK
&& pIter
->pOrder
){
1089 rc
= idxCreateFromWhere(p
, pIter
, pIter
->pOrder
);
1097 ** Free all elements of the linked list starting at pConstraint.
1099 static void idxConstraintFree(IdxConstraint
*pConstraint
){
1100 IdxConstraint
*pNext
;
1103 for(p
=pConstraint
; p
; p
=pNext
){
1110 ** Free all elements of the linked list starting from pScan up until pLast
1111 ** (pLast is not freed).
1113 static void idxScanFree(IdxScan
*pScan
, IdxScan
*pLast
){
1116 for(p
=pScan
; p
!=pLast
; p
=pNext
){
1117 pNext
= p
->pNextScan
;
1118 idxConstraintFree(p
->pOrder
);
1119 idxConstraintFree(p
->pEq
);
1120 idxConstraintFree(p
->pRange
);
1126 ** Free all elements of the linked list starting from pStatement up
1127 ** until pLast (pLast is not freed).
1129 static void idxStatementFree(IdxStatement
*pStatement
, IdxStatement
*pLast
){
1131 IdxStatement
*pNext
;
1132 for(p
=pStatement
; p
!=pLast
; p
=pNext
){
1134 sqlite3_free(p
->zEQP
);
1135 sqlite3_free(p
->zIdx
);
1141 ** Free the linked list of IdxTable objects starting at pTab.
1143 static void idxTableFree(IdxTable
*pTab
){
1146 for(pIter
=pTab
; pIter
; pIter
=pNext
){
1147 pNext
= pIter
->pNext
;
1148 sqlite3_free(pIter
);
1153 ** Free the linked list of IdxWrite objects starting at pTab.
1155 static void idxWriteFree(IdxWrite
*pTab
){
1158 for(pIter
=pTab
; pIter
; pIter
=pNext
){
1159 pNext
= pIter
->pNext
;
1160 sqlite3_free(pIter
);
1167 ** This function is called after candidate indexes have been created. It
1168 ** runs all the queries to see which indexes they prefer, and populates
1169 ** IdxStatement.zIdx and IdxStatement.zEQP with the results.
1173 char **pzErr
/* OUT: Error message (sqlite3_malloc) */
1175 IdxStatement
*pStmt
;
1176 sqlite3
*dbm
= p
->dbm
;
1182 for(pStmt
=p
->pStatement
; rc
==SQLITE_OK
&& pStmt
; pStmt
=pStmt
->pNext
){
1183 IdxHashEntry
*pEntry
;
1184 sqlite3_stmt
*pExplain
= 0;
1185 idxHashClear(&hIdx
);
1186 rc
= idxPrintfPrepareStmt(dbm
, &pExplain
, pzErr
,
1187 "EXPLAIN QUERY PLAN %s", pStmt
->zSql
1189 while( rc
==SQLITE_OK
&& sqlite3_step(pExplain
)==SQLITE_ROW
){
1190 /* int iId = sqlite3_column_int(pExplain, 0); */
1191 /* int iParent = sqlite3_column_int(pExplain, 1); */
1192 /* int iNotUsed = sqlite3_column_int(pExplain, 2); */
1193 const char *zDetail
= (const char*)sqlite3_column_text(pExplain
, 3);
1197 if( !zDetail
) continue;
1198 nDetail
= STRLEN(zDetail
);
1200 for(i
=0; i
<nDetail
; i
++){
1201 const char *zIdx
= 0;
1202 if( i
+13<nDetail
&& memcmp(&zDetail
[i
], " USING INDEX ", 13)==0 ){
1203 zIdx
= &zDetail
[i
+13];
1204 }else if( i
+22<nDetail
1205 && memcmp(&zDetail
[i
], " USING COVERING INDEX ", 22)==0
1207 zIdx
= &zDetail
[i
+22];
1212 while( zIdx
[nIdx
]!='\0' && (zIdx
[nIdx
]!=' ' || zIdx
[nIdx
+1]!='(') ){
1215 zSql
= idxHashSearch(&p
->hIdx
, zIdx
, nIdx
);
1217 idxHashAdd(&rc
, &hIdx
, zSql
, 0);
1218 if( rc
) goto find_indexes_out
;
1224 if( zDetail
[0]!='-' ){
1225 pStmt
->zEQP
= idxAppendText(&rc
, pStmt
->zEQP
, "%s\n", zDetail
);
1229 for(pEntry
=hIdx
.pFirst
; pEntry
; pEntry
=pEntry
->pNext
){
1230 pStmt
->zIdx
= idxAppendText(&rc
, pStmt
->zIdx
, "%s;\n", pEntry
->zKey
);
1233 idxFinalize(&rc
, pExplain
);
1237 idxHashClear(&hIdx
);
1241 static int idxAuthCallback(
1247 const char *zTrigger
1252 if( eOp
==SQLITE_INSERT
|| eOp
==SQLITE_UPDATE
|| eOp
==SQLITE_DELETE
){
1253 if( sqlite3_stricmp(zDb
, "main")==0 ){
1254 sqlite3expert
*p
= (sqlite3expert
*)pCtx
;
1256 for(pTab
=p
->pTable
; pTab
; pTab
=pTab
->pNext
){
1257 if( 0==sqlite3_stricmp(z3
, pTab
->zName
) ) break;
1261 for(pWrite
=p
->pWrite
; pWrite
; pWrite
=pWrite
->pNext
){
1262 if( pWrite
->pTab
==pTab
&& pWrite
->eOp
==eOp
) break;
1265 pWrite
= idxMalloc(&rc
, sizeof(IdxWrite
));
1266 if( rc
==SQLITE_OK
){
1267 pWrite
->pTab
= pTab
;
1269 pWrite
->pNext
= p
->pWrite
;
1279 static int idxProcessOneTrigger(
1284 static const char *zInt
= UNIQUE_TABLE_NAME
;
1285 static const char *zDrop
= "DROP TABLE " UNIQUE_TABLE_NAME
;
1286 IdxTable
*pTab
= pWrite
->pTab
;
1287 const char *zTab
= pTab
->zName
;
1289 "SELECT 'CREATE TEMP' || substr(sql, 7) FROM sqlite_schema "
1290 "WHERE tbl_name = %Q AND type IN ('table', 'trigger') "
1292 sqlite3_stmt
*pSelect
= 0;
1296 /* Create the table and its triggers in the temp schema */
1297 rc
= idxPrintfPrepareStmt(p
->db
, &pSelect
, pzErr
, zSql
, zTab
, zTab
);
1298 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pSelect
) ){
1299 const char *zCreate
= (const char*)sqlite3_column_text(pSelect
, 0);
1300 rc
= sqlite3_exec(p
->dbv
, zCreate
, 0, 0, pzErr
);
1302 idxFinalize(&rc
, pSelect
);
1304 /* Rename the table in the temp schema to zInt */
1305 if( rc
==SQLITE_OK
){
1306 char *z
= sqlite3_mprintf("ALTER TABLE temp.%Q RENAME TO %Q", zTab
, zInt
);
1310 rc
= sqlite3_exec(p
->dbv
, z
, 0, 0, pzErr
);
1315 switch( pWrite
->eOp
){
1316 case SQLITE_INSERT
: {
1318 zWrite
= idxAppendText(&rc
, zWrite
, "INSERT INTO %Q VALUES(", zInt
);
1319 for(i
=0; i
<pTab
->nCol
; i
++){
1320 zWrite
= idxAppendText(&rc
, zWrite
, "%s?", i
==0 ? "" : ", ");
1322 zWrite
= idxAppendText(&rc
, zWrite
, ")");
1325 case SQLITE_UPDATE
: {
1327 zWrite
= idxAppendText(&rc
, zWrite
, "UPDATE %Q SET ", zInt
);
1328 for(i
=0; i
<pTab
->nCol
; i
++){
1329 zWrite
= idxAppendText(&rc
, zWrite
, "%s%Q=?", i
==0 ? "" : ", ",
1336 assert( pWrite
->eOp
==SQLITE_DELETE
);
1337 if( rc
==SQLITE_OK
){
1338 zWrite
= sqlite3_mprintf("DELETE FROM %Q", zInt
);
1339 if( zWrite
==0 ) rc
= SQLITE_NOMEM
;
1344 if( rc
==SQLITE_OK
){
1345 sqlite3_stmt
*pX
= 0;
1346 rc
= sqlite3_prepare_v2(p
->dbv
, zWrite
, -1, &pX
, 0);
1347 idxFinalize(&rc
, pX
);
1348 if( rc
!=SQLITE_OK
){
1349 idxDatabaseError(p
->dbv
, pzErr
);
1352 sqlite3_free(zWrite
);
1354 if( rc
==SQLITE_OK
){
1355 rc
= sqlite3_exec(p
->dbv
, zDrop
, 0, 0, pzErr
);
1361 static int idxProcessTriggers(sqlite3expert
*p
, char **pzErr
){
1364 IdxWrite
*pFirst
= p
->pWrite
;
1366 while( rc
==SQLITE_OK
&& pFirst
!=pEnd
){
1368 for(pIter
=pFirst
; rc
==SQLITE_OK
&& pIter
!=pEnd
; pIter
=pIter
->pNext
){
1369 rc
= idxProcessOneTrigger(p
, pIter
, pzErr
);
1379 static int idxCreateVtabSchema(sqlite3expert
*p
, char **pzErrmsg
){
1380 int rc
= idxRegisterVtab(p
);
1381 sqlite3_stmt
*pSchema
= 0;
1383 /* For each table in the main db schema:
1385 ** 1) Add an entry to the p->pTable list, and
1386 ** 2) Create the equivalent virtual table in dbv.
1388 rc
= idxPrepareStmt(p
->db
, &pSchema
, pzErrmsg
,
1389 "SELECT type, name, sql, 1 FROM sqlite_schema "
1390 "WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%%' "
1392 "SELECT type, name, sql, 2 FROM sqlite_schema "
1393 "WHERE type = 'trigger'"
1394 " AND tbl_name IN(SELECT name FROM sqlite_schema WHERE type = 'view') "
1397 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pSchema
) ){
1398 const char *zType
= (const char*)sqlite3_column_text(pSchema
, 0);
1399 const char *zName
= (const char*)sqlite3_column_text(pSchema
, 1);
1400 const char *zSql
= (const char*)sqlite3_column_text(pSchema
, 2);
1402 if( zType
[0]=='v' || zType
[1]=='r' ){
1403 rc
= sqlite3_exec(p
->dbv
, zSql
, 0, 0, pzErrmsg
);
1406 rc
= idxGetTableInfo(p
->db
, zName
, &pTab
, pzErrmsg
);
1407 if( rc
==SQLITE_OK
){
1411 pTab
->pNext
= p
->pTable
;
1414 /* The statement the vtab will pass to sqlite3_declare_vtab() */
1415 zInner
= idxAppendText(&rc
, 0, "CREATE TABLE x(");
1416 for(i
=0; i
<pTab
->nCol
; i
++){
1417 zInner
= idxAppendText(&rc
, zInner
, "%s%Q COLLATE %s",
1418 (i
==0 ? "" : ", "), pTab
->aCol
[i
].zName
, pTab
->aCol
[i
].zColl
1421 zInner
= idxAppendText(&rc
, zInner
, ")");
1423 /* The CVT statement to create the vtab */
1424 zOuter
= idxAppendText(&rc
, 0,
1425 "CREATE VIRTUAL TABLE %Q USING expert(%Q)", zName
, zInner
1427 if( rc
==SQLITE_OK
){
1428 rc
= sqlite3_exec(p
->dbv
, zOuter
, 0, 0, pzErrmsg
);
1430 sqlite3_free(zInner
);
1431 sqlite3_free(zOuter
);
1435 idxFinalize(&rc
, pSchema
);
1439 struct IdxSampleCtx
{
1441 double target
; /* Target nRet/nRow value */
1442 double nRow
; /* Number of rows seen */
1443 double nRet
; /* Number of rows returned */
1446 static void idxSampleFunc(
1447 sqlite3_context
*pCtx
,
1449 sqlite3_value
**argv
1451 struct IdxSampleCtx
*p
= (struct IdxSampleCtx
*)sqlite3_user_data(pCtx
);
1459 bRet
= (p
->nRet
/ p
->nRow
) <= p
->target
;
1462 sqlite3_randomness(2, (void*)&rnd
);
1463 bRet
= ((int)rnd
% 100) <= p
->iTarget
;
1467 sqlite3_result_int(pCtx
, bRet
);
1469 p
->nRet
+= (double)bRet
;
1475 int eType
; /* SQLITE_NULL, INTEGER, REAL, TEXT, BLOB */
1476 i64 iVal
; /* SQLITE_INTEGER value */
1477 double rVal
; /* SQLITE_FLOAT value */
1478 int nByte
; /* Bytes of space allocated at z */
1479 int n
; /* Size of buffer z */
1480 char *z
; /* SQLITE_TEXT/BLOB value */
1485 ** Implementation of scalar function rem().
1487 static void idxRemFunc(
1488 sqlite3_context
*pCtx
,
1490 sqlite3_value
**argv
1492 struct IdxRemCtx
*p
= (struct IdxRemCtx
*)sqlite3_user_data(pCtx
);
1493 struct IdxRemSlot
*pSlot
;
1497 iSlot
= sqlite3_value_int(argv
[0]);
1498 assert( iSlot
<=p
->nSlot
);
1499 pSlot
= &p
->aSlot
[iSlot
];
1501 switch( pSlot
->eType
){
1506 case SQLITE_INTEGER
:
1507 sqlite3_result_int64(pCtx
, pSlot
->iVal
);
1511 sqlite3_result_double(pCtx
, pSlot
->rVal
);
1515 sqlite3_result_blob(pCtx
, pSlot
->z
, pSlot
->n
, SQLITE_TRANSIENT
);
1519 sqlite3_result_text(pCtx
, pSlot
->z
, pSlot
->n
, SQLITE_TRANSIENT
);
1523 pSlot
->eType
= sqlite3_value_type(argv
[1]);
1524 switch( pSlot
->eType
){
1529 case SQLITE_INTEGER
:
1530 pSlot
->iVal
= sqlite3_value_int64(argv
[1]);
1534 pSlot
->rVal
= sqlite3_value_double(argv
[1]);
1539 int nByte
= sqlite3_value_bytes(argv
[1]);
1540 if( nByte
>pSlot
->nByte
){
1541 char *zNew
= (char*)sqlite3_realloc(pSlot
->z
, nByte
*2);
1543 sqlite3_result_error_nomem(pCtx
);
1546 pSlot
->nByte
= nByte
*2;
1550 if( pSlot
->eType
==SQLITE_BLOB
){
1551 memcpy(pSlot
->z
, sqlite3_value_blob(argv
[1]), nByte
);
1553 memcpy(pSlot
->z
, sqlite3_value_text(argv
[1]), nByte
);
1560 static int idxLargestIndex(sqlite3
*db
, int *pnMax
, char **pzErr
){
1563 "SELECT max(i.seqno) FROM "
1564 " sqlite_schema AS s, "
1565 " pragma_index_list(s.name) AS l, "
1566 " pragma_index_info(l.name) AS i "
1567 "WHERE s.type = 'table'";
1568 sqlite3_stmt
*pMax
= 0;
1571 rc
= idxPrepareStmt(db
, &pMax
, pzErr
, zMax
);
1572 if( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pMax
) ){
1573 *pnMax
= sqlite3_column_int(pMax
, 0) + 1;
1575 idxFinalize(&rc
, pMax
);
1580 static int idxPopulateOneStat1(
1582 sqlite3_stmt
*pIndexXInfo
,
1583 sqlite3_stmt
*pWriteStat
,
1593 sqlite3_stmt
*pQuery
= 0;
1597 assert( p
->iSample
>0 );
1599 /* Formulate the query text */
1600 sqlite3_bind_text(pIndexXInfo
, 1, zIdx
, -1, SQLITE_STATIC
);
1601 while( SQLITE_OK
==rc
&& SQLITE_ROW
==sqlite3_step(pIndexXInfo
) ){
1602 const char *zComma
= zCols
==0 ? "" : ", ";
1603 const char *zName
= (const char*)sqlite3_column_text(pIndexXInfo
, 0);
1604 const char *zColl
= (const char*)sqlite3_column_text(pIndexXInfo
, 1);
1605 zCols
= idxAppendText(&rc
, zCols
,
1606 "%sx.%Q IS rem(%d, x.%Q) COLLATE %s", zComma
, zName
, nCol
, zName
, zColl
1608 zOrder
= idxAppendText(&rc
, zOrder
, "%s%d", zComma
, ++nCol
);
1610 sqlite3_reset(pIndexXInfo
);
1611 if( rc
==SQLITE_OK
){
1612 if( p
->iSample
==100 ){
1613 zQuery
= sqlite3_mprintf(
1614 "SELECT %s FROM %Q x ORDER BY %s", zCols
, zTab
, zOrder
1617 zQuery
= sqlite3_mprintf(
1618 "SELECT %s FROM temp."UNIQUE_TABLE_NAME
" x ORDER BY %s", zCols
, zOrder
1622 sqlite3_free(zCols
);
1623 sqlite3_free(zOrder
);
1625 /* Formulate the query text */
1626 if( rc
==SQLITE_OK
){
1627 sqlite3
*dbrem
= (p
->iSample
==100 ? p
->db
: p
->dbv
);
1628 rc
= idxPrepareStmt(dbrem
, &pQuery
, pzErr
, zQuery
);
1630 sqlite3_free(zQuery
);
1632 if( rc
==SQLITE_OK
){
1633 aStat
= (int*)idxMalloc(&rc
, sizeof(int)*(nCol
+1));
1635 if( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pQuery
) ){
1636 IdxHashEntry
*pEntry
;
1638 for(i
=0; i
<=nCol
; i
++) aStat
[i
] = 1;
1639 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pQuery
) ){
1641 for(i
=0; i
<nCol
; i
++){
1642 if( sqlite3_column_int(pQuery
, i
)==0 ) break;
1644 for(/*no-op*/; i
<nCol
; i
++){
1649 if( rc
==SQLITE_OK
){
1651 zStat
= sqlite3_mprintf("%d", s0
);
1652 if( zStat
==0 ) rc
= SQLITE_NOMEM
;
1653 for(i
=1; rc
==SQLITE_OK
&& i
<=nCol
; i
++){
1654 zStat
= idxAppendText(&rc
, zStat
, " %d", (s0
+aStat
[i
]/2) / aStat
[i
]);
1658 if( rc
==SQLITE_OK
){
1659 sqlite3_bind_text(pWriteStat
, 1, zTab
, -1, SQLITE_STATIC
);
1660 sqlite3_bind_text(pWriteStat
, 2, zIdx
, -1, SQLITE_STATIC
);
1661 sqlite3_bind_text(pWriteStat
, 3, zStat
, -1, SQLITE_STATIC
);
1662 sqlite3_step(pWriteStat
);
1663 rc
= sqlite3_reset(pWriteStat
);
1666 pEntry
= idxHashFind(&p
->hIdx
, zIdx
, STRLEN(zIdx
));
1668 assert( pEntry
->zVal2
==0 );
1669 pEntry
->zVal2
= zStat
;
1671 sqlite3_free(zStat
);
1674 sqlite3_free(aStat
);
1675 idxFinalize(&rc
, pQuery
);
1680 static int idxBuildSampleTable(sqlite3expert
*p
, const char *zTab
){
1684 rc
= sqlite3_exec(p
->dbv
,"DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME
,0,0,0);
1685 if( rc
!=SQLITE_OK
) return rc
;
1687 zSql
= sqlite3_mprintf(
1688 "CREATE TABLE temp." UNIQUE_TABLE_NAME
" AS SELECT * FROM %Q", zTab
1690 if( zSql
==0 ) return SQLITE_NOMEM
;
1691 rc
= sqlite3_exec(p
->dbv
, zSql
, 0, 0, 0);
1698 ** This function is called as part of sqlite3_expert_analyze(). Candidate
1699 ** indexes have already been created in database sqlite3expert.dbm, this
1700 ** function populates sqlite_stat1 table in the same database.
1702 ** The stat1 data is generated by querying the
1704 static int idxPopulateStat1(sqlite3expert
*p
, char **pzErr
){
1707 struct IdxRemCtx
*pCtx
= 0;
1708 struct IdxSampleCtx samplectx
;
1710 i64 iPrev
= -100000;
1711 sqlite3_stmt
*pAllIndex
= 0;
1712 sqlite3_stmt
*pIndexXInfo
= 0;
1713 sqlite3_stmt
*pWrite
= 0;
1715 const char *zAllIndex
=
1716 "SELECT s.rowid, s.name, l.name FROM "
1717 " sqlite_schema AS s, "
1718 " pragma_index_list(s.name) AS l "
1719 "WHERE s.type = 'table'";
1720 const char *zIndexXInfo
=
1721 "SELECT name, coll FROM pragma_index_xinfo(?) WHERE key";
1722 const char *zWrite
= "INSERT INTO sqlite_stat1 VALUES(?, ?, ?)";
1724 /* If iSample==0, no sqlite_stat1 data is required. */
1725 if( p
->iSample
==0 ) return SQLITE_OK
;
1727 rc
= idxLargestIndex(p
->dbm
, &nMax
, pzErr
);
1728 if( nMax
<=0 || rc
!=SQLITE_OK
) return rc
;
1730 rc
= sqlite3_exec(p
->dbm
, "ANALYZE; PRAGMA writable_schema=1", 0, 0, 0);
1732 if( rc
==SQLITE_OK
){
1733 int nByte
= sizeof(struct IdxRemCtx
) + (sizeof(struct IdxRemSlot
) * nMax
);
1734 pCtx
= (struct IdxRemCtx
*)idxMalloc(&rc
, nByte
);
1737 if( rc
==SQLITE_OK
){
1738 sqlite3
*dbrem
= (p
->iSample
==100 ? p
->db
: p
->dbv
);
1739 rc
= sqlite3_create_function(
1740 dbrem
, "rem", 2, SQLITE_UTF8
, (void*)pCtx
, idxRemFunc
, 0, 0
1743 if( rc
==SQLITE_OK
){
1744 rc
= sqlite3_create_function(
1745 p
->db
, "sample", 0, SQLITE_UTF8
, (void*)&samplectx
, idxSampleFunc
, 0, 0
1749 if( rc
==SQLITE_OK
){
1750 pCtx
->nSlot
= nMax
+1;
1751 rc
= idxPrepareStmt(p
->dbm
, &pAllIndex
, pzErr
, zAllIndex
);
1753 if( rc
==SQLITE_OK
){
1754 rc
= idxPrepareStmt(p
->dbm
, &pIndexXInfo
, pzErr
, zIndexXInfo
);
1756 if( rc
==SQLITE_OK
){
1757 rc
= idxPrepareStmt(p
->dbm
, &pWrite
, pzErr
, zWrite
);
1760 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pAllIndex
) ){
1761 i64 iRowid
= sqlite3_column_int64(pAllIndex
, 0);
1762 const char *zTab
= (const char*)sqlite3_column_text(pAllIndex
, 1);
1763 const char *zIdx
= (const char*)sqlite3_column_text(pAllIndex
, 2);
1764 if( p
->iSample
<100 && iPrev
!=iRowid
){
1765 samplectx
.target
= (double)p
->iSample
/ 100.0;
1766 samplectx
.iTarget
= p
->iSample
;
1767 samplectx
.nRow
= 0.0;
1768 samplectx
.nRet
= 0.0;
1769 rc
= idxBuildSampleTable(p
, zTab
);
1770 if( rc
!=SQLITE_OK
) break;
1772 rc
= idxPopulateOneStat1(p
, pIndexXInfo
, pWrite
, zTab
, zIdx
, pzErr
);
1775 if( rc
==SQLITE_OK
&& p
->iSample
<100 ){
1776 rc
= sqlite3_exec(p
->dbv
,
1777 "DROP TABLE IF EXISTS temp." UNIQUE_TABLE_NAME
, 0,0,0
1781 idxFinalize(&rc
, pAllIndex
);
1782 idxFinalize(&rc
, pIndexXInfo
);
1783 idxFinalize(&rc
, pWrite
);
1786 for(i
=0; i
<pCtx
->nSlot
; i
++){
1787 sqlite3_free(pCtx
->aSlot
[i
].z
);
1792 if( rc
==SQLITE_OK
){
1793 rc
= sqlite3_exec(p
->dbm
, "ANALYZE sqlite_schema", 0, 0, 0);
1796 sqlite3_exec(p
->db
, "DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME
,0,0,0);
1801 ** Allocate a new sqlite3expert object.
1803 sqlite3expert
*sqlite3_expert_new(sqlite3
*db
, char **pzErrmsg
){
1805 sqlite3expert
*pNew
;
1807 pNew
= (sqlite3expert
*)idxMalloc(&rc
, sizeof(sqlite3expert
));
1809 /* Open two in-memory databases to work with. The "vtab database" (dbv)
1810 ** will contain a virtual table corresponding to each real table in
1811 ** the user database schema, and a copy of each view. It is used to
1812 ** collect information regarding the WHERE, ORDER BY and other clauses
1813 ** of the user's query.
1815 if( rc
==SQLITE_OK
){
1817 pNew
->iSample
= 100;
1818 rc
= sqlite3_open(":memory:", &pNew
->dbv
);
1820 if( rc
==SQLITE_OK
){
1821 rc
= sqlite3_open(":memory:", &pNew
->dbm
);
1822 if( rc
==SQLITE_OK
){
1823 sqlite3_db_config(pNew
->dbm
, SQLITE_DBCONFIG_TRIGGER_EQP
, 1, (int*)0);
1828 /* Copy the entire schema of database [db] into [dbm]. */
1829 if( rc
==SQLITE_OK
){
1831 rc
= idxPrintfPrepareStmt(pNew
->db
, &pSql
, pzErrmsg
,
1832 "SELECT sql FROM sqlite_schema WHERE name NOT LIKE 'sqlite_%%'"
1833 " AND sql NOT LIKE 'CREATE VIRTUAL %%'"
1835 while( rc
==SQLITE_OK
&& SQLITE_ROW
==sqlite3_step(pSql
) ){
1836 const char *zSql
= (const char*)sqlite3_column_text(pSql
, 0);
1837 rc
= sqlite3_exec(pNew
->dbm
, zSql
, 0, 0, pzErrmsg
);
1839 idxFinalize(&rc
, pSql
);
1842 /* Create the vtab schema */
1843 if( rc
==SQLITE_OK
){
1844 rc
= idxCreateVtabSchema(pNew
, pzErrmsg
);
1847 /* Register the auth callback with dbv */
1848 if( rc
==SQLITE_OK
){
1849 sqlite3_set_authorizer(pNew
->dbv
, idxAuthCallback
, (void*)pNew
);
1852 /* If an error has occurred, free the new object and reutrn NULL. Otherwise,
1853 ** return the new sqlite3expert handle. */
1854 if( rc
!=SQLITE_OK
){
1855 sqlite3_expert_destroy(pNew
);
1862 ** Configure an sqlite3expert object.
1864 int sqlite3_expert_config(sqlite3expert
*p
, int op
, ...){
1869 case EXPERT_CONFIG_SAMPLE
: {
1870 int iVal
= va_arg(ap
, int);
1871 if( iVal
<0 ) iVal
= 0;
1872 if( iVal
>100 ) iVal
= 100;
1877 rc
= SQLITE_NOTFOUND
;
1886 ** Add an SQL statement to the analysis.
1888 int sqlite3_expert_sql(
1889 sqlite3expert
*p
, /* From sqlite3_expert_new() */
1890 const char *zSql
, /* SQL statement to add */
1891 char **pzErr
/* OUT: Error message (if any) */
1893 IdxScan
*pScanOrig
= p
->pScan
;
1894 IdxStatement
*pStmtOrig
= p
->pStatement
;
1896 const char *zStmt
= zSql
;
1898 if( p
->bRun
) return SQLITE_MISUSE
;
1900 while( rc
==SQLITE_OK
&& zStmt
&& zStmt
[0] ){
1901 sqlite3_stmt
*pStmt
= 0;
1902 rc
= sqlite3_prepare_v2(p
->dbv
, zStmt
, -1, &pStmt
, &zStmt
);
1903 if( rc
==SQLITE_OK
){
1906 const char *z
= sqlite3_sql(pStmt
);
1908 pNew
= (IdxStatement
*)idxMalloc(&rc
, sizeof(IdxStatement
) + n
+1);
1909 if( rc
==SQLITE_OK
){
1910 pNew
->zSql
= (char*)&pNew
[1];
1911 memcpy(pNew
->zSql
, z
, n
+1);
1912 pNew
->pNext
= p
->pStatement
;
1913 if( p
->pStatement
) pNew
->iId
= p
->pStatement
->iId
+1;
1914 p
->pStatement
= pNew
;
1916 sqlite3_finalize(pStmt
);
1919 idxDatabaseError(p
->dbv
, pzErr
);
1923 if( rc
!=SQLITE_OK
){
1924 idxScanFree(p
->pScan
, pScanOrig
);
1925 idxStatementFree(p
->pStatement
, pStmtOrig
);
1926 p
->pScan
= pScanOrig
;
1927 p
->pStatement
= pStmtOrig
;
1933 int sqlite3_expert_analyze(sqlite3expert
*p
, char **pzErr
){
1935 IdxHashEntry
*pEntry
;
1937 /* Do trigger processing to collect any extra IdxScan structures */
1938 rc
= idxProcessTriggers(p
, pzErr
);
1940 /* Create candidate indexes within the in-memory database file */
1941 if( rc
==SQLITE_OK
){
1942 rc
= idxCreateCandidates(p
);
1943 }else if ( rc
==SQLITE_BUSY_TIMEOUT
){
1945 *pzErr
= sqlite3_mprintf("Cannot find a unique index name to propose.");
1949 /* Generate the stat1 data */
1950 if( rc
==SQLITE_OK
){
1951 rc
= idxPopulateStat1(p
, pzErr
);
1954 /* Formulate the EXPERT_REPORT_CANDIDATES text */
1955 for(pEntry
=p
->hIdx
.pFirst
; pEntry
; pEntry
=pEntry
->pNext
){
1956 p
->zCandidates
= idxAppendText(&rc
, p
->zCandidates
,
1957 "%s;%s%s\n", pEntry
->zVal
,
1958 pEntry
->zVal2
? " -- stat1: " : "", pEntry
->zVal2
1962 /* Figure out which of the candidate indexes are preferred by the query
1963 ** planner and report the results to the user. */
1964 if( rc
==SQLITE_OK
){
1965 rc
= idxFindIndexes(p
, pzErr
);
1968 if( rc
==SQLITE_OK
){
1975 ** Return the total number of statements that have been added to this
1976 ** sqlite3expert using sqlite3_expert_sql().
1978 int sqlite3_expert_count(sqlite3expert
*p
){
1980 if( p
->pStatement
) nRet
= p
->pStatement
->iId
+1;
1985 ** Return a component of the report.
1987 const char *sqlite3_expert_report(sqlite3expert
*p
, int iStmt
, int eReport
){
1988 const char *zRet
= 0;
1989 IdxStatement
*pStmt
;
1991 if( p
->bRun
==0 ) return 0;
1992 for(pStmt
=p
->pStatement
; pStmt
&& pStmt
->iId
!=iStmt
; pStmt
=pStmt
->pNext
);
1994 case EXPERT_REPORT_SQL
:
1995 if( pStmt
) zRet
= pStmt
->zSql
;
1997 case EXPERT_REPORT_INDEXES
:
1998 if( pStmt
) zRet
= pStmt
->zIdx
;
2000 case EXPERT_REPORT_PLAN
:
2001 if( pStmt
) zRet
= pStmt
->zEQP
;
2003 case EXPERT_REPORT_CANDIDATES
:
2004 zRet
= p
->zCandidates
;
2011 ** Free an sqlite3expert object.
2013 void sqlite3_expert_destroy(sqlite3expert
*p
){
2015 sqlite3_close(p
->dbm
);
2016 sqlite3_close(p
->dbv
);
2017 idxScanFree(p
->pScan
, 0);
2018 idxStatementFree(p
->pStatement
, 0);
2019 idxTableFree(p
->pTable
);
2020 idxWriteFree(p
->pWrite
);
2021 idxHashClear(&p
->hIdx
);
2022 sqlite3_free(p
->zCandidates
);
2027 #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */