commit | 51287826be5c47dee9edcebb168e18081cb2e8bc | [log] [tgz] |
---|---|---|
author | Shengkai <33114724+fsk119@users.noreply.github.com> | Wed Jun 17 21:32:10 2020 +0800 |
committer | MartijnVisser <martijn@2symbols.com> | Mon Apr 04 15:45:43 2022 +0200 |
tree | e57daa0f8706c3e55c2516ac4fe9798636b252f0 | |
parent | 9f816ec84decabe3cd170e3643d9d91a45c1452d [diff] |
[FLINK-18299][json] Fix the non SQL standard timestamp format in JSON format The current timestamp format in JSON format is not SQL standard which uses RFC-3339. This commit changes the default behavior to parse/generate timestamp using SQL standard. Besides, it introduces an option "json.timestamp-format.standard" to have the ability to fallback to ISO standard. This closes #12661