v0.27.2
Fix bounds checking of BIGINT (#148) This introduces a pseudo-type NUMERIC that is used internally to hold exact values before they are cast into the used type. The previous logic was to make all integers into BIGINT and all decimals into DOUBLE PRECISION which caused some bounds checking to be impossible to detect. Fixes #116 Fixes #121