# File lib/sequel/adapters/jdbc/oracle.rb, line 126 def type_convertor(map, meta, type, i) case type when NUMERIC_TYPE if meta.getScale(i) == 0 map[:OracleDecimal] else super end when *TIMESTAMPTZ_TYPES map[TIMESTAMP_TYPE] when CLOB_TYPE map[:OracleClob] else super end end