diff options
author | drh <drh@noemail.net> | 2018-11-16 15:08:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-11-16 15:08:31 +0000 |
commit | e4f90b7075ba778fe60e77d75eed8e16914a0bc4 (patch) | |
tree | 84433131bfcbed36864189b2951be840b60711a8 /src | |
parent | c86b23bfbc6e4371814a8653504f2d56e9fd85d9 (diff) | |
download | sqlite-e4f90b7075ba778fe60e77d75eed8e16914a0bc4.tar.gz sqlite-e4f90b7075ba778fe60e77d75eed8e16914a0bc4.zip |
Update the generate_series() table-valued function to make use of the new
SQLITE_CONSTRAINT return from xBestIndex.
FossilOrigin-Name: 4372ad644dda5a1fa46b6b6070092320c835439b41f598cbc041e9deef786988
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/where.c b/src/where.c index 5d6827250..ec843e7e3 100644 --- a/src/where.c +++ b/src/where.c @@ -3140,6 +3140,7 @@ static int whereLoopAddVirtualOne( ** that the particular combination of parameters provided is unusable. ** Make no entries in the loop table. */ + WHERETRACE(0xffff, (" ^^^^--- non-viable plan rejected!\n")); return SQLITE_OK; } return rc; |