You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val df = spark.sql("SELECT from_unixtime(eventTime) FROM events")
170
+
171
+
val plan = df.queryExecution.executedPlan
172
+
val info = new org.apache.comet.ExtendedExplainInfo()
173
+
println(info.generateExtendedInfo(plan))
174
+
```
175
+
176
+
Output
177
+
178
+
```
179
+
Project [COMET: from_unixtime(eventTime#5L, yyyy-MM-dd HH:mm:ss, Some(GMT)) is not fully compatible with Spark. To enable it anyway, set spark.comet.expression.FromUnixTime.allowIncompatible=true. For more information, refer to the Comet Compatibility Guide (https://datafusion.apache.org/comet/user-guide/compatibility.html).]
180
+
+- CometNativeColumnarToRow
181
+
+- CometNativeScan parquet
182
+
183
+
Comet accelerated 1 out of 2 eligible operators (50%). Final plan contains 1 transitions between Spark and Comet.
184
+
```
185
+
141
186
## Comet Operator Reference
142
187
143
188
The following sections describe the Comet nodes you will see in plans, grouped
0 commit comments