This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a commit to branch ignite-19942
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit 9218897c63a98d6579d83c019c28df0366c10c0c
Author: amashenkov <andrey.mashen...@gmail.com>
AuthorDate: Fri Jul 28 16:30:58 2023 +0300

    Revet uprelated change.
---
 .../ignite/internal/runner/app/ItIgniteNodeRestartTest.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java
 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java
index 60e2e37a26..f2ed27f25a 100644
--- 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java
+++ 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java
@@ -153,10 +153,10 @@ public class ItIgniteNodeRestartTest extends 
BaseIgniteRestartTest {
     private static final IntFunction<String> VALUE_PRODUCER = i -> "val " + i;
 
     /** Test table name. */
-    private static final String TABLE_NAME = "Table1".toUpperCase();
+    private static final String TABLE_NAME = "Table1";
 
     /** Test table name. */
-    private static final String TABLE_NAME_2 = "Table2".toUpperCase();
+    private static final String TABLE_NAME_2 = "Table2";
 
     @InjectConfiguration("mock: " + RAFT_CFG)
     private static RaftConfiguration raftConfiguration;
@@ -1205,9 +1205,9 @@ public class ItIgniteNodeRestartTest extends 
BaseIgniteRestartTest {
      */
     private void createTableWithData(List<IgniteImpl> nodes, String name, int 
replicas, int partitions) {
         try (Session session = nodes.get(0).sql().createSession()) {
-            session.execute(null, String.format("CREATE ZONE IF NOT EXISTS 
ZONE_%s WITH REPLICAS=%d, PARTITIONS=%d",
-                            name.toUpperCase(), replicas, partitions));
-            session.execute(null, "CREATE TABLE IF NOT EXISTS " + 
name.toUpperCase()
+            session.execute(null,
+                    String.format("CREATE ZONE IF NOT EXISTS ZONE_%s WITH 
REPLICAS=%d, PARTITIONS=%d", name, replicas, partitions));
+            session.execute(null, "CREATE TABLE IF NOT EXISTS " + name
                     + "(id INT PRIMARY KEY, name VARCHAR) WITH 
PRIMARY_ZONE='ZONE_" + name.toUpperCase() + "';");
 
             for (int i = 0; i < 100; i++) {

Reply via email to