[
https://issues.apache.org/jira/browse/IGNITE-24258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Pavel Tupitsyn updated IGNITE-24258:
------------------------------------
Ignite Flags: Docs Required,Release Notes Required
> 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)