-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
copr: Add enum/set into ScalarValue and VectorValue #9021
Conversation
Signed-off-by: Xuanwo <github@xuanwo.io>
Signed-off-by: Xuanwo <github@xuanwo.io>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM
|
/run-all-tests |
|
It seems that integration test panics when encoding chunks.I suggest not adding encoding logic for now. |
|
/run-all-tests |
| @@ -235,6 +241,8 @@ impl Datum { | |||
| Datum::Dur(ref d) => cmp_f64(d.to_secs_f64(), f), | |||
| Datum::Time(t) => cmp_f64(t.convert(ctx)?, f), | |||
| Datum::Json(_) => Ok(Ordering::Less), | |||
| Datum::Enum(_) => Ok(Ordering::Less), | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to fully deprecate Datum?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's give it a try.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
/merge |
|
/run-all-tests |
What problem does this PR solve?
Add enum/set into ScalarValue and VectorValue
Check List
Tests