andygrove opened a new issue, #3337:
URL: https://github.com/apache/datafusion-comet/issues/3337

   ## Description
   
   When Spark's `ConstantFolding` optimizer rule is disabled, all-scalar 
(literal-only) expressions reach Comet's native engine. The native engine 
panics with:
   
   - `Substring(scalar) should be fold in Spark JVM side.`
   - `StringSpace(scalar) should be fold in Spark JVM side.`
   
   ## How to Reproduce
   
   ```sql
   SET 
spark.sql.optimizer.excludedRules=org.apache.spark.sql.catalyst.optimizer.ConstantFolding;
   SELECT substring('hello world', 1, 5);
   SELECT space(5);
   SELECT left('hello', 3);
   ```
   
   ## Expected Behavior
   
   The native engine should handle scalar inputs gracefully — either by 
computing the correct result or by falling back to Spark, not by panicking.
   
   ## Affected Expressions
   
   - `substring()` / `left()`
   - `space()`


-- 
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]

Reply via email to