-
-
Notifications
You must be signed in to change notification settings - Fork 560
/
Copy pathmain.rs
59 lines (50 loc) · 1.73 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
mod thread;
mod time_builder;
use sea_orm::{
sea_query::TableCreateStatement, ActiveValue, ConnectionTrait, Database, DatabaseConnection,
EntityTrait, QueryOrder, QuerySelect, Schema,
};
use time_builder::TimeBuilder;
#[tokio::main]
async fn main() {
let conn: DatabaseConnection = Database::connect("sqlite::memory:").await.unwrap();
create_thread_table(&conn).await;
let thread_1 = create_thread(&conn).await;
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
let thread_2 = create_thread(&conn).await;
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
let thread_3 = create_thread(&conn).await;
// This is not working
let result = thread::Entity::find()
.cursor_by(thread::Column::Id)
.order_by_desc(thread::Column::Id)
.limit(10)
.all(&conn)
.await
.unwrap();
// // This is working
// let result = thread::Entity::find()
// .order_by_desc(thread::Column::Id)
// .all(&conn)
// .await
// .unwrap();
assert_eq!(result[0].id, thread_3.id);
assert_eq!(result[1].id, thread_2.id);
assert_eq!(result[2].id, thread_1.id);
}
async fn create_thread(conn: &DatabaseConnection) -> thread::Model {
thread::Entity::insert(thread::ActiveModel {
created_at: ActiveValue::Set(TimeBuilder::now().into()),
..Default::default()
})
.exec_with_returning(conn)
.await
.unwrap()
}
async fn create_thread_table(conn: &DatabaseConnection) {
let schema = Schema::new(sea_orm::DbBackend::Sqlite);
let stmt: TableCreateStatement = schema.create_table_from_entity(thread::Entity);
conn.execute(sea_orm::DbBackend::Sqlite.build(&stmt))
.await
.unwrap();
}