Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1704#discussion_r213058185
--- Diff: core/sql/sqlcomp/DefaultConstants.h ---
@@ -2946,6 +2946,12 @@ enum DefaultConstants
// this is used to change cache size of sequence numbers for a session.
// It overwrites the cache size that was specified during sequence
creation.
TRAF_SEQUENCE_CACHE_SIZE,
+
+ // this is used to set the retry time if two concurrent update of
sequence
+ // conflict, and how many times will retry
+ // by default it is 250, when you saw error 1583, you can try to increase
--- End diff --
In nadefaults.cpp, it looks like the default is 100, not 250, so the
comment is wrong.
---