refactor: change column names from 'Column*' to 'column*' (#4556)

This commit is contained in:
Justin Ma
2022-02-20 08:26:47 +08:00
committed by GitHub
parent a6c565ed4e
commit aea4355d04
23 changed files with 98 additions and 98 deletions

View File

@@ -10,10 +10,10 @@ fn by_column() {
| skip 1
| first 4
| split column "="
| sort-by Column1
| sort-by column1
| skip 1
| first 1
| get Column1
| get column1
| str trim
"#
));
@@ -36,7 +36,7 @@ fn by_invalid_column() {
| sort-by ColumnThatDoesNotExist
| skip 1
| first 1
| get Column1
| get column1
| str trim
"#
));