Skip to content

Commit 92f0148

Browse files
committed
[MODEL] Changed, that TYPES_WITH_EMBEDDED_PROPERTIES is evaluated against a string version of the passed field type
Related: elastic#480
1 parent ddc4726 commit 92f0148

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

elasticsearch-model/lib/elasticsearch/model/indexing.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def indexes(name, options={}, &block)
5252

5353
if block_given?
5454
@mapping[name][:type] ||= 'object'
55-
properties = TYPES_WITH_EMBEDDED_PROPERTIES.include?(@mapping[name][:type]) ? :properties : :fields
55+
properties = TYPES_WITH_EMBEDDED_PROPERTIES.include?(@mapping[name][:type].to_s) ? :properties : :fields
5656

5757
@mapping[name][properties] ||= {}
5858

elasticsearch-model/test/unit/indexing_test.rb

+8
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ class NotFound < Exception; end
127127
indexes :bar
128128
end
129129

130+
mappings.indexes :foo_nested_as_symbol, type: :nested do
131+
indexes :bar
132+
end
133+
130134
# Object is the default when `type` is missing and there's a block passed
131135
#
132136
assert_equal 'object', mappings.to_hash[:mytype][:properties][:foo][:type]
@@ -140,6 +144,10 @@ class NotFound < Exception; end
140144
assert_equal 'nested', mappings.to_hash[:mytype][:properties][:foo_nested][:type]
141145
assert_equal 'string', mappings.to_hash[:mytype][:properties][:foo_nested][:properties][:bar][:type]
142146
assert_nil mappings.to_hash[:mytype][:properties][:foo_nested][:fields]
147+
148+
assert_equal :nested, mappings.to_hash[:mytype][:properties][:foo_nested_as_symbol][:type]
149+
assert_not_nil mappings.to_hash[:mytype][:properties][:foo_nested_as_symbol][:properties]
150+
assert_nil mappings.to_hash[:mytype][:properties][:foo_nested_as_symbol][:fields]
143151
end
144152
end
145153

0 commit comments

Comments
 (0)