diff options
Diffstat (limited to 'ext/librethinkdbxx/test/upstream/regression/4146.yaml')
-rw-r--r-- | ext/librethinkdbxx/test/upstream/regression/4146.yaml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/librethinkdbxx/test/upstream/regression/4146.yaml b/ext/librethinkdbxx/test/upstream/regression/4146.yaml deleted file mode 100644 index 805dee24..00000000 --- a/ext/librethinkdbxx/test/upstream/regression/4146.yaml +++ /dev/null @@ -1,14 +0,0 @@ -desc: Test that multi indexes ignore values that cannot be indexed, still indexing the remaining values -table_variable_name: tbl -tests: - # This is testing a property of the server, so a single language (in this case JS) - # is enough. - - js: tbl.indexCreate("multi_idx", function(x) { return [x("a"), x("b")] }, {multi:true}) - ot: {created: 1} - - js: tbl.indexWait("multi_idx") - - - js: tbl.insert([{a:"a", b:null}, {a:"a", b:r.point(0,0)}])("inserted") - ot: 2 - - - js: tbl.getAll("a", {index:"multi_idx"}).count() - ot: 2 |