We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c75b5 commit e0a1ca9Copy full SHA for e0a1ca9
lib/arjdbc/postgresql/oid_types.rb
@@ -112,8 +112,8 @@ def initialize_type_map_inner(m)
112
m.register_type "int4", Type::Integer.new(limit: 4)
113
m.register_type "int8", Type::Integer.new(limit: 8)
114
m.register_type "oid", OID::Oid.new
115
- m.register_type "float4", Type::Float.new
116
- m.alias_type "float8", "float4"
+ m.register_type "float4", Type::Float.new(limit: 24)
+ m.register_type "float8", Type::Float.new
117
m.register_type "text", Type::Text.new
118
register_class_with_limit m, "varchar", Type::String
119
m.alias_type "char", "varchar"
0 commit comments