1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Begin enforcing the SQLITE_LIMIT_VDBE_OP. The documentation warned that this

day might come.

FossilOrigin-Name: ef5914617088cbf89bfae88f63ea959a07f02dff387ddc2b43948ad99c6a97b8
This commit is contained in:
drh
2017-03-17 22:50:16 +00:00
parent f53524b4f7
commit 1cb0266dcb
5 changed files with 21 additions and 13 deletions

View File

@@ -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
/*