aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2018-12-05 13:39:06 +0000
committerdrh <drh@noemail.net>2018-12-05 13:39:06 +0000
commit707821ff72aa67bc1fbf7ed6df1617d3e19d372b (patch)
tree8db3a4807b0b78421b8190d4bd611acfe4a1a02d /src/sqliteInt.h
parent731dd6ebdaa4463286ed5843cd6d3bc6d506e117 (diff)
downloadsqlite-707821ff72aa67bc1fbf7ed6df1617d3e19d372b.tar.gz
sqlite-707821ff72aa67bc1fbf7ed6df1617d3e19d372b.zip
Enhance the sqlite3_normalize_sql() interface so that it works even if the
prepared statement was not initially compiled using SQLITE_PREPARE_NORMALIZED. Enhance the ".trace" command in the CLI so that it is able to access the full scope of functionality provided by sqlite3_trace_v2() and in particular so that it is able to show normalized SQL output using the newly enhanced sqlite3_normalize_sql() interface. FossilOrigin-Name: 7da617e97eb905cb009c47403786682b911e32a630f266e1c53ea72836fc88b5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 9f9d03a60..fc52fecfe 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4424,7 +4424,7 @@ int sqlite3VdbeParameterIndex(Vdbe*, const char*, int);
int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *);
void sqlite3ParserReset(Parse*);
#ifdef SQLITE_ENABLE_NORMALIZE
-void sqlite3Normalize(Vdbe*, const char*, int, u8);
+char *sqlite3Normalize(Vdbe*, const char*, int);
#endif
int sqlite3Reprepare(Vdbe*);
void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*);