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

Pavel Pereslegin updated IGNITE-24029:
--------------------------------------
    Summary: SCHEMA support. Extend Table API to support SQL-schemas  (was: 
SCHEMA support. Make Table API use QualifiedName)

> SCHEMA support. Extend Table API to support SQL-schemas
> -------------------------------------------------------
>
>                 Key: IGNITE-24029
>                 URL: https://issues.apache.org/jira/browse/IGNITE-24029
>             Project: Ignite
>          Issue Type: Improvement
>          Components: sql
>            Reporter: Pavel Pereslegin
>            Priority: Major
>              Labels: ignite-3
>
> TBD ticket is blocked by ticket that introduces QualifiedName 
> It is necessary to introduce new methods in IgniteTables that use 
> {{QualifiedName}} instead of simple String.
> And change the old ones to use the new ones using the helper method 
> {{QualifiedName.parseof(String)}}.
> {code:java}
> interface IgniteTables {
>     ...
>     /** Gets a table with specified name. */
>     @Nullable Table table(QualifiedName tableName);
>     @Nullable Table table(String tableName) {
>         return table(QualifiedName.parseof(tableName));
>     }
>     /* ... + async methods ... */
> }
> {code}



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

Reply via email to