-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: data type mismatch in the schema (#887)
This PR includes changes to 1. update data type for time partition field from utf-8 to timestamp 2. fetch stats from ingestors and combine with querier stats data type for time partition fields in version < 1.2.0 is Utf8. But the data type for time partition fields in version >=1.2.0 was Timestamp(TimeUnit::Millisecond, None) So we update the data type from Utf-8 to Timestamp(TimeUnit::Millisecond, None) at server start when stream has time partition and data type in schema is Utf-8 This change can be eventually removed as users move to latest versions.
- Loading branch information
1 parent
0df41a7
commit ef8eb34
Showing
2 changed files
with
56 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters