You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to update different tables in one transaction on QueryService we get error code: INTERNAL_ERROR, issues: [contrib/ydb/core/kqp/executer_actor/kqp_executer_impl.cpp:98 CreateKqpExecuter(): requirement *txsType == NKqpProto::TKqpPhyTx::TYPE_DATA failed, message: Cannot execute multiple non-data physical txs. (S_ERROR)]
Reproduction:
You can reproduce this problem from Java SDK branch
First build query service module with dependencies (all commands are executed from SDK root) mvn -am -pl query -DskipTests=true install
Then execute test on docker container mvn -pl query -Dtest=tech.ydb.query.QueryIntegrationTest#updateMultipleTablesInOneTransaction surefire:test
Or execute test on existing YDB instance mvn -pl query -DYDB_ENDPOINT=<endpoint>:2135 -DYDB_DATABASE=/Root/db1 -Dtest=tech.ydb.query.QueryIntegrationTest#updateMultipleTablesInOneTransaction surefire:test
The text was updated successfully, but these errors were encountered:
When we try to update different tables in one transaction on QueryService we get error
code: INTERNAL_ERROR, issues: [contrib/ydb/core/kqp/executer_actor/kqp_executer_impl.cpp:98 CreateKqpExecuter(): requirement *txsType == NKqpProto::TKqpPhyTx::TYPE_DATA failed, message: Cannot execute multiple non-data physical txs. (S_ERROR)]
Reproduction:
You can reproduce this problem from Java SDK branch
First build query service module with dependencies (all commands are executed from SDK root)
mvn -am -pl query -DskipTests=true install
Then execute test on docker container
mvn -pl query -Dtest=tech.ydb.query.QueryIntegrationTest#updateMultipleTablesInOneTransaction surefire:test
Or execute test on existing YDB instance
mvn -pl query -DYDB_ENDPOINT=<endpoint>:2135 -DYDB_DATABASE=/Root/db1 -Dtest=tech.ydb.query.QueryIntegrationTest#updateMultipleTablesInOneTransaction surefire:test
The text was updated successfully, but these errors were encountered: