Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 3c24b8b

Browse files
committed
Imported upstream sources v3.34.1
Context: https://sqlite.org/2021/sqlite-amalgamation-3340100.zip
1 parent b6b248f commit 3c24b8b

File tree

8 files changed

+29903
-21850
lines changed

8 files changed

+29903
-21850
lines changed

dist/orig/shell.c

+2,078-240
Large diffs are not rendered by default.

dist/orig/sqlite3.c

+12,108-9,968
Large diffs are not rendered by default.

dist/orig/sqlite3.h

+760-691
Large diffs are not rendered by default.

dist/orig/sqlite3ext.h

+4
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ struct sqlite3_api_routines {
335335
int,const char**);
336336
void (*free_filename)(char*);
337337
sqlite3_file *(*database_file_object)(const char*);
338+
/* Version 3.34.0 and later */
339+
int (*txn_state)(sqlite3*,const char*);
338340
};
339341

340342
/*
@@ -639,6 +641,8 @@ typedef int (*sqlite3_loadext_entry)(
639641
#define sqlite3_create_filename sqlite3_api->create_filename
640642
#define sqlite3_free_filename sqlite3_api->free_filename
641643
#define sqlite3_database_file_object sqlite3_api->database_file_object
644+
/* Version 3.34.0 and later */
645+
#define sqlite3_txn_state sqlite3_api->txn_state
642646
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
643647

644648
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)

0 commit comments

Comments
 (0)