Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1k
PHOENIX-5940 Pre-4.15 client cannot connect to 4.15+ server after SYS…#950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Uh oh!
There was an error while loading. Please reload this page.
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
99 changes: 99 additions & 0 deletions
99 ...ore/src/it/java/org/apache/phoenix/end2end/BackwardCompatibilityForSplitableSyscatIT.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| /* | ||
| * 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.phoenix.end2end; | ||
| import com.google.common.collect.Maps; | ||
| import org.apache.phoenix.util.PhoenixRuntime; | ||
| import org.junit.Before; | ||
| import org.junit.BeforeClass; | ||
| import org.junit.Test; | ||
| import org.junit.experimental.categories.Category; | ||
| import org.junit.runner.RunWith; | ||
| import org.junit.runners.Parameterized; | ||
| import java.util.Collection; | ||
| import java.util.Map; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.CREATE_ADD; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.CREATE_TMP_TABLE; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.QUERY_CREATE_ADD; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.QUERY_DELETE; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.QUERY_SELECT_AND_DROP_TABLE; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.assertExpectedOutput; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.checkForPreConditions; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.computeClientVersions; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.executeQueriesWithCurrentVersion; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.executeQueryWithClientVersion; | ||
| import static org.apache.phoenix.end2end.BackwardCompatibilityTestUtil.UpgradeProps.NONE; | ||
| /** | ||
| * This class is meant for specifically testing syscat with all compatible client versions. | ||
| */ | ||
| @RunWith(Parameterized.class) | ||
| @Category(NeedsOwnMiniClusterTest.class) | ||
| public class BackwardCompatibilityForSplitableSyscatIT extends SplitSystemCatalogIT { | ||
| private final String compatibleClientVersion; | ||
| private static String zkQuorum; | ||
| private static String url; | ||
| @Parameterized.Parameters(name = "BackwardCompatibilityForSplitableSyscatIT_compatibleClientVersion={0}") | ||
| public static synchronized Collection<String> data() throws Exception { | ||
| return computeClientVersions(); | ||
| } | ||
| public BackwardCompatibilityForSplitableSyscatIT(String compatibleClientVersion) { | ||
| this.compatibleClientVersion = compatibleClientVersion; | ||
| } | ||
| @Before | ||
| public synchronized void setup() throws Exception { | ||
| Map<String, String> serverProps = Maps.newHashMapWithExpectedSize(1); | ||
| doSetup(serverProps); | ||
| zkQuorum = "localhost:" + getZKClientPort(config); | ||
| url = PhoenixRuntime.JDBC_PROTOCOL + PhoenixRuntime.JDBC_PROTOCOL_SEPARATOR + zkQuorum; | ||
| checkForPreConditions(compatibleClientVersion, config); | ||
| } | ||
| @Test | ||
| public void testSplittableSyscatWithOldClientForAddingDataAndDelete() throws Exception { | ||
| executeQueryWithClientVersion(compatibleClientVersion, QUERY_DELETE, zkQuorum); | ||
| assertExpectedOutput(QUERY_DELETE); | ||
| } | ||
| @Test | ||
| public void testSplittableSyscatWithNewClientForAddingDataAndDelete() throws Exception { | ||
| executeQueriesWithCurrentVersion(QUERY_DELETE, url, NONE); | ||
| assertExpectedOutput(QUERY_DELETE); | ||
| } | ||
| @Test | ||
| public void testSplittableSyscatWithOldClientLoadDataAndNewClientQueryAndDelete() throws Exception { | ||
| executeQueryWithClientVersion(compatibleClientVersion, CREATE_TMP_TABLE, zkQuorum); | ||
| executeQueriesWithCurrentVersion(QUERY_SELECT_AND_DROP_TABLE, url, NONE); | ||
| assertExpectedOutput(QUERY_SELECT_AND_DROP_TABLE); | ||
| } | ||
| @Test | ||
| public void testSplittableSyscatWithNewClientLoadDataAndOldClientQueryAndDelete() throws Exception { | ||
| executeQueriesWithCurrentVersion(CREATE_TMP_TABLE, url, NONE); | ||
| executeQueryWithClientVersion(compatibleClientVersion, QUERY_SELECT_AND_DROP_TABLE, zkQuorum); | ||
| assertExpectedOutput(QUERY_SELECT_AND_DROP_TABLE); | ||
| } | ||
| } | ||
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.