From d7aed4102d2a40c74553240c7f03585624d27aea Mon Sep 17 00:00:00 2001 From: Emanuele Gaifas Date: Sat, 10 Mar 2018 23:08:31 +0100 Subject: bpo-27645: Add support for native backup facility of SQLite (GH-4238) --- Modules/_sqlite/module.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Modules/_sqlite/module.c') diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 879c66692bc..6befa073dcf 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -322,6 +322,9 @@ static const IntConstantPair _int_constants[] = { #endif #if SQLITE_VERSION_NUMBER >= 3008003 {"SQLITE_RECURSIVE", SQLITE_RECURSIVE}, +#endif +#if SQLITE_VERSION_NUMBER >= 3006011 + {"SQLITE_DONE", SQLITE_DONE}, #endif {(char*)NULL, 0} }; -- cgit v1.2.3