Skip to content

Commit

Permalink
chore: update bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
levydsa committed Aug 29, 2024
1 parent 0d6c5a1 commit 3c88ee9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions libsql-ffi/bundled/src/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
** configure
** configure.ac
** ext/fts5/fts5_tokenize.c
** ext/fts5/fts5_unicode2.c
** ext/jni/src/org/sqlite/jni/capi/CollationNeededCallback.java
** ext/jni/src/org/sqlite/jni/capi/CommitHookCallback.java
** ext/jni/src/org/sqlite/jni/capi/PreupdateHookCallback.java
Expand Down Expand Up @@ -538,11 +539,11 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION_NUMBER 3045001
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"

#define LIBSQL_VERSION "0.2.3"
#define LIBSQL_VERSION "0.2.3"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down Expand Up @@ -21616,6 +21617,10 @@ SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3*);
SQLITE_PRIVATE void sqlite3ChangeCookie(Parse*, int);
SQLITE_PRIVATE With *sqlite3WithDup(sqlite3 *db, With *p);

/* libsql parse functions */
void libsql_create_function(Parse *pParse, Token *pName, Token *pLang, Token *pBody, int isBlob, int noErr);
void libsql_drop_function(Parse *pParse, Token *pName, int noErr);

#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER)
SQLITE_PRIVATE void sqlite3MaterializeView(Parse*, Table*, Expr*, ExprList*,Expr*,int);
#endif
Expand Down Expand Up @@ -116950,6 +116955,7 @@ SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse *pParse, int iFirst, int iLast){
** that implements the ALTER TABLE command.
*/
/* #include "sqliteInt.h" */
/* #include "vdbeInt.h" */

/*
** The code in this file only exists if we are not omitting the
Expand Down Expand Up @@ -261386,7 +261392,7 @@ static int sqlite3Fts5TokenizerInit(fts5_api *pApi){
** DO NOT EDIT THIS MACHINE GENERATED FILE.
*/


/* #include "fts5Int.h" */
/* #include <assert.h> */


Expand Down
6 changes: 3 additions & 3 deletions libsql-ffi/bundled/src/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION_NUMBER 3045001
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"

#define LIBSQL_VERSION "0.2.3"
#define LIBSQL_VERSION "0.2.3"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down

0 comments on commit 3c88ee9

Please sign in to comment.