diff options
author | drh <drh@noemail.net> | 2015-08-19 17:11:37 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-08-19 17:11:37 +0000 |
commit | 01d230ce057ac505b064cdffcc01075eb387967c (patch) | |
tree | d0d6f5a00a82f7d151e9a14c58f9b9d77f7f420e /src/whereInt.h | |
parent | 8a48b9c0b18e01b0fec665ad1c86a6fce5fbf1cf (diff) | |
download | sqlite-01d230ce057ac505b064cdffcc01075eb387967c.tar.gz sqlite-01d230ce057ac505b064cdffcc01075eb387967c.zip |
A list of arguments following a table name translates into equality
constraints against hidden columns in that table.
FossilOrigin-Name: 40e12cfe4c29475417ba89fb637b4c763cf74016
Diffstat (limited to 'src/whereInt.h')
-rw-r--r-- | src/whereInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/whereInt.h b/src/whereInt.h index 8929d8c4b..76b665d97 100644 --- a/src/whereInt.h +++ b/src/whereInt.h @@ -475,6 +475,7 @@ void sqlite3WhereSplit(WhereClause*,Expr*,u8); Bitmask sqlite3WhereExprUsage(WhereMaskSet*, Expr*); Bitmask sqlite3WhereExprListUsage(WhereMaskSet*, ExprList*); void sqlite3WhereExprAnalyze(SrcList*, WhereClause*); +void sqlite3WhereTabFuncArgs(Parse*, struct SrcList_item*, WhereClause*); |