-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Feature][Connector-V2] Jdbc connector support SAP HANA Source & SAP HANA Sink. #3017
Conversation
Is it necessary to have init-datasource as a separate file?I think the paperwork is getting a little messy,How about writing it straight into code? |
Nice thought. |
47f8040
to
63a6cd4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, Please take a look @ic4y
The code style should be fixed. |
Done @Hisoka-X |
2711ae9
to
40c8dab
Compare
@FlechazoW The Integration Test have some problems should be fixed. |
61d251d
to
b4b9dc6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
...tor-jdbc-e2e/src/test/java/org/apache/seatunnel/connectors/seatunnel/jdbc/JdbcSapHanaIT.java
Outdated
Show resolved
Hide resolved
55473c2
to
a86f227
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
trigger CI |
e6ed84f
to
e354ea7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution, please add e2e tests
case SAP_HANA_REAL: | ||
case SAP_HANA_SMALLDECIMAL: | ||
return BasicType.FLOAT_TYPE; | ||
case SAP_HANA_BIGINT: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SAP_HANA_BIGINT
can be use BasicType.LONG_TYPE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems unchanged?
return BasicType.FLOAT_TYPE; | ||
case SAP_HANA_BIGINT: | ||
case SAP_HANA_INTEGER: | ||
case SAP_HANA_SMALLINT: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SAP_HANA_SMALLINT
-> BasicType.SHORT_TYPE
case SAP_HANA_BIGINT: | ||
case SAP_HANA_INTEGER: | ||
case SAP_HANA_SMALLINT: | ||
case SAP_HANA_TINYINT: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SAP_HANA_TINYINT
-> BasicType.BYTE_TYPE
795eae8
to
6cb0b51
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @ic4y PTAL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, cc @ic4y
Are |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Purpose of this pull request
[Connector-V2][JDBC-connector] support Jdbc dm
Check list
New License Guide