Add group-by and transpose (aka pivot) (#803)

This commit is contained in:
JT
2022-01-21 15:28:21 -05:00
committed by GitHub
parent 2df37d6ec2
commit 6fa022b0a8
4 changed files with 451 additions and 0 deletions

View File

@ -65,6 +65,7 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
First,
Flatten,
Get,
GroupBy,
Keep,
KeepUntil,
KeepWhile,
@ -83,6 +84,7 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
Skip,
SkipUntil,
SkipWhile,
Transpose,
Uniq,
Update,
Where,