Skip to content

Commit

Permalink
Add CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
am357 committed Mar 9, 2024
1 parent 0a74eb6 commit 8cc9511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion partiql-value/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 8cc9511

Please sign in to comment.