lowka commented on code in PR #3344:
URL: https://github.com/apache/ignite-3/pull/3344#discussion_r1517181451
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/schemasync/ItSchemaSyncSingleNodeTest.java:
##########
@@ -121,7 +121,7 @@ void
readWriteOperationInTxAfterAlteringSchemaOnTargetTableIsRejected(Operation
private void createTable() {
cluster.doInSession(0, session -> {
- executeUpdate("CREATE TABLE " + TABLE_NAME + " (id int PRIMARY
KEY, val varchar)", session);
+ executeUpdate("CREATE TABLE " + TABLE_NAME + " (id int, val
varchar, PRIMARY KEY USING HASH (id))", session);
Review Comment:
1. This test does not care about index type.
2. An error in OrderedPublisher is not correctly propagated
(https://issues.apache.org/jira/browse/IGNITE-21684). So error message checks
in this test are going to fail, if a sorted index is used.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]