Automatically applying components based on crash stacktrace and information from OWNERS files.
If this is incorrect, please apply the Test-Predator-Wrong-Components label.
I believe we can repro this. When I run the script, I get an error about "unable to close due to unfinalized statements" which should never happen with pure SQL script. It suggests a resource leak of some kind. We will investigate.
Short test case:
CREATE VIRTUAL TABLE t1 USING fts3;
INSERT INTO t1 VALUES('one two three'),('four one five'),('six two five');
CREATE TRIGGER t1r1 AFTER DELETE ON t1_content BEGIN
DELETE FROM t1;
END;
DELETE FROM t1;
I will not be backporting this fix, so we'll get it with the next SQLite upgrade. While memory leaks are important, this is quite a large patch, and I'd rather not carry it in our tree.
Comment 1 by ClusterFuzz
, Dec 20Labels: ClusterFuzz-Auto-CC