This is a the part of the test file
Last lines are:
REPLACE INTO t1 VALUES(4, 'replace (new)')
query IT rowsort
SELECT x, y FROM t1 WHERE x=4
----
4
replace (new)
But here there are no any lines with x=4. How REPLACE INTO should work here? Should it insert new value or just skip?
This is a the part of the test file
Last lines are:
But here there are no any lines with
x=4. HowREPLACE INTOshould work here? Should it insert new value or just skip?