Skip to content

Commit

Permalink
[FLINK-31531][hive] Fix Hive test failure in Hive3
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyuxia committed Mar 21, 2023
1 parent 3d35048 commit d95aced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ void testCreateTableWithConstraints() throws Exception {
Arrays.asList(
Column.physical("x", DataTypes.INT().notNull()),
Column.physical("y", DataTypes.TIMESTAMP(9).notNull()),
Column.physical("z", DataTypes.BIGINT().notNull())),
Column.physical("z", DataTypes.BIGINT())),
new ArrayList<>(),
org.apache.flink.table.catalog.UniqueConstraint.primaryKey(
"pk_name", Collections.singletonList("x")));
Expand Down
2 changes: 1 addition & 1 deletion tools/azure-pipelines/build-apache-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ stages:
name: Default
e2e_pool_definition:
vmImage: 'ubuntu-20.04'
environment: PROFILE="-Dflink.hadoop.version=2.10.2 -Dscala-2.12"
environment: PROFILE="-Dinclude_hadoop_aws -Dflink.hadoop.version=3.1.3 -Phadoop3-tests,hive3"
run_end_to_end: false
container: flink-build-container
jdk: 8
Expand Down

0 comments on commit d95aced

Please sign in to comment.