| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
@yujin5701 can you rebase? It seems CI did not trigger |
Sorry, something went wrong.
|
Rebased onto the latest main and force-pushed the updated branch. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
What's Changed
This fixes Flight JDBC prepared statement binding for Arrow DATE(MILLISECOND)
parameters.
Avatica represents JDBC DATE values as days since the Unix epoch. The Flight
JDBC parameter binder already writes that value correctly for DateDayVector,
but it was also writing the same day value directly into DateMilliVector,
which expects milliseconds since the Unix epoch.
This now converts epoch days to epoch milliseconds before writing to
DateMilliVector.
Tested with ArrowFlightPreparedStatementTest.
Closes #477.