[
https://issues.apache.org/jira/browse/IGNITE-24021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Andrey Mashenkov updated IGNITE-24021:
--------------------------------------
Description: Let's remove deprecated methods and make code cleanup after
the feature will be implemented and all mandatory tickets will be resolved.
(was: Extend Ignite Cache API with supporting SQL-schemas.
Add missed methods and fix exited, so interface looks like this.
{code:java}
interface IgniteCaches {
/** Gets a list of all caches */
List<Cache> caches();
/** Gets a list of caches that belong to requested schema.*/
List<Cache> caches(String schemaName); // Optional
/** Gets a cache with specified name. */
@Nullable Cache cache(QualifiedName cacheName);
/** Shortcut method for better UX. */
@Nullable Cache cache(String cacheName) {
return cache(QualifiedName.parse(cacheName));
}
/* ... + async methods ... */
}
{code}
Add integration tests, which checks cache names are correctly resolved.)
> Sql. Code cleanup.
> ------------------
>
> Key: IGNITE-24021
> URL: https://issues.apache.org/jira/browse/IGNITE-24021
> Project: Ignite
> Issue Type: Improvement
> Components: cache, sql, thin client
> Reporter: Andrey Mashenkov
> Priority: Major
> Labels: ignite-3
> Fix For: 3.0
>
>
> Let's remove deprecated methods and make code cleanup after the feature will
> be implemented and all mandatory tickets will be resolved.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)