Skip to content

Commit

Permalink
Imported upstream sources v3.34.1
Browse files Browse the repository at this point in the history
  • Loading branch information
grendello committed Jan 25, 2021
1 parent b6b248f commit 3c24b8b
Show file tree
Hide file tree
Showing 8 changed files with 29,903 additions and 21,850 deletions.
2,318 changes: 2,078 additions & 240 deletions dist/orig/shell.c

Large diffs are not rendered by default.

22,076 changes: 12,108 additions & 9,968 deletions dist/orig/sqlite3.c

Large diffs are not rendered by default.

1,451 changes: 760 additions & 691 deletions dist/orig/sqlite3.h

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/orig/sqlite3ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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*);
};

/*
Expand Down Expand Up @@ -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)
Expand Down
Loading

0 comments on commit 3c24b8b

Please sign in to comment.