Skip to content

v0.27.2

Compare
Choose a tag to compare
@elliotchance elliotchance released this 03 Mar 13:56
· 40 commits to main since this release
e423a6e
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