Update jdbc_spec_helper.rb

Apparently MySQL on travis doesnt have the BigDecimal type?
This commit is contained in:
Karl 2017-11-08 17:31:59 +00:00 committed by GitHub
parent e91db61e8c
commit aba4e08bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,7 @@ RSpec.shared_context 'when outputting messages' do
{db_field: "static_bigint", db_type: "bigint", db_value: '?', event_field: 'bigint'},
{db_field: "static_float", db_type: "float", db_value: '?', event_field: 'float'},
{db_field: "static_bool", db_type: "boolean", db_value: '?', event_field: 'bool'},
{db_field: "static_bigdec", db_type: "bigdecimal", db_value: '?', event_field: 'bigdec'}
{db_field: "static_bigdec", db_type: "decimal", db_value: '?', event_field: 'bigdec'}
]
end