-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### What changes were proposed in this pull request? - Support table operation on Flink ### Why are the changes needed? - Fix: #3371 ### Does this PR introduce _any_ user-facing change? - no ### How was this patch tested? - add Uts and ITs
- Loading branch information
Showing
12 changed files
with
563 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
58 changes: 58 additions & 0 deletions
58
flink-connector/src/main/java/com/datastrato/gravitino/flink/connector/utils/TypeUtils.java
This file contains 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,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 com.datastrato.gravitino.flink.connector.utils; | ||
|
||
import com.datastrato.gravitino.rel.types.Type; | ||
import com.datastrato.gravitino.rel.types.Types; | ||
import org.apache.flink.table.api.DataTypes; | ||
import org.apache.flink.table.types.DataType; | ||
import org.apache.flink.table.types.logical.LogicalType; | ||
|
||
public class TypeUtils { | ||
|
||
private TypeUtils() {} | ||
|
||
public static Type toGravitinoType(LogicalType logicalType) { | ||
switch (logicalType.getTypeRoot()) { | ||
case VARCHAR: | ||
return Types.StringType.get(); | ||
case DOUBLE: | ||
return Types.DoubleType.get(); | ||
case INTEGER: | ||
return Types.IntegerType.get(); | ||
default: | ||
throw new UnsupportedOperationException( | ||
"Not support type: " + logicalType.asSummaryString()); | ||
} | ||
} | ||
|
||
public static DataType toFlinkType(Type gravitinoType) { | ||
switch (gravitinoType.name()) { | ||
case DOUBLE: | ||
return DataTypes.DOUBLE(); | ||
case STRING: | ||
return DataTypes.STRING(); | ||
case INTEGER: | ||
return DataTypes.INT(); | ||
default: | ||
throw new UnsupportedOperationException("Not support " + gravitinoType.toString()); | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
.../test/java/com/datastrato/gravitino/flink/connector/hive/TestHivePropertiesConverter.java
This file contains 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
Oops, something went wrong.