Open pan3793 opened 3 years ago
Yes i think this is great.
Sound good. MySQL is using the same of mechanism.
We found significant performance downgrade at least in JDBC interface, and I will do some profile in next couple days to determine the most expensive time cost process.
An alternative approach is abandon single root Generic Type constraint on IDataType
Background
IDataType
is the bridge between ClickHouse type system and JDBC type system, and we find there are some limitations in current implementation, the most important one I think is the lack of Generic Type constraint. Without this constraint,serializeBinary
can only acceptObject
, anddeserializeBinary
can only returnObject
, which causes all static type checks lose effectiveness.The root cause here is that JDBC type and ClickHouse type are not a 1:1 mapping, and we mixed the
UIntX
andIntX
in oneDataTypeIntX
make things worse. Because Java Generic Type system not support MixIn(or Hybrid) Type constraint,Object
is the only option.Another thing is that we found some JDBC-GUI Tools like DataGrip will call
ResultSet#getString
to render the value and display it. The temporary solution in codebase is roughly returnobject#toString
.Based on above, I think we need to refactor
IDataType
.Proposal
IDataType
type and JDBC type;IDataType
with the property Java type, i.e.DateTime
map toDataTypeDateTime
(ZonedDateTime
);IDataType
and JDBC interface type, thusDataTypeDateTime
(ZonedDateTime
) can map tojava.sql.Date
,Timestamp
,Calendar
;DataTypeIntX
intoDataTypeUIntX
andDataTypeIntX
;String
for display inIDataType
.After this, it will be easier to implement features like #265.
Consider this change is a bit large, it will not included in release v2.5.0.
@sundy-li @sbouchex Please let me know what you guys thinking of this proposal.
Updated
This proposal has been almost implemented in #295, and the followup PR will coming soon.