aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteLimit.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-03-17 22:50:16 +0000
committerdrh <drh@noemail.net>2017-03-17 22:50:16 +0000
commit1cb0266dcb290384be714fca64710ce3035fb096 (patch)
tree5539114baebbb27413f0a1c029c2f9d1155a537b /src/sqliteLimit.h
parentf53524b4f72be7e7cf96fdec983000c9e4c5a85a (diff)
downloadsqlite-1cb0266dcb290384be714fca64710ce3035fb096.tar.gz
sqlite-1cb0266dcb290384be714fca64710ce3035fb096.zip
Begin enforcing the SQLITE_LIMIT_VDBE_OP. The documentation warned that this
day might come. FossilOrigin-Name: ef5914617088cbf89bfae88f63ea959a07f02dff387ddc2b43948ad99c6a97b8
Diffstat (limited to 'src/sqliteLimit.h')
-rw-r--r--src/sqliteLimit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteLimit.h b/src/sqliteLimit.h
index 0554e6158..28e7a41cc 100644
--- a/src/sqliteLimit.h
+++ b/src/sqliteLimit.h
@@ -87,7 +87,7 @@
** Not currently enforced.
*/
#ifndef SQLITE_MAX_VDBE_OP
-# define SQLITE_MAX_VDBE_OP 25000
+# define SQLITE_MAX_VDBE_OP 250000000
#endif
/*