You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by hz...@apache.org on 2018/01/30 16:00:39 UTC

[2/3] trafodion git commit: Fix typo.

Fix typo.


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

Branch: refs/heads/master
Commit: 81db5c01c3dbec0b5a501909b6cc9e2d8b037964
Parents: a725654
Author: Hans Zeller <hz...@apache.org>
Authored: Tue Jan 30 00:48:22 2018 +0000
Committer: Hans Zeller <hz...@apache.org>
Committed: Tue Jan 30 00:48:22 2018 +0000

----------------------------------------------------------------------
 core/sql/regress/udr/TEST103_functions.cpp | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafodion/blob/81db5c01/core/sql/regress/udr/TEST103_functions.cpp
----------------------------------------------------------------------
diff --git a/core/sql/regress/udr/TEST103_functions.cpp b/core/sql/regress/udr/TEST103_functions.cpp
index b997935..0da151c 100644
--- a/core/sql/regress/udr/TEST103_functions.cpp
+++ b/core/sql/regress/udr/TEST103_functions.cpp
@@ -139,12 +139,11 @@ SQLUDR_LIBFUNC SQLUDR_INT32 nonDeterministicRandom(SQLUDR_INT32 *out1,
       *my_state = 555;
     }
   else
-    // Use a simple linear congruential generator, we
-    // want deterministic regression results, despite
-    // the name of this function. Note that a
-    // this UDF is still "not deterministic", since it
-    // returns different results when called with the
-    // same (empty) inputs.
+    // Use a simple linear congruential generator, we want
+    // deterministic regression results, despite the name of this
+    // function. Note that this UDF is still "not deterministic",
+    // since it returns different results when called with the same
+    // (empty) inputs.
     *my_state = (13 * (*my_state) + 101) % 1000;
 
   (*out1) = *my_state;