[ 
https://issues.apache.org/jira/browse/SPARK-55155?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yuyuan Tang updated SPARK-55155:
--------------------------------
    Description: 
Currently, we support using a string literal, a simple identifier, and the 
IDENTIFIER clause for `SET CATALOG`.
{code:sql}
SET CATALOG cat_name;
SET CATALOG "cat_name";
SET CATALOG IDENTIFIER(:param);  {code}
 
This ticket is to support foldable expression for `SET CATALOG`, e.g.,
{code:sql}
SET CATALOG :declared_var -- if declared_var cannot be resolved, it is treated 
as a literal catalog name
SET CATALOG CAST("cat_name"as String);
SET CATALOG CONCAT('cat_', 'name');{code}
 
Note: `SET CATALOG` is case-sensitive, meaning that `SET CATALOG CaT_NaMe` will 
try to set the catalog to `CaT_NaMe` and will throw a NOT_FOUND error if it 
does not exist.

  was:
Currently, we support using a string literal, a simple identifier, and the 
IDENTIFIER clause for `SET CATALOG`.
{code:sql}
SET CATALOG cat_name;
SET CATALOG "cat_name";
SET CATALOG IDENTIFIER(:param);  {code}
 
This ticket is to support foldable expression for `SET CATALOG`, e.g.,
{code:sql}
SET CATALOG CAST("cat_name"as String);
SET CATALOG CONCAT('cat_', 'name');{code}
 
Note: `SET CATALOG` is case-sensitive, meaning that `SET CATALOG CaT_NaMe` will 
try to set the catalog to `CaT_NaMe` and will throw a NOT_FOUND error if it 
does not exist.


> Support foldable expression for SET CATALOG
> -------------------------------------------
>
>                 Key: SPARK-55155
>                 URL: https://issues.apache.org/jira/browse/SPARK-55155
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 4.2.0, 4.1.2
>            Reporter: Yuyuan Tang
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 4.2.0, 4.1.2
>
>   Original Estimate: 168h
>  Remaining Estimate: 168h
>
> Currently, we support using a string literal, a simple identifier, and the 
> IDENTIFIER clause for `SET CATALOG`.
> {code:sql}
> SET CATALOG cat_name;
> SET CATALOG "cat_name";
> SET CATALOG IDENTIFIER(:param);  {code}
>  
> This ticket is to support foldable expression for `SET CATALOG`, e.g.,
> {code:sql}
> SET CATALOG :declared_var -- if declared_var cannot be resolved, it is 
> treated as a literal catalog name
> SET CATALOG CAST("cat_name"as String);
> SET CATALOG CONCAT('cat_', 'name');{code}
>  
> Note: `SET CATALOG` is case-sensitive, meaning that `SET CATALOG CaT_NaMe` 
> will try to set the catalog to `CaT_NaMe` and will throw a NOT_FOUND error if 
> it does not exist.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to