1
2
3
4
5
6
7
8
9
10
11
12
use query_structure::QueryArguments;

pub(crate) trait QueryArgumentsExt {
    /// If we need to take rows before a cursor position, then we need to reverse the order in SQL.
    fn needs_reversed_order(&self) -> bool;
}

impl QueryArgumentsExt for QueryArguments {
    fn needs_reversed_order(&self) -> bool {
        self.take.map(|t| t < 0).unwrap_or(false)
    }
}