You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by li...@apache.org on 2016/12/23 12:51:16 UTC

[2/4] incubator-trafodion git commit: [TRAFODION-2403] update according review comments

[TRAFODION-2403] update according review comments


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

Branch: refs/heads/master
Commit: 0273bbbceb7e750861fb735916500c10af31758f
Parents: 49945da
Author: Liu Ming <ov...@sina.com>
Authored: Thu Dec 22 12:09:31 2016 +0000
Committer: Liu Ming <ov...@sina.com>
Committed: Thu Dec 22 12:09:31 2016 +0000

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


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0273bbbc/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 2ce2a2a..b6dc10c 100644
--- a/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
+++ b/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
@@ -2511,8 +2511,7 @@ subquery is empty, the predicate is false.
 | <<in_predicate,IN Predicate>> | Determines if a sequence of values is equal to any of the sequences of
 values in a list of sequences.
 | <<like_predicate,LIKE Predicate>> | Searches for character strings that match a pattern.
-| <<regexp_predicate,REGEXP Predicate>> | Searches for character strings that match a pattern, The pattern 
-can be an extended regular expression.
+| <<regexp_predicate,REGEXP Predicate>> | Searches for character strings that match an extended regular expression.
 | <<null_predicate,NULL Predicate>> | Determines whether all the values in a sequence of values are null.
 | <<quantified_comparison_predicates,Quantified Comparison Predicates>> +  
 (ALL, ANY, SOME ) | Compares the values of sequences of expressions to the values in each
@@ -3365,7 +3364,7 @@ If either expression or pattern is NULL, the result is NULL.
 [[regexp_syntax]]
 ==== Syntax
 ```
-match-value [NOT] REGEXP pattern
+match-value [NOT] REGEXP regular-expression
 ```
 
 * `_match-value_`
@@ -3375,9 +3374,8 @@ search for that match the _pattern_.
 
 * `_pattern_`
 +
-is a character value expression that specifies the pattern string for
-the search in form of Regular Expression.
-The Trafodion Regular Expression is following the POSIX regular expression rules.
+is a character value expression that specifies a regular expression. 
+Trafodion regular expressions follow POSIX regular expression rules.
 
 
 [[using_not]]