diff options
author | dan <dan@noemail.net> | 2009-10-03 07:04:11 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2009-10-03 07:04:11 +0000 |
commit | 02470b20f30e37f6fc046a76671f19daecd61739 (patch) | |
tree | 1fa071708be7c5007abe6ddfac0373dc111b37f0 /src/sqliteInt.h | |
parent | 251ad6e1c577022c3ab7538019fc8450ced6ebe0 (diff) | |
download | sqlite-02470b20f30e37f6fc046a76671f19daecd61739.tar.gz sqlite-02470b20f30e37f6fc046a76671f19daecd61739.zip |
Handle an SQLITE_IGNORE returned when requesting authorization to read parent key columns by pretending the parent key columns contain NULL values.
FossilOrigin-Name: 3c24df38e6ae5dfe999bbf3133b65df0074c6a50
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 a82bbdfc8..03ff1be11 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2734,7 +2734,7 @@ void sqlite3DeferForeignKey(Parse*, int); int sqlite3AuthCheck(Parse*,int, const char*, const char*, const char*); void sqlite3AuthContextPush(Parse*, AuthContext*, const char*); void sqlite3AuthContextPop(AuthContext*); - void sqlite3AuthReadCol(Parse*, const char *, const char *, int, Expr *); + int sqlite3AuthReadCol(Parse*, const char *, const char *, int); #else # define sqlite3AuthRead(a,b,c,d) # define sqlite3AuthCheck(a,b,c,d,e) SQLITE_OK |