-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[sqllogictests] Port orderby.rs to sqllogictests (#5062)
* [sqllogictests] Port orderby.rs to sqllogictests * Apply suggestions from code review Co-authored-by: Yevhenii Melnyk <[email protected]> * restore lost test Co-authored-by: Yevhenii Melnyk <[email protected]>
- Loading branch information
Showing
6 changed files
with
209 additions
and
193 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
datafusion/core/tests/data/partitioned_csv/partition-0.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
0,0,true | ||
0,1,false | ||
0,2,true | ||
0,3,false | ||
0,4,true | ||
0,5,false | ||
0,6,true | ||
0,7,false | ||
0,8,true | ||
0,9,false | ||
0,10,true |
11 changes: 11 additions & 0 deletions
11
datafusion/core/tests/data/partitioned_csv/partition-1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
1,0,true | ||
1,1,false | ||
1,2,true | ||
1,3,false | ||
1,4,true | ||
1,5,false | ||
1,6,true | ||
1,7,false | ||
1,8,true | ||
1,9,false | ||
1,10,true |
11 changes: 11 additions & 0 deletions
11
datafusion/core/tests/data/partitioned_csv/partition-2.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
2,0,true | ||
2,1,false | ||
2,2,true | ||
2,3,false | ||
2,4,true | ||
2,5,false | ||
2,6,true | ||
2,7,false | ||
2,8,true | ||
2,9,false | ||
2,10,true |
11 changes: 11 additions & 0 deletions
11
datafusion/core/tests/data/partitioned_csv/partition-3.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
3,0,true | ||
3,1,false | ||
3,2,true | ||
3,3,false | ||
3,4,true | ||
3,5,false | ||
3,6,true | ||
3,7,false | ||
3,8,true | ||
3,9,false | ||
3,10,true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.