You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Achuth Narayan Rajagopal (JIRA)" <ji...@apache.org> on 2019/05/17 17:23:00 UTC

[jira] [Commented] (SPARK-27679) Improve queries with LIKE expression

    [ https://issues.apache.org/jira/browse/SPARK-27679?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16842332#comment-16842332 ] 

Achuth Narayan Rajagopal commented on SPARK-27679:
--------------------------------------------------

I am currently working on this.

> Improve queries with LIKE expression
> ------------------------------------
>
>                 Key: SPARK-27679
>                 URL: https://issues.apache.org/jira/browse/SPARK-27679
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 2.4.3
>            Reporter: Achuth Narayan Rajagopal
>            Priority: Major
>
> The following improvements are possible when simplifying {{LIKE}} expressions by adding support for underscore case optimization similar to '%' :
>  
> {code:java}
> 1. Filter name#10 LIKE _abc → Filter (length(name#10) = 4 && EndsWith(name#10, abc))
> 2. Filter name#10 LIKE abc_ → Filter (length(name#10) = 4 && StartsWith(name#10, abc))
> 3. Filter name#10 LIKE abc_def -> Filter ((length(name#10) = 7) && (StartsWith(name#10, abc) && EndsWith(name#10, def)))
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org