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
The java worker throws the following errors when using a Java input binding on a table with Date and Time column types. Date:
Exception: ParseException: Unparseable date: "2022-10-25T00:00:00.000Z" Stack: com.google.gson.JsonSyntaxException: Failed parsing '2022-10-25T00:00:00.000Z' as SQL Date; at path $[0].Date
Time:
Exception: ParseException: Unparseable date: "11:50:12" [2022-10-25T18:50:37.437Z] Stack: com.google.gson.JsonSyntaxException: Failed parsing '11:50:12' as SQL Time; at path $[0].Time
Current workaround is to use String instead of java.sql.Date and java.sql.Time
This depends on the Java worker adding support for customizing the GSON serializer: Azure/azure-functions-java-worker#424.
The text was updated successfully, but these errors were encountered:
lucyzhang929
No branches or pull requests
The java worker throws the following errors when using a Java input binding on a table with Date and Time column types.
Date:
Time:
Current workaround is to use String instead of java.sql.Date and java.sql.Time
This depends on the Java worker adding support for customizing the GSON serializer: Azure/azure-functions-java-worker#424.
The text was updated successfully, but these errors were encountered: