diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c38c1bb..dbedabc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Adds quotes to the attributes of PartiQL tuple's debug output so it can be read and transformed using Kotlin `partiql-cli` +- Adds u8, u16, u32, u64, and u128 support to partiql_value::Value::from(type) - [breaking] Changes the interface to `EvalPlan` to accept an `EvalContext` ### Added diff --git a/partiql-value/src/lib.rs b/partiql-value/src/lib.rs index 448b7b90..17083b61 100644 --- a/partiql-value/src/lib.rs +++ b/partiql-value/src/lib.rs @@ -1304,10 +1304,10 @@ mod tests { Value::from(f64::NEG_INFINITY), Value::from(-123.456), Value::Decimal(Box::new(dec!(1.23456))), - Value::from(123456), Value::from(138u8), Value::from(1348u16), Value::from(13849u32), + Value::from(123456), Value::from(1384449u64), Value::from(138444339u128), Value::from(f64::INFINITY),