-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Bug] [connector-jdbc-kingbase]Error in Jdbc Source with Kingbase8: Unsupported Field Data Types (e.g., smallint) during Catalog Table Lookup #8866 #8874
base: dev
Are you sure you want to change the base?
Conversation
…2 → smallint, int4 → int, int8 → bigint) in JDBC Mapping
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.
@Hisoka-X The KingbaseTypeConverterTest has been updated; please review it. |
@@ -89,7 +89,7 @@ public void testConvertBoolean() { | |||
@Test | |||
public void testConvertSmallint() { | |||
BasicTypeDefine<Object> typeDefine = | |||
BasicTypeDefine.builder().name("test").columnType("int2").dataType("int2").build(); | |||
BasicTypeDefine.builder().name("test").columnType("smallint").dataType("smallint").build(); |
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.
Please do not change existed test.
…o standard SQL names, ensuring KingbaseTypeConverter aligns with JDBC behavior.
@Hisoka-X My apologies for modifying the existing code; it has been reverted. Please review the newly submitted code. |
Please fix test case. |
@Hisoka-X I have updated the test case to comply with Spotless's rules. Please review the changes and let me know if further modifications are needed. |
Please retry failed ci. |
Purpose of this pull request
Kingbase Database Column Type Mapped as Standard SQL Types (e.g., int2 → smallint, int4 → int, int8 → bigint) in JDBC Mapping
close #8866
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.