Skip to content

fix: unsigned tinyint/smallint/int/bigint exceed range issue#151

Open
enix223 wants to merge 4 commits intotaosdata:mainfrom
enix223:main
Open

fix: unsigned tinyint/smallint/int/bigint exceed range issue#151
enix223 wants to merge 4 commits intotaosdata:mainfrom
enix223:main

Conversation

@enix223
Copy link

@enix223 enix223 commented Mar 18, 2024

Refer to mysql-connector-j, map the following data types to corresponding java types:

  • UTINYINT use Short instead of Byte.
  • USMALLINT use Integer instead of Short.
  • UINT use Long instead of Integer.
  • UBIGINT use BigInteger instead of Long

Fix #150

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bug: unsigned tinyint/smallint/int/bigint issue

2 participants