-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLAlchemy dialect support more SQL datatypes #107
Comments
TIMESTAMP(6) definitely needs to be supported for pd.to_sql to work with datetype.datetime types (e.g. dtype='datetime64[ns]'). Test case:
This presently fails because Pandas converts the datatime64 data type to TIMESTAMP, which gets converted by SQLAlchemy/DBZPI to TIMESTAMP(3) instead of TIMESTAMP(6). |
@MichaelTiemannOSC does #181 resolve this? |
There are changes to the correct functions in the code, so will test as soon as I clear out some other nuisances that are impeding my daily tech work. I'm optimistic the answer is yes... |
This is a meta issue that tracks the support of SQL datatypes after #81 merged.
TIME(3)
&TIMESTAMP(6)
) Support for TIME(p) and TIMESTAMP(p) to SQLAlchemy #181INTERVAL
typesROW(BIGINT, DOUBLE)
)IPADDRESS
UUID
QDigest
TDigest
The text was updated successfully, but these errors were encountered: