We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Following error is seen , when there is date type of column in greenplum database and JSON document contains date represented in String type.
ext_web_formatter_json=# select * from accounts; ERROR: Unsupported data type '1082' for column 'birthdate' (seg0 slice1 127.0.0.1:40000 pid=19733) DETAIL: External table accounts
Look like , in json_formatter.c date data type is not handled , it goes to default case in switch(type) and errors out.
Requesting to add support for date data type.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following error is seen , when there is date type of column in greenplum database and JSON document contains date represented in String type.
ext_web_formatter_json=# select * from accounts; ERROR: Unsupported data type '1082' for column 'birthdate' (seg0 slice1 127.0.0.1:40000 pid=19733) DETAIL: External table accounts
Look like , in json_formatter.c date data type is not handled , it goes to default case in switch(type) and errors out.
Requesting to add support for date data type.
The text was updated successfully, but these errors were encountered: