diff options
author | drh <> | 2023-02-08 20:29:48 +0000 |
---|---|---|
committer | drh <> | 2023-02-08 20:29:48 +0000 |
commit | 601e4d4a0f0a62ab148d9aa77dfff2862626508f (patch) | |
tree | e8d229285d2967e51e28921d4136b9cbd900089b /src/sqliteInt.h | |
parent | 03b30b7abe0167ee5f80a9fba4a7e605caf787b4 (diff) | |
download | sqlite-601e4d4a0f0a62ab148d9aa77dfff2862626508f.tar.gz sqlite-601e4d4a0f0a62ab148d9aa77dfff2862626508f.zip |
Back out the 'txn' enhancement to date/time functions. The duration of a
"transaction" is confused and needs to be straightened out prior to moving
forward with this change.
FossilOrigin-Name: 4a145f07322d768a07619bed27e0390d50f3a01d07787b9296234a5ceb6f1218
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 5aaa45d08..9af38e8df 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1615,7 +1615,6 @@ struct sqlite3 { u8 nSqlExec; /* Number of pending OP_SqlExec opcodes */ u8 eOpenState; /* Current condition of the connection */ int nextPagesize; /* Pagesize after VACUUM if >0 */ - i64 txnTime; /* Timestamp for current transaction */ i64 nChange; /* Value returned by sqlite3_changes() */ i64 nTotalChange; /* Value returned by sqlite3_total_changes() */ int aLimit[SQLITE_N_LIMIT]; /* Limits */ @@ -5335,7 +5334,7 @@ FuncDef *sqlite3VtabOverloadFunction(sqlite3 *,FuncDef*, int nArg, Expr*); && !defined(SQLITE_OMIT_VIRTUALTABLE) void sqlite3VtabUsesAllSchemas(sqlite3_index_info*); #endif -sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context*, int); +sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context*); int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *); void sqlite3ParseObjectInit(Parse*,sqlite3*); |