andygrove commented on code in PR #5049:
URL: https://github.com/apache/datafusion-comet/pull/5049#discussion_r3658411967
##########
docs/source/user-guide/latest/installation.md:
##########
@@ -166,6 +166,33 @@ CometNativeColumnarToRow
+- CometNativeScan parquet [a#6] Batched: true, DataFilters:
[isnotnull(a#6), (a#6 > 5)], Format: CometParquet, Location:
InMemoryFileIndex(1 paths)[file:/tmp/test], PartitionFilters: [],
PushedFilters: [IsNotNull(a), GreaterThan(a,5)], ReadSchema: struct<a:int>
```
+## Checking the Comet Version
+
+When the Comet plugin is loaded, it exposes its build version as the Spark
config
+`spark.comet.version`. This can be queried at runtime from any supported
language, for example:
+
+```scala
+scala> spark.conf.get("spark.comet.version")
+```
+
+```sql
+SET spark.comet.version;
Review Comment:
`SET` shows the current value.
```
spark-sql (default)> SET spark.sql.adaptive.enabled;
spark.sql.adaptive.enabled true
Time taken: 0.276 seconds, Fetched 1 row(s)
```
--
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]