Closed
Description
Details as below, all these samples work on H2 and I will look into it.
CREATE TABLE test (
a VARCHAR (1)
, b VARCHAR (1)
)
;
-- queries are supported
update test
set (a, b) = (select '1', '2');
-- value lists are not supported
update test
set (a, b) = values( '1', '2');
-- simple expression lists are not supported
update test
set (a, b) = ('1', '2');
-- complex expression lists are not supported
update test
set (a, b) = (1, (select 2));
Originally posted by @manticore-projects in #1313 (comment)