Skip to content

Commit

Permalink
[FLINK-35092][cdc][starrocks] Add starrocks integration test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiqian committed May 29, 2024
1 parent 93cbbe1 commit 704383c
Show file tree
Hide file tree
Showing 6 changed files with 980 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,24 @@ limitations under the License.
<artifactId>flink-cdc-composer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>jdbc</artifactId>
<version>1.18.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils-junit</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* 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 com.starrocks.shade.org.apache.commons.compress.utils;

import java.util.ArrayList;

/**
* Dummy class of shaded apache-commons since connector 1.2.9 depends on this, but not package it.
* This package should be removed after upgrading to 1.2.10 which will not use commons-compress
* anymore.
*/
public class Lists {
public static <E> ArrayList<E> newArrayList() {
return new ArrayList<>();
}
}
Loading

0 comments on commit 704383c

Please sign in to comment.