[docs] Typos in MySqlUnsignedIntegerConverter.java

Just fixed some typos.
This commit is contained in:
druud 2022-08-26 15:56:33 +02:00 committed by Jiri Pechanec
parent f90fedaa6e
commit 06c254b98f
3 changed files with 4 additions and 2 deletions

View File

@ -335,6 +335,7 @@ Robert Coup
Robert Roldan
Ruslan Gibaiev
Russell Ballard
Ruud H.G. van Tol
Sairam Polavarapu
Sanjay Kr Singh
Sanne Grinovero

View File

@ -71,7 +71,7 @@ public static int convertUnsignedSmallint(int originalNumber) {
/**
* Convert original value insertion of type 'MEDIUMINT' into the correct MEDIUMINT UNSIGNED representation
* Note: Unsigned MEDIUMINT (32-bit) is represented in 'Integer' 32-bit data type since the MAX value of Unsigned MEDIUMINT 16777215 < Max value of Integer 2147483647
* Note: Unsigned MEDIUMINT (24-bit) is represented in 'Integer' 32-bit data type since the MAX value of Unsigned MEDIUMINT 16777215 < Max value of Integer 2147483647
*
* @param originalNumber {@link Integer} the original insertion value
* @return {@link Integer} the correct representation of the original insertion value
@ -103,7 +103,7 @@ public static long convertUnsignedInteger(long originalNumber) {
/**
* Convert original value insertion of type 'BIGINT' into the correct BIGINT UNSIGNED representation
* Note: Unsigned BIGINT (16-bit) is represented in 'BigDecimal' data type. Reference: https://kafka.apache.org/0102/javadoc/org/apache/kafka/connect/data/Schema.Type.html
* Note: Unsigned BIGINT (64-bit) is represented in 'BigDecimal' data type. Reference: https://kafka.apache.org/0102/javadoc/org/apache/kafka/connect/data/Schema.Type.html
*
* @param originalNumber {@link BigDecimal} the original insertion value
* @return {@link BigDecimal} the correct representation of the original insertion value

View File

@ -152,3 +152,4 @@ ggaborg,Gabor Andras
comil4444,崔世杰
BetaCat,合龙 张
tjwornjs,Seo Jae-kwon
druud,Ruud H.G. van Tol