diff options
author | drh <drh@noemail.net> | 2018-12-10 20:01:40 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-12-10 20:01:40 +0000 |
commit | 1a6c2b1d383009aeb306f53f1915a443ab79de0f (patch) | |
tree | eb1fc5b14fee5fb4e352f27735fd86028fc73603 /src/sqliteInt.h | |
parent | 21b9225ff595a1ec121ac18ebb5ab066257a9893 (diff) | |
download | sqlite-1a6c2b1d383009aeb306f53f1915a443ab79de0f.tar.gz sqlite-1a6c2b1d383009aeb306f53f1915a443ab79de0f.zip |
Further refinements to the sqlite3_normalized_sql() interface. TH3 now
gives 100% MC/DC on that interface.
FossilOrigin-Name: c96bf6cca220e363b099455ce35195ce7e89d374a52dc787f56e7b11e587bced
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b8f771488..7dd258482 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4413,7 +4413,7 @@ int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *); void sqlite3ParserReset(Parse*); #ifdef SQLITE_ENABLE_NORMALIZE -char *sqlite3Normalize(Vdbe*, const char*, int); +char *sqlite3Normalize(Vdbe*, const char*); #endif int sqlite3Reprepare(Vdbe*); void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*); |