fix review comments
Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/77000691 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/77000691 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/77000691 Branch: refs/heads/master Commit: 77000691ec8b6fdcbe5e704b6270e823cc3275ce Parents: 8740297 Author: Liu Ming <[email protected]> Authored: Wed Aug 29 13:38:55 2018 +0000 Committer: Liu Ming <[email protected]> Committed: Wed Aug 29 13:38:55 2018 +0000 ---------------------------------------------------------------------- core/sql/common/SequenceGeneratorAttributes.h | 6 +++--- core/sql/sqlcomp/DefaultConstants.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/77000691/core/sql/common/SequenceGeneratorAttributes.h ---------------------------------------------------------------------- diff --git a/core/sql/common/SequenceGeneratorAttributes.h b/core/sql/common/SequenceGeneratorAttributes.h index b93d6cf..714f38e 100644 --- a/core/sql/common/SequenceGeneratorAttributes.h +++ b/core/sql/common/SequenceGeneratorAttributes.h @@ -81,7 +81,7 @@ public: sgNextValue_(psgNextValue), sgEndValue_(psgEndValue), sgRedefTime_(psgRedefTime), - sgRetryNum_(250) + sgRetryNum_(100) {} @@ -100,7 +100,7 @@ public: sgNextValue_(0), sgEndValue_(0), sgRedefTime_(0), - sgRetryNum_(250) + sgRetryNum_(100) {} // copy ctor @@ -120,7 +120,7 @@ public: sgNextValue_(sga.sgNextValue_), sgEndValue_(sga.sgEndValue_), sgRedefTime_(sga.sgRedefTime_), - sgRetryNum_(250) + sgRetryNum_(100) {} // --------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/77000691/core/sql/sqlcomp/DefaultConstants.h ---------------------------------------------------------------------- diff --git a/core/sql/sqlcomp/DefaultConstants.h b/core/sql/sqlcomp/DefaultConstants.h index 422d11f..78c9336 100644 --- a/core/sql/sqlcomp/DefaultConstants.h +++ b/core/sql/sqlcomp/DefaultConstants.h @@ -2949,7 +2949,7 @@ enum DefaultConstants // 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 + // by default it is 100, when you saw error 1583, you can try to increase // this settings TRAF_SEQUENCE_RETRY_TIMES,
