diff options
author | drh <drh@noemail.net> | 2018-12-05 23:45:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-12-05 23:45:46 +0000 |
commit | 253a6af532438efbb27a23d775d75d748679a861 (patch) | |
tree | 83810c57fb7bc482ee88a13075982a96827a535d /src/sqliteInt.h | |
parent | d4a4dd6ebcbd1d43f916fcd7f8d91d91ca762c08 (diff) | |
download | sqlite-253a6af532438efbb27a23d775d75d748679a861.tar.gz sqlite-253a6af532438efbb27a23d775d75d748679a861.zip |
The sqlite3_normalized_sql() interface should not be transforming quoted
identifier names into wildcards. Fix this, and at the same time simplify
the code substantially.
FossilOrigin-Name: e8540377ec66fa5f9ae3c93bedb5c094057698199c37fc211f7ea95429e815e4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9373accf8..fad351ec5 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4027,9 +4027,6 @@ int sqlite3ExprIsInteger(Expr*, int*); int sqlite3ExprCanBeNull(const Expr*); int sqlite3ExprNeedsNoAffinityChange(const Expr*, char); int sqlite3IsRowid(const char*); -#ifdef SQLITE_ENABLE_NORMALIZE -int sqlite3IsRowidN(const char*, int); -#endif void sqlite3GenerateRowDelete( Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int); void sqlite3GenerateRowIndexDelete(Parse*, Table*, int, int, int*, int); |