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

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


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

commit 108523f9d700a06078d6ca93a7d2012aadfc8d6d
Author: ygerzhedovich <[email protected]>
AuthorDate: Mon Oct 31 15:30:37 2022 +0300

    IGNITE-18016: Get rid of schema mention in javadoc in IgniteTables (#1279)
---
 .../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>

Reply via email to