Rename count to length (#3166)

* update docs to refer to length instead of count

* rename count to length

* change all occurrences of 'count' to 'length' in tests

* format length command
This commit is contained in:
John-Goff
2021-03-13 16:46:40 -05:00
committed by GitHub
parent 6cf8df8685
commit c13fe83784
38 changed files with 109 additions and 107 deletions

View File

@ -22,7 +22,7 @@ fn removes_duplicate_rows() {
r#"
open los_tres_caballeros.csv
| uniq
| count
| length
"#
));
@ -52,7 +52,7 @@ fn uniq_values() {
open los_tres_caballeros.csv
| select type
| uniq
| count
| length
"#
));
@ -117,7 +117,7 @@ fn nested_json_structures() {
r#"
open nested_json_structures.json
| uniq
| count
| length
"#
));
@ -133,7 +133,7 @@ fn uniq_when_keys_out_of_order() {
echo '[{"a": "a", "b": [1,2,3]},{"b": [1,2,3], "a": "a"}]'
| from json
| uniq
| count
| length
"#
));