Andrew
Andrew
A late answer, but I think it's still relevant. I've launched a benchmark, the results of other libraries have improved, but easyjson is still the fastest. I also [found a...
@baztian please merge, this bug cause data inconsistency
Temporary solution: ``` def _to_datetime_patched(rs, col): java_val = rs.getTimestamp(col) if not java_val: return d = datetime.datetime.strptime(str(java_val)[:19], "%Y-%m-%d %H:%M:%S") d = d.replace(microsecond=java_val.getNanos() // 1000) return str(d) conn = jaydebeapi.connect(...) # Only...