SQLite

View Ticket
Login
Ticket Hash: de7db14784a080535bcb85b46d39c32e8aff78f8
Title: subquery with limit clause fails as EXISTS operand
Status: Fixed Type: Code_Defect
Severity: Severe Priority: High
Subsystem: Unknown Resolution: Fixed
Last Modified: 2021-03-30 19:18:45
4.23 years ago
Created: 2021-03-29 23:11:30
4.24 years ago
Version Found In: 3.35.3
User Comments:
larrybr added on 2021-03-29 23:11:30: (text/x-markdown)
This table setup and query,<code>
  -- From test/exists2.test
  CREATE TABLE t3(a TEXT PRIMARY KEY, b TEXT, x INT) WITHOUT ROWID;
  CREATE TABLE t4(c TEXT COLLATE nocase, y INT);
  INSERT INTO t3 VALUES('one', 'i', 1);
  INSERT INTO t3 VALUES('two', 'ii', 2);
  INSERT INTO t3 VALUES('three', 'iii', 3);
  INSERT INTO t3 VALUES('four', 'iv', 4);
  INSERT INTO t3 VALUES('five', 'v', 5);
  INSERT INTO t4 VALUES('FIVE',5), ('four',4), ('TWO',2), ('one',1);
  -- new test case:
  SELECT a FROM t3 WHERE EXISTS (SELECT 1 FROM t4 WHERE (a,x)=(c,y) LIMIT 1);
</code>returns nothing when, without the limit clause, it returns more (as it should.)

Reported via email by Marco Bonardo <mbonardo@mozilla.com>
Date: Mon, 29 Mar 2021 22:00:52 +0200