Searched refs:order_by (Results 1 – 5 of 5) sorted by relevance
125 order_by: match attrs.get(&Tag::ReturnOrderedBy) { in get_query_options()126 Some(Value::Number(order_by)) => { in get_query_options()127 let tag = Tag::try_from(*order_by).expect("Tag::ReturnOrderBy has been verified"); in get_query_options()128 common::get_cloumn_name(tag).map(|order_by| vec![order_by]) in get_query_options()
145 if let Some(order_by) = &option.order_by { in build_sql_query_options()146 if !order_by.is_empty() { in build_sql_query_options()148 build_sql_columns_not_empty(order_by, sql); in build_sql_query_options()
144 …let query_options = QueryOptions { offset: None, limit: Some(MAX_BATCH_NUM), order_by: None, order… in migrate_data()
253 pub order_by: Option<Vec<&'static str>>, field
231 order_by: Some(vec![column::ALIAS]), in query_ordered_data()