Add uniq command (#1132)

* start playing with ways to use the uniq command

* WIP

* Got uniq working, but still need to figure out args issue and add tests

* Add some tests for uniq

* fmt

* remove commented out code

* Add documentation and some additional tests showing uniq values and rows. Also removed args TODO

* add changes that didn't get committed

* whoops, I didn't save the docs correctly...

* fmt

* Add a test for uniq with nested json

* Add another test

* Fix unique-ness when json keys are out of order and make the test json more complicated
This commit is contained in:
Ryan Blecher
2019-12-30 23:05:02 -05:00
committed by Jonathan Turner
parent dba82ac530
commit f37f29b441
13 changed files with 298 additions and 6 deletions

View File

@ -26,5 +26,6 @@ mod save;
mod sort_by;
mod split_by;
mod split_column;
mod uniq;
mod where_;
mod wrap;