lib/mongo/bulk_write/validatable.rb in mongo-2.12.4 vs lib/mongo/bulk_write/validatable.rb in mongo-2.13.0.beta1
- old
+ new
@@ -1,6 +1,6 @@
-# Copyright (C) 2015-2019 MongoDB, Inc.
+# Copyright (C) 2015-2020 MongoDB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
@@ -44,9 +44,13 @@
@has_collation = true
end
if document.respond_to?(:keys) && document[:array_filters]
@has_array_filters = true
+ end
+
+ if document.respond_to?(:keys) && document[:hint]
+ @has_hint = true
end
end
private