BIGINT type is a 64-bit signed integer value between -9223372036854775808 and 9223372036854775807 when signed or 0 to 18446744073709551615 when unsigned.
Currently BIGINT types are mapped into ballerina int type. Ballerina int is equivalant to java long which has max value of 9223372036854775807. So when sql unsigned bigint are used, values beyond this max value cannot be handle
BIGINT type is a 64-bit signed integer value between -9223372036854775808 and 9223372036854775807 when signed or 0 to 18446744073709551615 when unsigned.
Currently BIGINT types are mapped into ballerina int type. Ballerina int is equivalant to java long which has max value of 9223372036854775807. So when sql unsigned bigint are used, values beyond this max value cannot be handle