You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Nihal Jain (JIRA)" <ji...@apache.org> on 2018/08/09 08:55:00 UTC

[jira] [Created] (HBASE-21030) Correct javadoc for append operation

Nihal Jain created HBASE-21030:
----------------------------------

             Summary: Correct javadoc for append operation
                 Key: HBASE-21030
                 URL: https://issues.apache.org/jira/browse/HBASE-21030
             Project: HBase
          Issue Type: Bug
          Components: documentation
    Affects Versions: 3.0.0, 1.5.0
            Reporter: Nihal Jain


The doc for {{append}} operation is incorrect. (see {{@param append}} in the code snippet below or [Table.java#L566|https://github.com/apache/hbase/blob/3f5033f88ee9da2a5a42d058b9aefe57b089b3e1/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java#L566])
{code:java}
  /**
   * Appends values to one or more columns within a single row.
   * <p>
   * This operation guaranteed atomicity to readers. Appends are done
   * under a single row lock, so write operations to a row are synchronized, and
   * readers are guaranteed to see this operation fully completed.
   *
   * @param append object that specifies the columns and amounts to be used
   *                  for the increment operations
   * @throws IOException e
   * @return values of columns after the append operation (maybe null)
   */
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)