You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2017/03/20 20:39:33 UTC

[2/6] incubator-trafodion git commit: fix identity

fix identity


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/ed3db26d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/ed3db26d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/ed3db26d

Branch: refs/heads/master
Commit: ed3db26ddcf89e908dfc9f38ea5f753069294967
Parents: f8f48cf
Author: liu.yu <yu...@esgyn.cn>
Authored: Tue Mar 14 17:13:34 2017 +0800
Committer: liu.yu <yu...@esgyn.cn>
Committed: Tue Mar 14 17:13:34 2017 +0800

----------------------------------------------------------------------
 .../src/asciidoc/_chapters/sql_language_elements.adoc          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/ed3db26d/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
----------------------------------------------------------------------
diff --git a/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc b/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
index b7fe71e..f260e3d 100644
--- a/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
+++ b/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
@@ -1874,7 +1874,7 @@ delimited identifier.
 
 <<<
 [[identity_column]]
-== Indentity Column
+== Identity Column
 
 A identity column is an auto-increment column, which is defined to a column of a table with identity attribute and used to automatically generate increasing or decreasing sequential numeric value for a column with each row insertion into the table.
 
@@ -1892,7 +1892,7 @@ GENERATED [ALWAYS | BY DEFAULT] AS IDENTITY
 ```
 
 [[syntax_description_of_identity_column]]
-=== Syntax Description of Indentity Column
+=== Syntax Description of Identity Column
 
 * `ALWAYS`
 +
@@ -1905,7 +1905,7 @@ Indicates that when a row is inserted to a table, if the value of the column is
 The options above serve the same purposes as they serve when you create a sequence. For more information, see <<create_sequence_statement,CREATE SEQUENCE Statement>>.
 
 [[examples_of_identity_column]]
-=== Examples of Indentity Column
+=== Examples of Identity Column
 
 * Example of `ALWAYS`
 +