Closed
Description
If I have a simple table like this
CREATE TABLE test1 (id Int32, v Text, PRIMARY KEY(id))
and execute next request via QueryService
UPSERT INTO test1 (id, v) VALUES (1, '321') RETURNING id, v;
REPLACE INTO test1 (id, v) VALUES (1, '111') RETURNING v, id;
I get an error
code = INTERNAL_ERROR(code=400030), issues = [
#1060 Execution (S_FATAL) 14:2 - 14:2: #1 contrib/ydb/core/kqp/opt/kqp_opt_kql.cpp:982 operator()(): requirement effectsMap[effect.Raw()] failed (S_FATAL),
#1060 Execution (S_FATAL) 14:2 - 14:2: #1 contrib/ydb/core/kqp/opt/kqp_opt_kql.cpp:982 operator()(): requirement effectsMap[effect.Raw()] failed (S_FATAL)
]
The same query via TableService works without problems.
Metadata
Metadata
Assignees
Labels
No labels