-
Notifications
You must be signed in to change notification settings - Fork 6
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
change data type for timestamp in Developer lab 2.1. #21
base: main
Are you sure you want to change the base?
Conversation
Existing data type causes an error "Type mismatch in IN or VALUES section. Expected: DateTime. Got: Decimal64:"
I didn't get this error with the |
Yes, I believe I got it in the cloud sql console (it was a while ago). |
I couldn't reproduce it. Shall I close it, or do you want to try it again? |
We looked into it, and the error should not happen (the error above is not a training bug). I rather have |
The solutions used
DateTime
, which causes an error on insert:The
DESCRIBE
command shows the type in the Parquet file asNullable(DateTime64)
. UsingDateTime64
in the new table eliminates the error.Also removed a wayward .DS_Store file from the repo.