Lordworms commented on PR #16015:
URL: https://github.com/apache/datafusion/pull/16015#issuecomment-2874932927
> FYI @Lordworms I am not sure if this is related to some of your other work
I am doing a DelimJoin way (duckdb style) to support non-euqual lateral join
like
```
SELECT *
FROM t0,
LATERAL (
SELECT *
FROM t1
WHERE t1.v0 < t0.v0
);
```
and
table function like
```
SELECT *
FROM t0,
LATERAL range(1, t0.v1 + 3);
```
which may got some overlap with this pr since I have to identify the join
condition as well
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]