Data Types from Parquet file #6431
Unanswered
jschenz-chwy
asked this question in
Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all,
I am trying to run a data assistant against a parquet file that I have exported from Snowflake, and I am having no luck in getting this to work. I am new to GE, so there may be a simple solution that I am not aware of. The question that I am hoping to find some help with is this: Is there a workable approach to running a data assistant against a parquet file?
Python version 3.10.5
great_expectations, version 0.15.34
What I am seeing is that numeric and date columns in my dataset are all raising the same error with either
TypeError: object of type \'decimal.Decimal\' has no len()
orTypeError: object of type \'datetime.date\' has no len()
.This feels like there is some improper type inference going on somewhere, and that great expectations and pandas have two distinct understandings of what the data look like.
Here is the code that I am trying to run:
But when I do that, I am getting these errors from pandas:
Beta Was this translation helpful? Give feedback.
All reactions