libcouchbase 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +2 -2
  3. data/ext/libcouchbase/CMakeLists.txt +51 -25
  4. data/ext/libcouchbase/CONTRIBUTING.md +46 -65
  5. data/ext/libcouchbase/RELEASE_NOTES.markdown +163 -0
  6. data/ext/libcouchbase/cmake/Modules/DownloadLcbDep.cmake +9 -11
  7. data/ext/libcouchbase/cmake/Modules/FindProfiler.cmake +16 -0
  8. data/ext/libcouchbase/cmake/Modules/GetVersionInfo.cmake +6 -6
  9. data/ext/libcouchbase/cmake/config-cmake.h.in +2 -0
  10. data/ext/libcouchbase/cmake/configure +16 -0
  11. data/ext/libcouchbase/example/CMakeLists.txt +17 -2
  12. data/ext/libcouchbase/example/analytics/.gitignore +1 -0
  13. data/ext/libcouchbase/example/analytics/analytics.c +158 -0
  14. data/ext/libcouchbase/example/analytics/build-queries.rb +34 -0
  15. data/ext/libcouchbase/example/analytics/cJSON.c +1 -0
  16. data/ext/libcouchbase/example/analytics/cJSON.h +1 -0
  17. data/ext/libcouchbase/example/analytics/queries.h +113 -0
  18. data/ext/libcouchbase/example/analytics/queries/00-show-dataverse.json +5 -0
  19. data/ext/libcouchbase/example/analytics/queries/01-setup-dataset-breweries.json +6 -0
  20. data/ext/libcouchbase/example/analytics/queries/02-setup-dataset-beers.json +6 -0
  21. data/ext/libcouchbase/example/analytics/queries/03-initiate-shadow.json +6 -0
  22. data/ext/libcouchbase/example/analytics/queries/04-list-datasets.json +7 -0
  23. data/ext/libcouchbase/example/analytics/queries/05-count-breweries.json +5 -0
  24. data/ext/libcouchbase/example/analytics/queries/06-first-brewery.json +6 -0
  25. data/ext/libcouchbase/example/analytics/queries/07-key-based-lookup.json +6 -0
  26. data/ext/libcouchbase/example/analytics/queries/08-exact-match-lookup.json +7 -0
  27. data/ext/libcouchbase/example/analytics/queries/09-exact-match-lookup-different-shape.json +6 -0
  28. data/ext/libcouchbase/example/analytics/queries/10-other-query-filters.json +6 -0
  29. data/ext/libcouchbase/example/analytics/queries/11-equijoin.json +9 -0
  30. data/ext/libcouchbase/example/analytics/queries/12-equijoin-select-star.json +10 -0
  31. data/ext/libcouchbase/example/analytics/queries/13-ansi-join.json +8 -0
  32. data/ext/libcouchbase/example/analytics/queries/14-join-select-values.json +8 -0
  33. data/ext/libcouchbase/example/analytics/queries/15-nested-outer-join.json +7 -0
  34. data/ext/libcouchbase/example/analytics/queries/16-theta-join.json +8 -0
  35. data/ext/libcouchbase/example/analytics/queries/17-existential-quantification.json +9 -0
  36. data/ext/libcouchbase/example/analytics/queries/18-universal-quantification.json +7 -0
  37. data/ext/libcouchbase/example/analytics/queries/19-simple-aggregation.json +6 -0
  38. data/ext/libcouchbase/example/analytics/queries/20-simple-aggregation-unwrapped-value.json +6 -0
  39. data/ext/libcouchbase/example/analytics/queries/21-simple-aggregation-explicit.json +6 -0
  40. data/ext/libcouchbase/example/analytics/queries/22-grouping-and-aggregation.json +6 -0
  41. data/ext/libcouchbase/example/analytics/queries/23-grouping-and-aggregation-with-hint.json +7 -0
  42. data/ext/libcouchbase/example/analytics/queries/24-grouping-and-limits.json +7 -0
  43. data/ext/libcouchbase/example/analytics/queries/25-named-parameters.json +7 -0
  44. data/ext/libcouchbase/example/analytics/queries/26-positional-parameters.json +7 -0
  45. data/ext/libcouchbase/example/crypto/common_provider.c +2 -0
  46. data/ext/libcouchbase/example/crypto/common_provider.h +2 -0
  47. data/ext/libcouchbase/example/crypto/openssl_symmetric_decrypt.c +5 -0
  48. data/ext/libcouchbase/example/crypto/openssl_symmetric_encrypt.c +0 -1
  49. data/ext/libcouchbase/example/crypto/openssl_symmetric_provider.c +16 -26
  50. data/ext/libcouchbase/example/db/db.c +10 -6
  51. data/ext/libcouchbase/example/fts/.gitignore +1 -0
  52. data/ext/libcouchbase/example/fts/build-queries.rb +33 -0
  53. data/ext/libcouchbase/example/fts/fts.c +142 -0
  54. data/ext/libcouchbase/example/fts/queries.h +61 -0
  55. data/ext/libcouchbase/example/fts/queries/00-simple-text-query.json +12 -0
  56. data/ext/libcouchbase/example/fts/queries/01-simple-text-query-on-non-default-index.json +9 -0
  57. data/ext/libcouchbase/example/fts/queries/02-simple-text-query-on-stored-field.json +13 -0
  58. data/ext/libcouchbase/example/fts/queries/03-match-query-with-facet.json +19 -0
  59. data/ext/libcouchbase/example/fts/queries/04-docid-query.json +11 -0
  60. data/ext/libcouchbase/example/fts/queries/05-unanalyzed-term-query-with-fuzziness-level-of-0.json +13 -0
  61. data/ext/libcouchbase/example/fts/queries/06-unanalyzed-term-query-with-fuzziness-level-of-2.json +14 -0
  62. data/ext/libcouchbase/example/fts/queries/07-match-phrase-query.json +13 -0
  63. data/ext/libcouchbase/example/fts/queries/08-phrase-query.json +16 -0
  64. data/ext/libcouchbase/example/fts/queries/09-query-string-query.json +9 -0
  65. data/ext/libcouchbase/example/fts/queries/10-conjunction-query.json +21 -0
  66. data/ext/libcouchbase/example/fts/queries/11-wild-card-query.json +13 -0
  67. data/ext/libcouchbase/example/fts/queries/12-numeric-range-query.json +11 -0
  68. data/ext/libcouchbase/example/fts/queries/13-regexp-query.json +13 -0
  69. data/ext/libcouchbase/example/minimal/.gitignore +1 -0
  70. data/ext/libcouchbase/example/minimal/query.c +185 -0
  71. data/ext/libcouchbase/example/subdoc/subdoc-xattrs.c +2 -2
  72. data/ext/libcouchbase/example/tracing/cJSON.c +1 -1
  73. data/ext/libcouchbase/example/tracing/cJSON.h +1 -1
  74. data/ext/libcouchbase/include/libcouchbase/cbft.h +38 -4
  75. data/ext/libcouchbase/include/libcouchbase/cntl-private.h +8 -97
  76. data/ext/libcouchbase/include/libcouchbase/cntl.h +288 -8
  77. data/ext/libcouchbase/include/libcouchbase/couchbase.h +47 -10
  78. data/ext/libcouchbase/include/libcouchbase/crypto.h +214 -48
  79. data/ext/libcouchbase/include/libcouchbase/deprecated.h +12 -0
  80. data/ext/libcouchbase/include/libcouchbase/error.h +33 -2
  81. data/ext/libcouchbase/include/libcouchbase/ixmgmt.h +1 -1
  82. data/ext/libcouchbase/include/libcouchbase/n1ql.h +87 -13
  83. data/ext/libcouchbase/include/libcouchbase/subdoc.h +3 -7
  84. data/ext/libcouchbase/include/libcouchbase/tracing.h +174 -56
  85. data/ext/libcouchbase/include/libcouchbase/vbucket.h +21 -1
  86. data/ext/libcouchbase/include/libcouchbase/views.h +49 -4
  87. data/ext/libcouchbase/packaging/deb/control +2 -3
  88. data/ext/libcouchbase/packaging/parse-git-describe.pl +1 -1
  89. data/ext/libcouchbase/plugins/io/libev/CMakeLists.txt +7 -5
  90. data/ext/libcouchbase/plugins/io/libevent/CMakeLists.txt +7 -5
  91. data/ext/libcouchbase/plugins/io/libuv/CMakeLists.txt +14 -12
  92. data/ext/libcouchbase/plugins/io/libuv/libuv_compat.h +3 -0
  93. data/ext/libcouchbase/plugins/io/libuv/plugin-libuv.c +14 -6
  94. data/ext/libcouchbase/plugins/io/select/CMakeLists.txt +7 -5
  95. data/ext/libcouchbase/src/bootstrap.cc +6 -1
  96. data/ext/libcouchbase/src/bucketconfig/bc_cccp.cc +2 -7
  97. data/ext/libcouchbase/src/bucketconfig/bc_file.cc +1 -1
  98. data/ext/libcouchbase/src/bucketconfig/bc_http.cc +4 -11
  99. data/ext/libcouchbase/src/bucketconfig/clconfig.h +29 -36
  100. data/ext/libcouchbase/src/bucketconfig/confmon.cc +4 -2
  101. data/ext/libcouchbase/src/cntl.cc +181 -151
  102. data/ext/libcouchbase/src/config_static.h +1 -1
  103. data/ext/libcouchbase/src/connspec.cc +5 -1
  104. data/ext/libcouchbase/src/connspec.h +3 -1
  105. data/ext/libcouchbase/src/crypto.cc +93 -80
  106. data/ext/libcouchbase/src/dns-srv.cc +1 -1
  107. data/ext/libcouchbase/src/handler.cc +0 -1
  108. data/ext/libcouchbase/src/http/http-priv.h +1 -0
  109. data/ext/libcouchbase/src/http/http.cc +1 -2
  110. data/ext/libcouchbase/src/instance.cc +21 -2
  111. data/ext/libcouchbase/src/internal.h +1 -0
  112. data/ext/libcouchbase/src/lcbio/ctx.c +24 -3
  113. data/ext/libcouchbase/src/lcbio/ioutils.cc +1 -1
  114. data/ext/libcouchbase/src/lcbio/rw-inl.h +22 -1
  115. data/ext/libcouchbase/src/lcbio/ssl.h +2 -0
  116. data/ext/libcouchbase/src/mc/compress.cc +18 -11
  117. data/ext/libcouchbase/src/mc/mcreq.c +2 -0
  118. data/ext/libcouchbase/src/mc/mcreq.h +1 -1
  119. data/ext/libcouchbase/src/mcserver/mcserver.cc +163 -6
  120. data/ext/libcouchbase/src/mcserver/negotiate.cc +17 -7
  121. data/ext/libcouchbase/src/n1ql/n1ql.cc +12 -3
  122. data/ext/libcouchbase/src/newconfig.cc +4 -3
  123. data/ext/libcouchbase/src/nodeinfo.cc +1 -7
  124. data/ext/libcouchbase/src/operations/observe.cc +1 -0
  125. data/ext/libcouchbase/src/operations/ping.cc +5 -3
  126. data/ext/libcouchbase/src/retryq.cc +22 -0
  127. data/ext/libcouchbase/src/retryq.h +2 -1
  128. data/ext/libcouchbase/src/rnd.cc +5 -12
  129. data/ext/libcouchbase/src/settings.c +4 -7
  130. data/ext/libcouchbase/src/settings.h +6 -2
  131. data/ext/libcouchbase/src/strcodecs/base64.c +59 -0
  132. data/ext/libcouchbase/src/strcodecs/strcodecs.h +2 -0
  133. data/ext/libcouchbase/src/trace.h +2 -2
  134. data/ext/libcouchbase/src/tracing/span.cc +177 -45
  135. data/ext/libcouchbase/src/tracing/threshold_logging_tracer.cc +70 -28
  136. data/ext/libcouchbase/src/tracing/tracing-internal.h +33 -48
  137. data/ext/libcouchbase/src/vbucket/vbucket.c +146 -30
  138. data/ext/libcouchbase/src/wait.cc +1 -1
  139. data/ext/libcouchbase/tests/CMakeLists.txt +13 -4
  140. data/ext/libcouchbase/tests/iotests/mock-environment.cc +1 -1
  141. data/ext/libcouchbase/tests/iotests/t_misc.cc +2 -2
  142. data/ext/libcouchbase/tests/iotests/t_views.cc +1 -1
  143. data/ext/libcouchbase/tests/iotests/testutil.cc +3 -2
  144. data/ext/libcouchbase/tests/vbucket/confdata/map_node_present_nodesext_missing_nodes.json +94 -0
  145. data/ext/libcouchbase/tests/vbucket/t_config.cc +15 -0
  146. data/ext/libcouchbase/tools/CMakeLists.txt +11 -6
  147. data/ext/libcouchbase/tools/cbc-handlers.h +9 -0
  148. data/ext/libcouchbase/tools/cbc-proxy.cc +1 -1
  149. data/ext/libcouchbase/tools/cbc.cc +33 -5
  150. data/ext/libcouchbase/tools/common/options.cc +1 -1
  151. data/ext/libcouchbase/tools/extract-packets.rb +110 -0
  152. data/lib/libcouchbase/connection.rb +13 -5
  153. data/lib/libcouchbase/ext/tasks.rb +1 -1
  154. data/lib/libcouchbase/version.rb +1 -1
  155. metadata +62 -7
@@ -140,6 +140,13 @@ module Libcouchbase
140
140
  Ext.install_callback3(@handle, Ext::CALLBACKTYPE[:callback_sdmutate], callback(:callback_sdmutate))
141
141
  Ext.install_callback3(@handle, Ext::CALLBACKTYPE[:callback_cbflush], callback(:callback_cbflush)) if @flush_enabled
142
142
 
143
+ # Configure safe retries
144
+ # LCB_RETRYOPT_CREATE = Proc.new { |mode, policy| ((mode << 16) | policy) }
145
+ # val = LCB_RETRYOPT_CREATE(LCB_RETRY_ON_SOCKERR, LCB_RETRY_CMDS_SAFE);
146
+ # ::Libcouchbase::Ext.cntl_setu32(handle, LCB_CNTL_RETRYMODE, val)
147
+ retry_config = (1 << 16) | 3
148
+ ::Libcouchbase::Ext.cntl_setu32(@handle, 0x24, (1 << 16) | 3)
149
+
143
150
  # Connect to the database
144
151
  err = Ext.connect(@handle)
145
152
  if err != :success
@@ -204,7 +211,7 @@ module Libcouchbase
204
211
  nodes = Ext.get_num_nodes(@handle)
205
212
  list = []
206
213
  count = 0
207
-
214
+
208
215
  while count <= nodes
209
216
  list << Ext.get_node(@handle, :node_data, count)
210
217
  count += 1
@@ -251,7 +258,7 @@ module Libcouchbase
251
258
 
252
259
  # http://docs.couchbase.com/sdk-api/couchbase-c-client-2.6.2/group__lcb-store.html
253
260
  # http://docs.couchbase.com/sdk-api/couchbase-c-client-2.6.2/group__lcb-durability.html
254
- def store(key, value,
261
+ def store(key, value,
255
262
  defer: nil,
256
263
  operation: :set,
257
264
  expire_in: nil,
@@ -297,7 +304,7 @@ module Libcouchbase
297
304
  @requests[pointer.address] = req
298
305
  check_error(key, defer, durable ? Ext.storedur3(@handle, pointer, cmd) : Ext.store3(@handle, pointer, cmd))
299
306
  }
300
-
307
+
301
308
  defer.promise
302
309
  end
303
310
 
@@ -624,7 +631,7 @@ module Libcouchbase
624
631
  @bootstrap_defer.resolve(self)
625
632
  @bootstrap_defer = nil
626
633
  else
627
- @bootstrap_defer.reject(Error.lookup(error_code).new("bootstrap failed"))
634
+ @bootstrap_defer.reject(Error.lookup(error_code).new("bootstrap failed #{error_code}: #{error_name}"))
628
635
  handle_destroyed
629
636
  end
630
637
  end
@@ -794,7 +801,8 @@ module Libcouchbase
794
801
  if resp[:rc] == :success || resp[:rc] == :subdoc_multi_failure
795
802
  req.defer.resolve(yield(req, callback))
796
803
  else
797
- req.defer.reject(Error.lookup(resp[:rc]).new("#{callback} failed for #{req.key}"))
804
+ lookup = resp[:rc]
805
+ req.defer.reject(Error.lookup(lookup).new("#{callback} failed for #{req.key} with #{lookup}"))
798
806
  end
799
807
  rescue => e
800
808
  req.defer.reject(e)
@@ -25,7 +25,7 @@ end
25
25
  file 'ext/libcouchbase/build/makefile' => 'ext/libcouchbase/build' do
26
26
  result = nil
27
27
  Dir.chdir("ext/libcouchbase") do |path|
28
- result = system './cmake/configure', '-with-libuv', ::File.expand_path('../../', ::Libuv::Ext.path_to_internal_libuv)
28
+ result = system './cmake/configure', '-disable-couchbasemock', '-with-libuv', ::File.expand_path('../../', ::Libuv::Ext.path_to_internal_libuv)
29
29
  end
30
30
  raise 'could not find cmake on path' unless result
31
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true, encoding: ASCII-8BIT
2
2
 
3
3
  module Libcouchbase
4
- VERSION = '1.3.0'
4
+ VERSION = '1.3.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libcouchbase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen von Takach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-17 00:00:00.000000000 Z
11
+ date: 2020-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -146,7 +146,6 @@ files:
146
146
  - Rakefile
147
147
  - ext/README.md
148
148
  - ext/Rakefile
149
- - ext/libcouchbase.dll
150
149
  - ext/libcouchbase/.gitignore
151
150
  - ext/libcouchbase/CMakeLists.txt
152
151
  - ext/libcouchbase/CONTRIBUTING.md
@@ -161,6 +160,7 @@ files:
161
160
  - ext/libcouchbase/cmake/Modules/FindCouchbaseLibev.cmake
162
161
  - ext/libcouchbase/cmake/Modules/FindCouchbaseLibevent.cmake
163
162
  - ext/libcouchbase/cmake/Modules/FindCouchbaseLibuv.cmake
163
+ - ext/libcouchbase/cmake/Modules/FindProfiler.cmake
164
164
  - ext/libcouchbase/cmake/Modules/GenerateConfigDotH.cmake
165
165
  - ext/libcouchbase/cmake/Modules/GetLibcouchbaseFlags.cmake
166
166
  - ext/libcouchbase/cmake/Modules/GetPlatformCCInfo.cmake
@@ -270,6 +270,8 @@ files:
270
270
  - ext/libcouchbase/doc/cbc-subdoc.markdown
271
271
  - ext/libcouchbase/doc/cbc.markdown
272
272
  - ext/libcouchbase/doc/cbcrc.markdown
273
+ - ext/libcouchbase/doc/common-additional-options.markdown
274
+ - ext/libcouchbase/doc/common-options.markdown
273
275
  - ext/libcouchbase/doc/environment.h
274
276
  - ext/libcouchbase/doc/example/threads.c
275
277
  - ext/libcouchbase/doc/footer.html
@@ -285,12 +287,12 @@ files:
285
287
  - ext/libcouchbase/doc/man/cbc-cp.1
286
288
  - ext/libcouchbase/doc/man/cbc-create.1
287
289
  - ext/libcouchbase/doc/man/cbc-decr.1
288
- - ext/libcouchbase/doc/man/cbc-dsn.1
289
290
  - ext/libcouchbase/doc/man/cbc-flush.1
290
291
  - ext/libcouchbase/doc/man/cbc-hash.1
291
292
  - ext/libcouchbase/doc/man/cbc-incr.1
292
293
  - ext/libcouchbase/doc/man/cbc-lock.1
293
294
  - ext/libcouchbase/doc/man/cbc-mcflush.1
295
+ - ext/libcouchbase/doc/man/cbc-mcversion.1
294
296
  - ext/libcouchbase/doc/man/cbc-n1ql.1
295
297
  - ext/libcouchbase/doc/man/cbc-n1qlback.1
296
298
  - ext/libcouchbase/doc/man/cbc-observe.1
@@ -313,6 +315,39 @@ files:
313
315
  - ext/libcouchbase/doc/style.css
314
316
  - ext/libcouchbase/example/CMakeLists.txt
315
317
  - ext/libcouchbase/example/README.markdown
318
+ - ext/libcouchbase/example/analytics/.gitignore
319
+ - ext/libcouchbase/example/analytics/analytics.c
320
+ - ext/libcouchbase/example/analytics/build-queries.rb
321
+ - ext/libcouchbase/example/analytics/cJSON.c
322
+ - ext/libcouchbase/example/analytics/cJSON.h
323
+ - ext/libcouchbase/example/analytics/queries.h
324
+ - ext/libcouchbase/example/analytics/queries/00-show-dataverse.json
325
+ - ext/libcouchbase/example/analytics/queries/01-setup-dataset-breweries.json
326
+ - ext/libcouchbase/example/analytics/queries/02-setup-dataset-beers.json
327
+ - ext/libcouchbase/example/analytics/queries/03-initiate-shadow.json
328
+ - ext/libcouchbase/example/analytics/queries/04-list-datasets.json
329
+ - ext/libcouchbase/example/analytics/queries/05-count-breweries.json
330
+ - ext/libcouchbase/example/analytics/queries/06-first-brewery.json
331
+ - ext/libcouchbase/example/analytics/queries/07-key-based-lookup.json
332
+ - ext/libcouchbase/example/analytics/queries/08-exact-match-lookup.json
333
+ - ext/libcouchbase/example/analytics/queries/09-exact-match-lookup-different-shape.json
334
+ - ext/libcouchbase/example/analytics/queries/10-other-query-filters.json
335
+ - ext/libcouchbase/example/analytics/queries/11-equijoin.json
336
+ - ext/libcouchbase/example/analytics/queries/12-equijoin-select-star.json
337
+ - ext/libcouchbase/example/analytics/queries/13-ansi-join.json
338
+ - ext/libcouchbase/example/analytics/queries/14-join-select-values.json
339
+ - ext/libcouchbase/example/analytics/queries/15-nested-outer-join.json
340
+ - ext/libcouchbase/example/analytics/queries/16-theta-join.json
341
+ - ext/libcouchbase/example/analytics/queries/17-existential-quantification.json
342
+ - ext/libcouchbase/example/analytics/queries/18-universal-quantification.json
343
+ - ext/libcouchbase/example/analytics/queries/19-simple-aggregation.json
344
+ - ext/libcouchbase/example/analytics/queries/20-simple-aggregation-unwrapped-value.json
345
+ - ext/libcouchbase/example/analytics/queries/21-simple-aggregation-explicit.json
346
+ - ext/libcouchbase/example/analytics/queries/22-grouping-and-aggregation.json
347
+ - ext/libcouchbase/example/analytics/queries/23-grouping-and-aggregation-with-hint.json
348
+ - ext/libcouchbase/example/analytics/queries/24-grouping-and-limits.json
349
+ - ext/libcouchbase/example/analytics/queries/25-named-parameters.json
350
+ - ext/libcouchbase/example/analytics/queries/26-positional-parameters.json
316
351
  - ext/libcouchbase/example/crypto/.gitignore
317
352
  - ext/libcouchbase/example/crypto/Makefile
318
353
  - ext/libcouchbase/example/crypto/common_provider.c
@@ -323,12 +358,32 @@ files:
323
358
  - ext/libcouchbase/example/crypto/openssl_symmetric_provider.h
324
359
  - ext/libcouchbase/example/db/db.c
325
360
  - ext/libcouchbase/example/db/vb.c
361
+ - ext/libcouchbase/example/fts/.gitignore
362
+ - ext/libcouchbase/example/fts/build-queries.rb
363
+ - ext/libcouchbase/example/fts/fts.c
364
+ - ext/libcouchbase/example/fts/queries.h
365
+ - ext/libcouchbase/example/fts/queries/00-simple-text-query.json
366
+ - ext/libcouchbase/example/fts/queries/01-simple-text-query-on-non-default-index.json
367
+ - ext/libcouchbase/example/fts/queries/02-simple-text-query-on-stored-field.json
368
+ - ext/libcouchbase/example/fts/queries/03-match-query-with-facet.json
369
+ - ext/libcouchbase/example/fts/queries/04-docid-query.json
370
+ - ext/libcouchbase/example/fts/queries/05-unanalyzed-term-query-with-fuzziness-level-of-0.json
371
+ - ext/libcouchbase/example/fts/queries/06-unanalyzed-term-query-with-fuzziness-level-of-2.json
372
+ - ext/libcouchbase/example/fts/queries/07-match-phrase-query.json
373
+ - ext/libcouchbase/example/fts/queries/08-phrase-query.json
374
+ - ext/libcouchbase/example/fts/queries/09-query-string-query.json
375
+ - ext/libcouchbase/example/fts/queries/10-conjunction-query.json
376
+ - ext/libcouchbase/example/fts/queries/11-wild-card-query.json
377
+ - ext/libcouchbase/example/fts/queries/12-numeric-range-query.json
378
+ - ext/libcouchbase/example/fts/queries/13-regexp-query.json
326
379
  - ext/libcouchbase/example/instancepool/main.cc
327
380
  - ext/libcouchbase/example/instancepool/pool.cc
328
381
  - ext/libcouchbase/example/instancepool/pool.h
329
382
  - ext/libcouchbase/example/libeventdirect/main.c
330
383
  - ext/libcouchbase/example/mcc/mcc.cc
384
+ - ext/libcouchbase/example/minimal/.gitignore
331
385
  - ext/libcouchbase/example/minimal/minimal.c
386
+ - ext/libcouchbase/example/minimal/query.c
332
387
  - ext/libcouchbase/example/observe/durability.c
333
388
  - ext/libcouchbase/example/observe/observe.c
334
389
  - ext/libcouchbase/example/subdoc/subdoc-multi.cc
@@ -668,6 +723,7 @@ files:
668
723
  - ext/libcouchbase/tests/vbucket/confdata/bad.json
669
724
  - ext/libcouchbase/tests/vbucket/confdata/full_25.json
670
725
  - ext/libcouchbase/tests/vbucket/confdata/ketama_expected.json
726
+ - ext/libcouchbase/tests/vbucket/confdata/map_node_present_nodesext_missing_nodes.json
671
727
  - ext/libcouchbase/tests/vbucket/confdata/memd_25.json
672
728
  - ext/libcouchbase/tests/vbucket/confdata/memd_30.json
673
729
  - ext/libcouchbase/tests/vbucket/confdata/memd_45.json
@@ -690,9 +746,9 @@ files:
690
746
  - ext/libcouchbase/tools/docgen/loc.h
691
747
  - ext/libcouchbase/tools/docgen/placeholders.h
692
748
  - ext/libcouchbase/tools/docgen/seqgen.h
749
+ - ext/libcouchbase/tools/extract-packets.rb
693
750
  - ext/libcouchbase/tools/linenoise/linenoise.c
694
751
  - ext/libcouchbase/tools/linenoise/linenoise.h
695
- - ext/libcouchbase_libuv.dll
696
752
  - lib/libcouchbase.rb
697
753
  - lib/libcouchbase/bucket.rb
698
754
  - lib/libcouchbase/callbacks.rb
@@ -804,8 +860,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
804
860
  - !ruby/object:Gem::Version
805
861
  version: '0'
806
862
  requirements: []
807
- rubyforge_project:
808
- rubygems_version: 2.6.14
863
+ rubygems_version: 3.0.3
809
864
  signing_key:
810
865
  specification_version: 4
811
866
  summary: libcouchbase bindings for Ruby