This is an automated email from the ASF dual-hosted git repository.

zhouxj pushed a change to branch feature/GEODE-6143-5
in repository https://gitbox.apache.org/repos/asf/geode.git.


    omit d7c262b  GEODE-6143: remove PowerMock from DataTypeJUnitTest
     add e8720ca  GEODE-5786: Create txEntryState based on createIfAbsent 
condition. (#3008)
     add 66dd66d  GEODE-6122: Use LogWriterLevel instead of InternalLogWriter
     add 334db40  GEODE-6195: Check if returned value is caused by a retried 
putIfAbsent operation (#2993)
     add 59d7baa  GEODE-6143: remove PowerMock from DataTypeJUnitTest

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d7c262b)
            \
             N -- N -- N   refs/heads/feature/GEODE-6143-5 (59d7baa)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../geode/cache/ConnectionPoolDUnitTest.java       |   6 +-
 .../internal/LocatorLoadBalancingDUnitTest.java    |   3 -
 .../geode/cache30/PartitionedRegionDUnitTest.java  |   5 +-
 .../apache/geode/distributed/LocatorDUnitTest.java |  11 +-
 ...erRepeatableReadTransactionDistributedTest.java | 220 +++++++++++++++++
 .../cache/execute/ColocationFailoverDUnitTest.java |   3 -
 .../RepeatableReadTransactionDistributedTest.java  | 208 ++++++++++++++++
 .../java/org/apache/geode/TXJUnitTest.java         |  97 +++++++-
 .../client/internal/QueueManagerJUnitTest.java     |   4 +-
 .../pooling/ConnectionManagerJUnitTest.java        |   3 +-
 .../logging/MergeLogFilesIntegrationTest.java      |   3 +-
 ...LogWriterAppenderWithLimitsIntegrationTest.java |   4 +-
 .../distributed/internal/DistributionConfig.java   |  14 +-
 .../geode/distributed/internal/ProductUseLog.java  |   4 +-
 .../apache/geode/internal/cache/EntriesSet.java    |   6 +-
 .../geode/internal/cache/InternalDataView.java     |   2 +-
 .../apache/geode/internal/cache/LocalRegion.java   |  70 ++++--
 .../geode/internal/cache/LocalRegionDataView.java  |   2 +-
 .../internal/cache/PausedTXStateProxyImpl.java     |   2 +-
 .../org/apache/geode/internal/cache/TXEntry.java   |   7 +-
 .../org/apache/geode/internal/cache/TXState.java   |  35 +--
 .../geode/internal/cache/TXStateInterface.java     |   7 -
 .../geode/internal/cache/TXStateProxyImpl.java     |   4 +-
 .../apache/geode/internal/cache/TXStateStub.java   |   2 +-
 .../internal/cache/ValueComparisonHelper.java      | 272 +++++++++++++++++++++
 .../cache/entries/AbstractRegionEntry.java         | 250 +------------------
 .../internal/cache/xmlcache/CacheCreation.java     |   4 +-
 .../geode/internal/jta/TransactionUtils.java       |   5 +-
 .../geode/internal/logging/LogFileParser.java      |   3 +-
 .../geode/internal/logging/LoggingThreadGroup.java |   4 +-
 .../internal/logging/log4j/LogWriterLogger.java    |  25 +-
 .../client/internal/OpExecutorImplJUnitTest.java   |   3 +-
 .../internal/ServerLocatorJUnitTest.java           |   4 +-
 .../geode/internal/cache/LocalRegionTest.java      | 122 ++++++++-
 .../internal/logging/ManagerLogWriterTest.java     |   8 +-
 .../geode/internal/offheap/DataTypeJUnitTest.java  |  18 +-
 36 files changed, 1073 insertions(+), 367 deletions(-)
 create mode 100644 
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/ClientServerRepeatableReadTransactionDistributedTest.java
 create mode 100644 
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/execute/RepeatableReadTransactionDistributedTest.java
 create mode 100644 
geode-core/src/main/java/org/apache/geode/internal/cache/ValueComparisonHelper.java

Reply via email to