Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.taosdata.flink</groupId>
<artifactId>flink-connector-tdengine</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>jar</packaging>

<name>flink-connector-tdengine</name>
Expand Down Expand Up @@ -48,7 +48,7 @@
<hamcrest.version>1.3</hamcrest.version>
<powermock.version>2.0.9</powermock.version>
<jackson.version>2.18.0</jackson.version>
<taos.jdbcdriver.version>3.6.3</taos.jdbcdriver.version>
<taos.jdbcdriver.version>3.7.3</taos.jdbcdriver.version>
</properties>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.taosdata.flink</groupId>
<artifactId>flink-connector-tdengine</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>jar</packaging>
<name>flink-connector-tdengine</name>
<url>https://github.com/taosdata/flink-connect-tdengine</url>
Expand Down Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.6.3</version>
<version>3.7.3</version>
</dependency>

<!-- Core -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.sql.Timestamp;
import java.util.List;

public class ResultSoureDeserialization implements TDengineRecordDeserialization<ResultBean> {
public class ResultSourceDeserialization implements TDengineRecordDeserialization<ResultBean> {
/**
* @param splitResultRecord A record of information containing an object list
* @return Data format after data conversion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ void testCustomTypeTDengineSource() throws Exception {
connProps.setProperty(TSDBDriver.PROPERTY_KEY_ENABLE_AUTO_RECONNECT, "true");
connProps.setProperty(TSDBDriver.PROPERTY_KEY_CHARSET, "UTF-8");
connProps.setProperty(TSDBDriver.PROPERTY_KEY_TIME_ZONE, "UTC-8");
connProps.setProperty(TDengineConfigParams.VALUE_DESERIALIZER, "com.taosdata.flink.entity.ResultSoureDeserialization");
connProps.setProperty(TDengineConfigParams.VALUE_DESERIALIZER, "com.taosdata.flink.entity.ResultSourceDeserialization");
connProps.setProperty(TDengineConfigParams.TD_JDBC_URL, "jdbc:TAOS-WS://localhost:6041/power?user=root&password=taosdata");
SourceSplitSql splitSql = new SourceSplitSql();
splitSql.setSql("select ts, `current`, voltage, phase, groupid, location, tbname from meters")
Expand Down
Loading