-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: linkmyth <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule client-c
updated
26 files
+2 −2 | ci/Dockerfile | |
+4 −2 | ci/build-test.sh | |
+6 −6 | cmake/find_poco.cmake | |
+2 −1 | include/pingcap/Exception.h | |
+4 −0 | include/pingcap/coprocessor/Client.h | |
+94 −7 | include/pingcap/kv/2pc.h | |
+3 −1 | include/pingcap/kv/Backoff.h | |
+27 −0 | include/pingcap/kv/Cluster.h | |
+24 −3 | include/pingcap/kv/LockResolver.h | |
+1 −2 | include/pingcap/kv/RegionCache.h | |
+4 −5 | include/pingcap/kv/Rpc.h | |
+3 −2 | include/pingcap/kv/Snapshot.h | |
+7 −2 | include/pingcap/kv/Txn.h | |
+3 −0 | include/pingcap/kv/internal/type_traits.h | |
+11 −1 | src/coprocessor/Client.cc | |
+122 −8 | src/kv/2pc.cc | |
+4 −0 | src/kv/Backoff.cc | |
+1 −1 | src/kv/Cluster.cc | |
+160 −33 | src/kv/LockResolver.cc | |
+7 −4 | src/kv/RegionCache.cc | |
+20 −10 | src/kv/Snapshot.cc | |
+3 −2 | src/test/CMakeLists.txt | |
+2 −1 | src/test/bank_test/CMakeLists.txt | |
+233 −0 | src/test/real_tikv_test/2pc_test.cc | |
+3 −0 | src/test/real_tikv_test/CMakeLists.txt | |
+1 −1 | third_party/kvproto |