diff options
author | dan <Dan Kennedy> | 2023-09-23 19:25:03 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2023-09-23 19:25:03 +0000 |
commit | 7a9bbfe1fae1e2155e3f972c2a3fa866b11c382e (patch) | |
tree | 0195bc0fa436501452319c92e3d0572f4ffbea1e /src/sqliteInt.h | |
parent | c18c7523a472ea42f8b386a1a4a85cbed3c7f825 (diff) | |
download | sqlite-7a9bbfe1fae1e2155e3f972c2a3fa866b11c382e.tar.gz sqlite-7a9bbfe1fae1e2155e3f972c2a3fa866b11c382e.zip |
Avoid an error when parsing a schema that contains indexes with WHERE clauses containing unknown collation sequences.
FossilOrigin-Name: d5dd39e37ab994ce5d75688a40c6494c17807431529e85eb2b11d58f367fe232
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 35864de5e..722197499 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4940,7 +4940,6 @@ int sqlite3WhereOkOnePass(WhereInfo*, int*); #define ONEPASS_SINGLE 1 /* ONEPASS valid for a single row update */ #define ONEPASS_MULTI 2 /* ONEPASS is valid for multiple rows */ int sqlite3WhereUsesDeferredSeek(WhereInfo*); -void sqlite3WherePartIdxExpr(Parse*, Index*, Expr*, int, SrcItem*); void sqlite3ExprCodeLoadIndexColumn(Parse*, Index*, int, int, int); int sqlite3ExprCodeGetColumn(Parse*, Table*, int, int, int, u8); void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); |