2

rust 版本 1.18.3 柴油版本 1.0.0 Debian 10 上的 postgres 11

我正在尝试使用 Diesel ORM 和 postgres 在 Rust 中加入两个表。该表是帖子和用户,我想将用户的用户名加入到帖子表中。

我在 CREATE TABLE 语句中的帖子中实现了一个外键,指向用户中的 id,因此柴油自动派生了可连接!和allow_tables_to_appear_in_same_query!schema.rs 中的宏。然而,当我尝试在我的代码中加入表格时,rust 无法推断类型,我不知道如何注释类型。

这是我的 main.rs

extern crate cmsbackend;
extern crate diesel;

use self::cmsbackend::*;
use self::models::*;
use self::diesel::prelude::*;

fn main() {
    use cmsbackend::schema::*;

    let connection = establish_connection();

    let results = users::table.inner_join(posts::table)
        .select((users::name, posts::title))
        .load(&connection);
}

我收到此错误消息:

error[E0282]: type annotations needed for `std::result::Result<std::vec::Vec<U>, diesel::result::Error>`
  --> src/bin/main.rs:20:10
   |
18 |     let results = users::table.inner_join(posts::table)
   |         ------- consider giving `results` the explicit type `std::result::Result<std::vec::Vec<U>, diesel::result::Error>`, where the type parameter `U` is specified
19 |         .select((users::name, posts::title))
20 |         .load(&connection);
   |          ^^^^ cannot infer type for `U`

有关此错误的更多信息,请尝试rustc --explain E0282. 错误:无法编译cmsbackend

我是否可能需要在我的结构定义中派生其他东西:

use diesel::pg::data_types::*;

#[derive(Queryable)]
pub struct Post {
    pub id: i32,
    pub title: String,
    pub body: Option<String>,
    pub published: bool,
    pub user_id: i32,
    pub creation_date: PgTimestamp,
    pub last_edit: PgTimestamp,
    pub foto: Option<String>,
}

#[derive(Queryable)]
pub struct User {
    pub id: i32,
    pub name: String,
    pub pw: String,
}

我如何让它编译?


编辑:
感谢您的评论。这是我的 schema.rs 的内容

table! {
    posts (id) {
        id -> Int4,
        title -> Varchar,
        body -> Nullable<Text>,
        published -> Bool,
        user_id -> Int4,
        creation_date -> Timestamp,
        last_edit -> Timestamp,
        foto -> Nullable<Varchar>,
    }
}

table! {
    users (id) {
        id -> Int4,
        name -> Varchar,
        pw -> Varchar,
    }
}

joinable!(posts -> users (user_id));

allow_tables_to_appear_in_same_query!(
    posts,
    users,
);
4

1 回答 1

3

我已经解决了这个问题。由于结构中的 Queryable 派生无法推断连接产生的数据类型,因此您必须像这样注释结构字段的数据类型:

let data: Vec<(String, String)> = users::table.inner_join(notes::table)
    .select((users::name, notes::title))
    .load(&connection)
    .expect("error");

在我尝试类似的东西之前

let data: Vec<(User, Post)> = posts::table.inner_join(users::table)
.select((users::name, notes::title))
.load(&connection)
.expect("error");

编译器抛出了一个加载错误,即特征 Queryable 未实现。

另请参阅文档:https ://github.com/diesel-rs/diesel/blob/master/guide_drafts/trait_derives.md

于 2019-08-23T20:03:53.747 回答