[
https://issues.apache.org/jira/browse/IGNITE-24258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Pavel Tupitsyn updated IGNITE-24258:
------------------------------------
Summary: Sql schema. Extend .NET Client API with supporting qualified names
(was: Sql schema. Extend dotNet Client API with supporting qualified names)
> 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
> Priority: Major
> Labels: .NET, ignite-3
>
> 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)