We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a47244 commit d79e6c3Copy full SHA for d79e6c3
proto/substrait/algebra.proto
@@ -319,6 +319,17 @@ message FetchRel {
319
// Recommended type for count is int64.
320
Expression count_expr = 6;
321
}
322
+
323
+ // If specified, returns extra rows if they have the same sort column values
324
+ // as the last row specified by `count_mode`.
325
+ // The result of the Rel is guaranteed to be in the order of `WithTies.sorts`.
326
+ WithTies with_ties = 7;
327
328
+ message WithTies {
329
+ // The sort order to consider to evaluate tie.
330
+ repeated SortField sorts = 1;
331
+ }
332
333
substrait.extensions.AdvancedExtension advanced_extension = 10;
334
335
0 commit comments