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

Pavel Tupitsyn commented on IGNITE-24258:
-----------------------------------------

Merged to main: 
[6bf133d8598a700283773e87aac85c5a3fffb124|https://github.com/apache/ignite-3/commit/6bf133d8598a700283773e87aac85c5a3fffb124]

> Sql schema. Extend .NET Client API with supporting qualified names
> ------------------------------------------------------------------
>
>                 Key: IGNITE-24258
>                 URL: https://issues.apache.org/jira/browse/IGNITE-24258
>             Project: Ignite
>          Issue Type: Improvement
>          Components: platforms, thin client
>            Reporter: Andrey Mashenkov
>            Assignee: Pavel Tupitsyn
>            Priority: Major
>              Labels: .NET, ignite-3
>             Fix For: 3.1
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Let's support Sql grammar syntax in .NET client for table name parsing.
> See `QualifiedName Java` class javadoc for details.
> Let's make Table API in .NET client consistent with Java API.
> Java API example:
> {code:java}
> interface IgniteTables {
>     /** Gets a list of all tables */
>     List<Table> tables();
>     /** Gets a table with specified name. */
>     @Nullable Table table(QualifiedName tableName);
>     @Nullable Table table(String tableName) {
>         return table(QualifiedName.parseof(tableName));
>     }
> }
> public interface Table {   
>     /** Returns table's qualified name. */    
>     QualifiedName tableName();
> } 
> {code}



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

Reply via email to