diff options
author | drh <drh@noemail.net> | 2019-11-15 00:52:13 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-11-15 00:52:13 +0000 |
commit | 8103a03607878504d2ada2a975b37b837e8825f3 (patch) | |
tree | 3305acb73377f4b46462171b640dfc8c8f9cdfa8 /src/sqliteInt.h | |
parent | 195a843691e2c08686c36f85ab3a4000ed9e3e2b (diff) | |
download | sqlite-8103a03607878504d2ada2a975b37b837e8825f3.tar.gz sqlite-8103a03607878504d2ada2a975b37b837e8825f3.zip |
Fix table-valued functions so that they will work as the right table
in a LEFT JOIN. Ticket [2ae0c599b735d59e]
FossilOrigin-Name: 2c35d3f67b67a53ead08b1c395e7ca8e5bf65f94a5a962a0562994a3c66c95d9
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 666b8a827..73dbdbfc7 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4248,6 +4248,7 @@ void sqlite3MaterializeView(Parse*, Table*, Expr*, ExprList*,Expr*,int); #endif int sqlite3JoinType(Parse*, Token*, Token*, Token*); +void sqlite3SetJoinExpr(Expr*,int); void sqlite3CreateForeignKey(Parse*, ExprList*, Token*, ExprList*, int); void sqlite3DeferForeignKey(Parse*, int); #ifndef SQLITE_OMIT_AUTHORIZATION |