diff options
author | drh <drh@noemail.net> | 2013-04-22 23:59:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-04-22 23:59:06 +0000 |
commit | 16fb176814bd2b8fe46f7ed0e50a0b3d33db89a0 (patch) | |
tree | 95791389bfc2d16f158af35b89e36fd39b23cc53 /src/vdbeapi.c | |
parent | 8bc8bfcb05ab15cac3c84b137b572350beb4de65 (diff) | |
parent | da8caa0b2da85ebaf75fce1b19f5d645246f3eba (diff) | |
download | sqlite-16fb176814bd2b8fe46f7ed0e50a0b3d33db89a0.tar.gz sqlite-16fb176814bd2b8fe46f7ed0e50a0b3d33db89a0.zip |
Merge the latest trunk changes into the sessions branch.
FossilOrigin-Name: 6994826c0784280f2e9728dfa4185848846d03df
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r-- | src/vdbeapi.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c index 79827b7f9..61041237d 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c @@ -454,14 +454,6 @@ end_of_step: } /* -** The maximum number of times that a statement will try to reparse -** itself before giving up and returning SQLITE_SCHEMA. -*/ -#ifndef SQLITE_MAX_SCHEMA_RETRY -# define SQLITE_MAX_SCHEMA_RETRY 5 -#endif - -/* ** This is the top-level implementation of sqlite3_step(). Call ** sqlite3Step() to do most of the work. If a schema error occurs, ** call sqlite3Reprepare() and try again. |