fdb 6.3.13 → 6.3.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66c6adefdec5b206ab1b9ec26dacf019058cd963da763762735c81a2b46ea0eb
4
- data.tar.gz: a267226ead13c8217dd1f61343dfe627c9ee8e15360d2d5515e23c498335d8a4
3
+ metadata.gz: e00c6fbd314bb380c73cd3d8cb051147207979ab84010588f0cddb4c24984ab7
4
+ data.tar.gz: 36fe395daac0adce494dfe96e60d05b7760db7487fe2ec06668462d84d8484d4
5
5
  SHA512:
6
- metadata.gz: a794f1b40af8af90fd4bd8cbe82e954ac9241398f7867660829ce0983c6dbf983c7614d0de42c8e29a26726ea74f4f938963c000dbaf5fed2e7a4411028dcea5
7
- data.tar.gz: '0803ccb6016e563dbdb743c10fe0cf28cd752946eeba8e447302e1b4746486d1a30646d33e1b57eee52c61e545a6ba3f0722ac7458b64a410dd0a4b4a4936b25'
6
+ metadata.gz: 78618747dbbb920a8c8f46655740c086375033f955f7b78a57c4156f16c1b6ad2061ccc70fbe672a1f935315dd058ed58121e84267341d656bcafca75faed769
7
+ data.tar.gz: 3b613a0d2a63bb88af685461046922fb243f9660486edca59fd26544596f2420e0b0030c6622f1887713b97e16dbb532396e49ddccf88ceb6c649e3472e17b82
@@ -76,6 +76,7 @@ module FDB
76
76
  "TRANSACTION_SIZE_LIMIT" => [503, "Set the maximum transaction size in bytes. This sets the ``size_limit`` option on each transaction created by this database. See the transaction option description for more information.", 0, "value in bytes"],
77
77
  "TRANSACTION_CAUSAL_READ_RISKY" => [504, "The read version will be committed, and usually will be the latest committed, but might not be the latest committed in the event of a simultaneous fault and misbehaving clock.", nil, nil],
78
78
  "TRANSACTION_INCLUDE_PORT_IN_ADDRESS" => [505, "Addresses returned by get_addresses_for_key include the port when enabled. As of api version 630, this option is enabled by default and setting this has no effect.", nil, nil],
79
+ "TRANSACTION_BYPASS_UNREADABLE" => [700, "Allows ``get`` operations to read from sections of keyspace that have become unreadable because of versionstamp operations. This sets the ``bypass_unreadable`` option of each transaction created by this database. See the transaction option description for more information.", nil, nil],
79
80
  }
80
81
 
81
82
  @@TransactionOption = {
@@ -114,6 +115,7 @@ module FDB
114
115
  "SPECIAL_KEY_SPACE_RELAXED" => [713, "By default, the special key space will only allow users to read from exactly one module (a subspace in the special key space). Use this option to allow reading from zero or more modules. Users who set this option should be prepared for new modules, which may have different behaviors than the modules they're currently reading. For example, a new module might block or return an error.", nil, nil],
115
116
  "TAG" => [800, "Adds a tag to the transaction that can be used to apply manual targeted throttling. At most 5 tags can be set on a transaction.", '', "String identifier used to associated this transaction with a throttling group. Must not exceed 16 characters."],
116
117
  "AUTO_THROTTLE_TAG" => [801, "Adds a tag to the transaction that can be used to apply manual or automatic targeted throttling. At most 5 tags can be set on a transaction.", '', "String identifier used to associated this transaction with a throttling group. Must not exceed 16 characters."],
118
+ "BYPASS_UNREADABLE" => [1100, "Allows ``get`` operations to read from sections of keyspace that have become unreadable because of versionstamp operations. These reads will view versionstamp operations as if they were set operations that did not fill in the versionstamp.", nil, nil],
117
119
  }
118
120
 
119
121
  @@StreamingMode = {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.3.13
4
+ version: 6.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - FoundationDB
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-04 00:00:00.000000000 Z
11
+ date: 2021-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi