Compare commits

..

7 Commits

Author SHA1 Message Date
Steve Dower
1106b0e116 Merge branch 'sqlite' of https://github.com/python/cpython-source-deps into sqlite 2021-04-27 16:51:45 +01:00
Steve Dower
8a26356c27 Add SQLite 3.35.5 sources 2021-04-27 16:51:18 +01:00
Steve Dower
d7bf0265c1 Add SQLite 3.35.0 sources 2021-04-27 16:50:29 +01:00
Steve Dower
483b7288d1 Import SQLite 3.34.0 sources 2021-01-05 21:06:08 +00:00
Steve Dower
b04e151c18 Import SQLite 3.33.0 sources 2020-10-08 00:14:26 +01:00
Erlend Egeberg Aasland
7a9881195e Add SQLite 3.32.3 for CPython (#21) 2020-07-20 23:24:00 +01:00
Erlend Egeberg Aasland
ba0c59b6df Add SQLite 3.32.2 for CPython (#20) 2020-06-08 16:59:47 +01:00
4 changed files with 21679 additions and 14955 deletions

2797
shell.c

File diff suppressed because it is too large Load Diff

32339
sqlite3.c

File diff suppressed because it is too large Load Diff

1494
sqlite3.h

File diff suppressed because it is too large Load Diff

View File

@@ -335,6 +335,8 @@ struct sqlite3_api_routines {
int,const char**);
void (*free_filename)(char*);
sqlite3_file *(*database_file_object)(const char*);
/* Version 3.34.0 and later */
int (*txn_state)(sqlite3*,const char*);
};
/*
@@ -639,6 +641,8 @@ typedef int (*sqlite3_loadext_entry)(
#define sqlite3_create_filename sqlite3_api->create_filename
#define sqlite3_free_filename sqlite3_api->free_filename
#define sqlite3_database_file_object sqlite3_api->database_file_object
/* Version 3.34.0 and later */
#define sqlite3_txn_state sqlite3_api->txn_state
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)