Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
d5d6cda
do not add redundant subquery ordering into plan
Aug 6, 2024
eeabaf1
format code
Aug 6, 2024
85e23e7
add license
Aug 6, 2024
bd63098
fix test cases with sort plan removing
Aug 6, 2024
930c204
fix comment
Aug 6, 2024
9d5f875
keep sorting on ordering mode test cases
Aug 6, 2024
2d40a8d
protect test intentions with order + limit
Aug 6, 2024
b6bc6d4
protect test intentions with order + limit
Aug 6, 2024
510b16c
Tmp
mustafasrepo Aug 7, 2024
6ef4369
Minor changes
mustafasrepo Aug 7, 2024
c3efafc
Minor changes
mustafasrepo Aug 7, 2024
2d1b48f
Merge remote-tracking branch 'refs/remotes/origin/bug_fix/enforce_sor…
Aug 7, 2024
2bf220d
Minor changes
mustafasrepo Aug 7, 2024
eb83917
Implement top down recursion with delete check
mustafasrepo Aug 7, 2024
0b66b15
Minor changes
mustafasrepo Aug 7, 2024
9d3a972
Merge remote-tracking branch 'refs/remotes/origin/bug_fix/enforce_sor…
Aug 7, 2024
c769f9f
Minor changes
mustafasrepo Aug 7, 2024
07dca3a
Merge remote-tracking branch 'refs/remotes/origin/bug_fix/enforce_sor…
Aug 7, 2024
9192ca9
initialize fetch() api for execution plan
Aug 7, 2024
0ad7063
Address reviews
mustafasrepo Aug 7, 2024
3661f06
Update comments
mustafasrepo Aug 7, 2024
60967c1
Minor changes
mustafasrepo Aug 7, 2024
6b87c4c
Make test deterministic
mustafasrepo Aug 7, 2024
a029d6f
add supports limit push down to union exec
Aug 8, 2024
74041e7
support limit push down with multi children cases
Aug 8, 2024
1d73ddb
fix typos
Aug 8, 2024
8dd7e0a
Add fetch info to the statistics
mustafasrepo Aug 8, 2024
23a33df
optimize tpch test plans
Aug 8, 2024
15423ae
Enforce distribution use inexact count estimate also.
mustafasrepo Aug 8, 2024
94fb83d
Minor changes
mustafasrepo Aug 8, 2024
9053b9f
Minor changes
mustafasrepo Aug 8, 2024
54fc4b2
Merge remote-tracking branch 'refs/remotes/origin/bug_fix/enforce_sor…
Aug 8, 2024
501f403
Merge branch 'refs/heads/bug_fix/enforce_sorting' into feature/Sort-F…
Aug 8, 2024
ebda00a
Merge remote-tracking branch 'refs/remotes/origin/apache_main' into f…
Aug 14, 2024
27342ff
merge with apache main
Aug 14, 2024
1d04db8
format code
Aug 14, 2024
ec67b36
fix doc paths
Aug 14, 2024
4564f4b
fix doc paths
Aug 14, 2024
8e7d1df
Merge branch 'refs/heads/apache_main' into feature/Sort-For-Subqueries
Aug 14, 2024
b139b02
remove redundant code block
Aug 14, 2024
4472e15
if partition count is 1 put GlobalLimitExec
Aug 14, 2024
eb96912
fix test cases
Aug 14, 2024
128676e
Apply suggestions from code review
ozankabak Aug 14, 2024
782487c
fix syntax errors
Aug 14, 2024
ff227a2
Simplify branches
ozankabak Aug 15, 2024
07820cc
Merge branch 'refs/heads/apache_main' into feature/Sort-For-Subqueries
Aug 19, 2024
c6a9abc
remove redundant limit plans from merge
Aug 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
protect test intentions with order + limit
  • Loading branch information
Mert Akkaya committed Aug 6, 2024
commit b6bc6d428d05c22368ca93292ce901f75a09e4da
5 changes: 3 additions & 2 deletions datafusion/sqllogictest/test_files/joins.slt
Original file line number Diff line number Diff line change
Expand Up @@ -3957,13 +3957,14 @@ SELECT * FROM (
) as lhs RIGHT JOIN (
SELECT * from right_table_missing_probe
ORDER BY b
LIMIT 10
) AS rhs ON lhs.b=rhs.b
----
11 1 21 1
14 6 23 6
15 8 25 8
NULL NULL 22 4
14 6 23 6
NULL NULL 24 7
15 8 25 8

query TT
EXPLAIN SELECT * FROM (
Expand Down