Skip to content

Commit 757c57a

Browse files
jalbertokarmi
authored andcommitted
[STORE] Use text instead of string for the <String> data types
In order to be compatible with Elasticsearch 5.x, the default property type for Ruby <String> objects has been changed to `text` from `string`. See: https://www.elastic.co/guide/en/elasticsearch/reference/current/string.html Closes elastic#649
1 parent 6bfc6e0 commit 757c57a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

elasticsearch-persistence/lib/elasticsearch/persistence/model/base.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module Utils
7070
def lookup_type(type)
7171
case
7272
when type == String
73-
'string'
73+
'text'
7474
when type == Integer
7575
'integer'
7676
when type == Float

elasticsearch-persistence/test/unit/model_gateway_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def run!; DummyGatewayModel.gateway { |g| @b += 1 }; end
7070
end
7171

7272
should "properly look up types for classes" do
73-
assert_equal 'string', Elasticsearch::Persistence::Model::Utils::lookup_type(String)
73+
assert_equal 'text', Elasticsearch::Persistence::Model::Utils::lookup_type(String)
7474
assert_equal 'integer', Elasticsearch::Persistence::Model::Utils::lookup_type(Integer)
7575
assert_equal 'float', Elasticsearch::Persistence::Model::Utils::lookup_type(Float)
7676
assert_equal 'date', Elasticsearch::Persistence::Model::Utils::lookup_type(Date)

0 commit comments

Comments
 (0)