ygerzhedovich commented on code in PR #1142:
URL: https://github.com/apache/ignite-3/pull/1142#discussion_r985790946
##########
modules/client/src/main/java/org/apache/ignite/internal/client/compute/ClientCompute.java:
##########
@@ -48,6 +48,8 @@
* Client compute implementation.
*/
public class ClientCompute implements IgniteCompute {
+ private static final String DEFAULT_SCHEMA_NAME = "PUBLIC";
Review Comment:
discussed internally. Keep as is due to no good place right now. It will be
redeveloped when we will have schema support
##########
modules/core/src/main/java/org/apache/ignite/internal/util/IgniteNameUtils.java:
##########
@@ -0,0 +1,169 @@
+/*
+ * 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.util;
+
+import static org.apache.ignite.lang.ErrorGroups.Common.ILLEGAL_ARGUMENT_ERR;
+
+import org.apache.ignite.lang.IgniteInternalException;
+import org.jetbrains.annotations.Nullable;
+
+/**
+ * Utility methods used for cluster's named objects: schemas, tables, columns,
indexes, etc.
+ */
+public final class IgniteNameUtils {
+ /** No instance methods. */
+ private IgniteNameUtils() {
+ }
+
+ /**
+ * Parse simple name: unquote name or cast to upper case not-quoted name.
+ *
+ * @param name String to parse object name.
+ * @return Unquoted name or name is cast to upper case. "tbl0" ->
"TBL0", "\"Tbl0\"" -> "Tbl0".
+ */
+ public static String parseSimpleName(String name) {
+ if (StringUtils.nullOrEmpty(name)) {
Review Comment:
ok
##########
modules/core/src/test/java/org/apache/ignite/internal/util/IgniteNameUtilsTest.java:
##########
@@ -0,0 +1,58 @@
+/*
+ * 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.util;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.equalTo;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+import org.apache.ignite.lang.ErrorGroups.Common;
+import org.apache.ignite.lang.IgniteInternalException;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.CsvSource;
+import org.junit.jupiter.params.provider.ValueSource;
+
+/**
+ * Test cases to verify {@link IgniteNameUtils}.
+ */
+public class IgniteNameUtilsTest {
+ @ParameterizedTest
+ @CsvSource({
+ "foo, FOO", "fOo, FOO", "FOO, FOO", "1o0, 1O0", "@#$, @#$",
+ "\"foo\", foo", "\"fOo\", fOo", "\"f.f\", f.f", "\"f\"\"f\", f\"f",
Review Comment:
yep, my bad
##########
modules/core/src/testFixtures/java/org/apache/ignite/internal/testframework/IgniteTestUtils.java:
##########
@@ -738,13 +737,19 @@ public static <T> T await(CompletionStage<T> stage, long
timeout, TimeUnit unit)
try {
return stage.toCompletableFuture().get(timeout, unit);
} catch (Throwable e) {
- if (e instanceof ExecutionException) {
- e = e.getCause();
- } else if (e instanceof CompletionException) {
- e = e.getCause();
+ // In tests, we generally interested in original exception,
+ // rather than ExecutionException generated by the future's
+ // contract. But topmost frame keeps important information
+ // about failed operation in clients code. So, let's keep
+ // this information in a kinda unusual yet sufficient for
+ // further debug way
+ Throwable original = ExceptionUtils.unwrapCause(e);
+
+ if (original != e) {
+ original.addSuppressed(new RuntimeException("This is a trimmed
root"));
Review Comment:
my misunderstanding, sorry.
--
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]