1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-19 21:43:15 +03:00

During compilation, transfer the azVar[0..nzVar-1] array from Parse to Vdbe

rather than copying it.  Smaller and faster code.

FossilOrigin-Name: 80dd495f378614e4eca72e71e43061b1b94ee450
This commit is contained in:
drh
2016-01-20 01:48:25 +00:00
parent 36b78ee7d8
commit 6d664b4bb3
4 changed files with 14 additions and 15 deletions

View File

@@ -2794,7 +2794,7 @@ struct Parse {
** in the recursive region.
************************************************************************/
int nVar; /* Number of '?' variables seen in the SQL so far */
ynVar nVar; /* Number of '?' variables seen in the SQL so far */
int nzVar; /* Number of available slots in azVar[] */
u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */
u8 explain; /* True if the EXPLAIN flag is found on the query */