Skip to content

Commit

Permalink
spi-kv:fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljl committed Dec 25, 2023
1 parent faea008 commit 72e1488
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spi/spi-kv/src/serv/kv_item_serv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ pub async fn page_tags(
key_prefix: String,
page_number: u32,
page_size: u16,
desc_sort_by_create: Query<Option<bool>>,
desc_sort_by_create: Query<Option<bool>>,
desc_sort_by_create: Option<bool>,
desc_sort_by_create: Option<bool>,
funs: &TardisFunsInst,
ctx: &TardisContext,
) -> TardisResult<TardisPage<KvTagFindResp>> {
Expand Down
2 changes: 1 addition & 1 deletion spi/spi-kv/src/serv/pg/kv_pg_item_serv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ WHERE
"".to_string()
} else {
format!("ORDER BY {}", order_fragments.join(", "))
}
},
page_fragments
),
sql_vals,
Expand Down

0 comments on commit 72e1488

Please sign in to comment.