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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
use Span;
use ToTokens;
use ;
use crateJoin;
use Enum;
/// Derive [`FromSql`] and [`ToSql`] for a Rust enum.
/// Represents a PostgreSQL enum as a Rust enum.
///
/// ## Example
///
/// ### migration
///
/// ```sql
/// CREATE TYPE animal AS ENUM (
/// 'chicken',
/// 'duck',
/// 'oca',
/// 'rabbit
/// );
/// ```
///
/// ### Rust enum
///
/// ```rust
/// # use benzina_derive as benzina;
/// # fn main() {}
///
/// use diesel::{
/// deserialize::FromSqlRow,
/// expression::AsExpression,
/// };
///
/// #[derive(Debug, Copy, Clone, AsExpression, FromSqlRow, benzina::Enum)]
/// #[diesel(sql_type = crate::schema::sql_types::Animal)]
/// #[benzina(
/// sql_type = crate::schema::sql_types::Animal,
/// rename_all = "snake_case"
/// )]
/// # #[benzina(crate = fake_benzina)]
/// pub enum Animal {
/// Chicken,
/// Duck,
/// #[benzina(rename = "oca")]
/// Goose,
/// Rabbit,
/// }
///
/// pub mod schema {
/// // @generated automatically by Diesel CLI.
///
/// pub mod sql_types {
/// #[derive(diesel::query_builder::QueryId, Clone, diesel::sql_types::SqlType)]
/// #[diesel(postgres_type(name = "animal"))]
/// pub struct Animal;
/// }
/// }
/// #
/// # mod fake_benzina {
/// # pub mod __private {
/// # pub use std;
/// # pub use diesel;
/// # }
/// # }
/// ```
///
/// [`FromSql`]: https://docs.rs/diesel/latest/diesel/deserialize/trait.FromSql.html
/// [`ToSql`]: https://docs.rs/diesel/latest/diesel/serialize/trait.ToSql.html
/// Convert the output of a query containing joins into a properly nested structure.
///
/// <div class="warning">
/// This macro is still in the experimental stage and may contain
/// bugs and unhelpful error diagnostics.
/// </div>
///
/// Enable the `rustc-hash` feature to use a faster but non-DOS-resistant hasher for
/// the internal maps.
///
/// ## Example
///
/// ```rust,compile_fail
/// # fn main() {}
///
/// use diesel::{
/// Identifiable, QueryDsl, QueryResult, Queryable, RunQueryDsl, Selectable, SelectableHelper,
/// pg::{Pg, PgConnection},
/// };
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = users, check_for_backend(Pg))]
/// pub struct User {
/// pub id: i32,
/// pub name: String,
/// }
///
/// #[derive(Debug)]
/// pub struct UserWithPosts {
/// pub user: User,
/// pub posts: Vec<PostFromUser>,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = topics, check_for_backend(Pg))]
/// pub struct Topic {
/// pub id: i32,
/// pub name: String,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = posts, check_for_backend(Pg))]
/// pub struct Post {
/// pub id: i32,
/// pub user_id: i32,
/// pub topic_id: i32,
/// pub message: String,
/// }
///
/// #[derive(Debug)]
/// pub struct PostFromUser {
/// pub post: Post,
/// pub topic: Topic,
/// pub comments: Vec<CommentFromPost>,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = comments, check_for_backend(Pg))]
/// pub struct Comment {
/// pub id: i32,
/// pub post_id: i32,
/// pub user_id: i32,
/// pub message: String,
/// }
///
/// #[derive(Debug)]
/// pub struct CommentFromPost {
/// pub comment: Comment,
/// pub user: User,
/// }
///
/// impl UserWithPosts {
/// pub fn get_by_id(conn: &mut PgConnection, user_id: i32) -> QueryResult<Vec<Self>> {
/// let (users1, users2) = diesel::alias!(users as users1, users as users2);
///
/// let records = users1
/// .find(user_id)
/// .left_join(
/// posts::table
/// .left_join(topics::table)
/// .left_join(comments::table.left_join(users2)),
/// )
/// .select((
/// users1.fields(<User as Selectable<Pg>>::construct_selection()),
/// Option::<Post>::as_select(),
/// Option::<Topic>::as_select(),
/// Option::<Comment>::as_select(),
/// users2.fields(<Option<User> as Selectable<Pg>>::construct_selection()),
/// ))
/// .get_results::<(
/// User,
/// Option<Post>,
/// Option<Topic>,
/// Option<Comment>,
/// Option<User>,
/// )>(conn)?;
///
/// let joined = benzina::join! {
/// records,
/// Vec<UserWithPosts {
/// user: One<0>,
/// posts: Vec0<PostFromUser {
/// post: One<1>,
/// topic: AssumeOne<2>,
/// comments: Vec0<CommentFromPost {
/// comment: One<3>,
/// user: AssumeOne<4>,
/// }>,
/// }>,
/// }>,
/// };
/// Ok(joined)
/// }
/// }
///
/// diesel::table! {
/// users {
/// id -> Integer,
/// name -> Text,
/// }
/// }
///
/// diesel::table! {
/// topics {
/// id -> Integer,
/// name -> Text,
/// }
/// }
///
/// diesel::table! {
/// posts {
/// id -> Integer,
/// user_id -> Integer,
/// topic_id -> Integer,
/// message -> Text,
/// }
/// }
///
/// diesel::table! {
/// comments {
/// id -> Integer,
/// post_id -> Integer,
/// user_id -> Integer,
/// message -> Text,
/// }
/// }
///
/// diesel::joinable!(posts -> users (user_id));
/// diesel::joinable!(posts -> topics (topic_id));
/// diesel::joinable!(comments -> posts (post_id));
/// diesel::joinable!(comments -> users (user_id));
///
/// diesel::allow_tables_to_appear_in_same_query!(users, topics, posts, comments);
/// ```