diff options
Diffstat (limited to 'ext/librethinkdbxx/test/upstream/regression/2930.yaml')
-rw-r--r-- | ext/librethinkdbxx/test/upstream/regression/2930.yaml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/librethinkdbxx/test/upstream/regression/2930.yaml b/ext/librethinkdbxx/test/upstream/regression/2930.yaml deleted file mode 100644 index 85bf1a92..00000000 --- a/ext/librethinkdbxx/test/upstream/regression/2930.yaml +++ /dev/null @@ -1,17 +0,0 @@ -desc: Avoid misleading array limit error message -table_variable_name: tbl -tests: - - py: tbl.insert([{'id':i,'mod':i%5,'foo':5} for i in range(1,1000)]).pluck('first_error', 'inserted') - ot: ({'inserted':999}) - - py: tbl.coerce_to('array') - runopts: - array_limit: 500 - ot: err("ReqlResourceLimitError", "Array over size limit `500`.", [0]) - - py: tbl.group('mod').coerce_to('array') - runopts: - array_limit: 500 - ot: err("ReqlResourceLimitError", "Grouped data over size limit `500`. Try putting a reduction (like `.reduce` or `.count`) on the end.", [0]) - - py: tbl.group('foo').coerce_to('array') - runopts: - array_limit: 500 - ot: err("ReqlResourceLimitError", "Grouped data over size limit `500`. Try putting a reduction (like `.reduce` or `.count`) on the end.", [0]) |