Skip to content
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

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from

Conversation

t1234849
Copy link

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

…2 → smallint, int4 → int, int8 → bigint) in JDBC Mapping
Copy link
Member

@Hisoka-X Hisoka-X left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@t1234849
Copy link
Author

t1234849 commented Mar 4, 2025

@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();
Copy link
Member

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.
@t1234849
Copy link
Author

t1234849 commented Mar 4, 2025

@Hisoka-X My apologies for modifying the existing code; it has been reverted. Please review the newly submitted code.

@Hisoka-X
Copy link
Member

Hisoka-X commented Mar 5, 2025

Please fix test case.

@t1234849
Copy link
Author

t1234849 commented Mar 6, 2025

@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.

@Hisoka-X
Copy link
Member

Hisoka-X commented Mar 6, 2025

Please retry failed ci.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants