milenkovicm opened a new issue, #1273:
URL: https://github.com/apache/datafusion-python/issues/1273

   **Is your feature request related to a problem or challenge? Please describe 
what you are trying to do.**
   
   there is a bit of ceremony involved into creating filter statement
   
   ```python
   from datafusion import col, lit
   df.filter(col("age") > lit(3))
   ```
   
   **Describe the solution you'd like**
   
   Add support for string expressions, something like 
   
   ```python
   df.filter("age > 3").show()
   ```
   which would simplify filter creation,  but keep support for original way to 
create expression parameter
   
   **Describe alternatives you've considered**
   
   **Additional context**
   
   - [Spark DataFrame.filter(...) 
implementation](https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.DataFrame.filter.html)


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