dolt icon indicating copy to clipboard operation
dolt copied to clipboard

Update with subquery in keyless tables

Open jycor opened this issue 7 months ago • 0 comments

Update queries where there is a cacheable subquery are getting optimized into update joins, which aren't supported for keyless tables.

Repro:

create table t (i int);
insert into t values (1);
update t set i = 10 where i in (select 1);

jycor avatar Jun 10 '25 22:06 jycor