-
Notifications
You must be signed in to change notification settings - Fork 4
Add support for "greatest" scalar function #759
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
Conversation
This allows checking which of the values are greatest. This is a scalar function if compared to max which is an aggregate function.
This allows checking which of the values are greatest. This is a scalar function if compared to max which is an aggregate function.
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.
Copilot reviewed 5 out of 6 changed files in this pull request and generated 2 comments.
Files not reviewed (1)
- tests/FlowtideDotNet.ComputeTests/OtherCases/comparison/greatest.test: Language not supported
src/FlowtideDotNet.Core/Compute/Columnar/Functions/BuiltInComparisonFunctions.cs
Outdated
Show resolved
Hide resolved
src/FlowtideDotNet.Core/Compute/Columnar/Functions/BuiltInComparisonFunctions.cs
Show resolved
Hide resolved
…arisonFunctions.cs Co-authored-by: Copilot <[email protected]>
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.
Benchmark
Benchmark suite | Current: 1532201 | Previous: 22d4209 | Ratio |
---|---|---|---|
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.InnerJoin |
409624900 ns (± 10230468.884442959 ) |
458826533.3333333 ns (± 10640413.19005047 ) |
0.89 |
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.LeftJoin |
500926140 ns (± 11886831.12638146 ) |
564994640 ns (± 28550338.329818636 ) |
0.89 |
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.ProjectionAndNormalization |
150212530 ns (± 18593393.966618598 ) |
169842820 ns (± 7144067.768715523 ) |
0.88 |
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.SumAggregation |
160594444.44444445 ns (± 9154840.01527486 ) |
171581250 ns (± 12415362.812660772 ) |
0.94 |
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.ListAggWithMapAggregation |
1745821250 ns (± 136408493.91410303 ) |
1982296640 ns (± 123349811.75190067 ) |
0.88 |
FlowtideDotNet.Benchmarks.Stream.StreamBenchmark.WindowSum |
369400290 ns (± 17843813.64072403 ) |
This comment was automatically generated by workflow using github-action-benchmark.
This fixes #753