You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ko...@apache.org on 2022/10/31 12:46:17 UTC

[ignite-3] branch ignite-3.0.0-beta1 updated: IGNITE-18016: Get rid of schema mention in javadoc in IgniteTables (#1279)

This is an automated email from the ASF dual-hosted git repository.

korlov pushed a commit to branch ignite-3.0.0-beta1
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-3.0.0-beta1 by this push:
     new 63736ec3ee IGNITE-18016: Get rid of schema mention in javadoc in IgniteTables (#1279)
63736ec3ee is described below

commit 63736ec3eefaec89089252159f0d520cc2f5d15e
Author: ygerzhedovich <41...@users.noreply.github.com>
AuthorDate: Mon Oct 31 15:30:37 2022 +0300

    IGNITE-18016: Get rid of schema mention in javadoc in IgniteTables (#1279)
    
    (cherry picked from commit 108523f9d700a06078d6ca93a7d2012aadfc8d6d)
---
 .../java/org/apache/ignite/table/manager/IgniteTables.java     | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/modules/api/src/main/java/org/apache/ignite/table/manager/IgniteTables.java b/modules/api/src/main/java/org/apache/ignite/table/manager/IgniteTables.java
index f88b44aef0..6938dbf9f2 100644
--- a/modules/api/src/main/java/org/apache/ignite/table/manager/IgniteTables.java
+++ b/modules/api/src/main/java/org/apache/ignite/table/manager/IgniteTables.java
@@ -51,9 +51,8 @@ public interface IgniteTables {
     /**
      * Gets a table by name, if it was created before.
      *
-     * @param name Canonical name of the table ([schemaName].[tableName]) with SQL-parser style quotation, e.g.
-     *             "public.tbl0" - the table "PUBLIC.TBL0" will be looked up,
-     *             "PUBLIC.\"Tbl0\"" - "PUBLIC.Tbl0", "\"MySchema\".\"Tbl0\"" - "MySchema.Tbl0", etc.
+     * @param name Name of the table with SQL-parser style quotation, e.g.
+     *             "tbl0" - the table "TBL0" will be looked up, "\"Tbl0\"" - "Tbl0", etc.
      * @return Tables with corresponding name or {@code null} if table isn't created.
      * @throws IgniteException If an unspecified platform exception has happened internally. Is thrown when:
      *                         <ul>
@@ -65,9 +64,8 @@ public interface IgniteTables {
     /**
      * Gets a table by name, if it was created before.
      *
-     * @param name Canonical name of the table ([schemaName].[tableName]) with SQL-parser style quotation, e.g.
-     *             "public.tbl0" - the table "PUBLIC.TBL0" will be looked up,
-     *             "PUBLIC.\"Tbl0\"" - "PUBLIC.Tbl0", "\"MySchema\".\"Tbl0\"" - "MySchema.Tbl0", etc.
+     * @param name Name of the table with SQL-parser style quotation, e.g.
+     *             "tbl0" - the table "TBL0" will be looked up, "\"Tbl0\"" - "Tbl0", etc.
      * @return Future representing pending completion of the operation.
      * @throws IgniteException If an unspecified platform exception has happened internally. Is thrown when:
      *                         <ul>