parthchandra commented on issue #2035:
URL:
https://github.com/apache/datafusion-comet/issues/2035#issuecomment-3090665794
With the EventDate clause we may have a second problem.
```
scala> spark.sql("SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE
WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src,
URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate
>= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY
TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC
LIMIT 10 OFFSET 1000").show()
25/07/18 13:40:04 WARN CometExecRule: Comet cannot execute some parts of
this plan natively (set spark.comet.explainFallback.enabled=false to disable
this logging):
LocalTableScan [COMET: LocalTableScan is not supported]
+--------------+--------------+-----------+---+---+---------+
|TraficSourceID|SearchEngineID|AdvEngineID|Src|Dst|PageViews|
+--------------+--------------+-----------+---+---+---------+
+--------------+--------------+-----------+---+---+---------+
```
--
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]