skorotkov commented on code in PR #11906:
URL: https://github.com/apache/ignite/pull/11906#discussion_r1984857798


##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/tpch/TpchHelper.java:
##########
@@ -0,0 +1,360 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.internal.processors.query.calcite.integration.tpch;
+
+import java.io.BufferedReader;
+import java.io.BufferedWriter;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.math.BigDecimal;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.List;
+import java.util.Map;
+import java.util.function.BiFunction;
+import java.util.stream.Stream;
+import java.util.stream.StreamSupport;
+import io.trino.tpch.TpchEntity;
+import io.trino.tpch.TpchTable;
+import org.apache.ignite.Ignite;
+import org.apache.ignite.IgniteDataStreamer;
+import org.apache.ignite.IgniteException;
+import org.apache.ignite.binary.BinaryObjectBuilder;
+import org.apache.ignite.cache.query.QueryCursor;
+import org.apache.ignite.cache.query.SqlFieldsQuery;
+import org.apache.ignite.internal.IgniteEx;
+import org.apache.ignite.internal.util.lang.GridMapEntry;
+
+import static io.trino.tpch.TpchTable.getTables;
+
+/**
+ * Provides utility methods to work with data and queries defined by the TPC-H 
benchmark.
+ */
+public class TpchHelper {

Review Comment:
   like this one
   
   ```
   
   package org.apache.ignite.internal.processors.query.calcite.integration.tpch;
   
   import 
org.apache.ignite.internal.processors.query.calcite.integration.AbstractBasicIntegrationTest;
   import org.junit.Test;
   
   /**
    * Exception in TPC-H Query 20:
    *   Unexpected error at query optimizer: Index 7 out of bounds for length 7
    */
   public class TpchQ20Test extends AbstractBasicIntegrationTest {
       /** */
       @Test
       public void testQ20() throws InterruptedException {
           TpchHelper.createTables(client);
   
           // Reproduced even without data, so data load can be skipped.
   //        TpchHelper.fillTables(client, 0.01);
   //        awaitPartitionMapExchange();
   
           sql(TpchHelper.getQuery(20));
       }
   }
   ```



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to