Skip to content

Commit

Permalink
Merge 42816dd into 7203852
Browse files Browse the repository at this point in the history
  • Loading branch information
am357 committed Aug 17, 2024
2 parents 7203852 + 42816dd commit 1273b62
Show file tree
Hide file tree
Showing 7 changed files with 418 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- partiql-ast: fixed pretty-printing of `PIVOT`
- partiql-ast: improved pretty-printing of `CASE` and various clauses
-

### Added
- Added `partiql-common`.
- Added `NodeId` to `StaticType`.
- *BREAKING* Added thread-safe `PartiqlShapeBuilder` and automatic `NodeId` generation for the `StaticType`.
- Added a static thread safe `shape_builder` function that provides a convenient way for using `PartiqlShapeBuilder` for creating new shapes.
- Added `partiql_common::meta::PartiqlMetadata`

### Removed
- *BREAKING* Removed `partiql-source-map`.
Expand Down
1 change: 1 addition & 0 deletions partiql-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bench = false
indexmap = "2.2"
pretty = "0.12"
serde = { version = "1.*", features = ["derive"], optional = true }
rust_decimal = { version = "1.25.0", default-features = false, features = ["std"] }
smallvec = { version = "1.*" }
thiserror = "1.0"

Expand Down
1 change: 1 addition & 0 deletions partiql-common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![deny(rust_2018_idioms)]
#![deny(clippy::all)]
pub mod metadata;
pub mod node;
pub mod syntax;
Loading

0 comments on commit 1273b62

Please sign in to comment.