keelson-gen 0.1.1

keelson's code generator: introspect a live schema, emit readable model .rs files against keelson-models.
Documentation
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
// @generated by keelson-gen. DO NOT EDIT.
// Regenerate from the .sql files instead; the SQL is the source of truth
// and lives outside this directory.

//! Generated from `tests/queries/sqlite/posts.sql`. Each query has two faces: a query object that runs the file's own SQL, and a mod that merges the same clauses into a host statement. Both slice the text below, so they can never disagree.
/// The query file, verbatim. Every span below indexes it.
const SOURCE: &str = include_str!("../../queries/sqlite/posts.sql");
const _: () = assert!(
    SOURCE.len() == 3261usize,
    "tests/queries/sqlite/posts.sql changed after it was generated from; re-run keelson-gen"
);
/// Parameters of `posts_for_user`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostsForUserParams {
    /// `$1` — type taken from the column it is compared with.
    pub user_id: i64,
    /// `$2` — a row count.
    pub limit: i64,
}
impl PostsForUserParams {
    /// The parameters in placeholder order.
    pub fn new(user_id: i64, limit: i64) -> Self {
        PostsForUserParams {
            user_id,
            limit,
        }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![
            keelson_core::ToValue::to_value(self.user_id),
            keelson_core::ToValue::to_value(self.limit)
        ]
    }
}
impl From<(i64, i64)> for PostsForUserParams {
    fn from(v: (i64, i64)) -> Self {
        PostsForUserParams::new(v.0, v.1)
    }
}
/// One row of `posts_for_user`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostsForUserRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `title` — never NULL by rule N1.
    pub title: String,
    /// `status` — nullable by rule N1.
    pub status: Option<String>,
    /// `views` — never NULL by rule N1.
    pub views: i64,
    /// `published_at` — nullable by rule N1.
    pub published_at: Option<chrono::NaiveDateTime>,
}
impl keelson_exec::FromRow for PostsForUserRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(PostsForUserRow {
            id: row.take("id")?,
            title: row.take("title")?,
            status: row.take("status")?,
            views: row.take("views")?,
            published_at: row.take("published_at")?,
        })
    }
}
/** `posts_for_user` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct PostsForUserQuery {
    params: PostsForUserParams,
}
impl PostsForUserQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &PostsForUserParams {
        &self.params
    }
}
impl keelson_core::Expression for PostsForUserQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[407usize..494usize]);
        w.push_arg(args[0].clone());
        w.push_str(&SOURCE[496usize..532usize]);
        w.push_arg(args[1].clone());
    }
}
impl keelson_core::Query for PostsForUserQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for PostsForUserQuery {}
/// Posts by one user, newest first.
///
/// Build `posts_for_user` without running it.
pub fn posts_for_user_query(params: impl Into<PostsForUserParams>) -> PostsForUserQuery {
    PostsForUserQuery {
        params: params.into(),
    }
}
/// Posts by one user, newest first.
///
/// Run `posts_for_user` and return every row.
pub async fn posts_for_user(
    db: &dyn keelson_exec::Executor,
    params: impl Into<PostsForUserParams>,
) -> Result<Vec<PostsForUserRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    posts_for_user_query(params).fetch_all::<PostsForUserRow>(db).await
}
/** `posts_for_user` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn posts_for_user_mod(
    params: impl Into<PostsForUserParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[468usize..475usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[482usize..494usize]);
                            w.push_arg(a0.clone());
                            w.push_str(")");
                        }),
                    ),
                );
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[506usize..525usize]);
                        }),
                    ),
                );
        }
        {
            let a1 = args[1].clone();
            if q.limit.is_empty() {
                q.limit
                    .set_limit(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_arg(a1.clone());
                            }),
                        ),
                    );
            }
        }
    })
}
/// Parameters of `comments_with_author`.
#[derive(Debug, Clone, PartialEq)]
pub struct CommentsWithAuthorParams {
    /// `$1` — type taken from the column it is compared with.
    pub post_id: i64,
}
impl CommentsWithAuthorParams {
    /// The parameters in placeholder order.
    pub fn new(post_id: i64) -> Self {
        CommentsWithAuthorParams {
            post_id,
        }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.post_id)]
    }
}
impl From<i64> for CommentsWithAuthorParams {
    fn from(v: i64) -> Self {
        CommentsWithAuthorParams::new(v)
    }
}
/// `comments_with_author`'s nested `author`.
#[derive(Debug, Clone, PartialEq)]
pub struct CommentsWithAuthorAuthor {
    /// `author__id` — never NULL by rule N2.
    pub id: i64,
    /// `author__name` — never NULL by rule N2.
    pub name: String,
    /// `author__email` — nullable by rule N2.
    pub email: Option<String>,
}
/// One row of `comments_with_author`.
#[derive(Debug, Clone, PartialEq)]
pub struct CommentsWithAuthorRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `body` — never NULL by rule N1.
    pub body: String,
    /// `author__*` — a to-one nested group, `None` when the outer join found no row.
    pub author: Option<CommentsWithAuthorAuthor>,
}
impl keelson_exec::FromRow for CommentsWithAuthorRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(CommentsWithAuthorRow {
            id: row.take("id")?,
            body: row.take("body")?,
            author: {
                let id: Option<i64> = row.take("author__id")?;
                let name: Option<String> = row.take("author__name")?;
                let email: Option<String> = row.take("author__email")?;
                match (id, name) {
                    (Some(id), Some(name)) => {
                        Some(CommentsWithAuthorAuthor {
                            id,
                            name,
                            email,
                        })
                    }
                    _ => None,
                }
            },
        })
    }
}
/** `comments_with_author` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct CommentsWithAuthorQuery {
    params: CommentsWithAuthorParams,
}
impl CommentsWithAuthorQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &CommentsWithAuthorParams {
        &self.params
    }
}
impl keelson_core::Expression for CommentsWithAuthorQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[723usize..917usize]);
        w.push_arg(args[0].clone());
        w.push_str(&SOURCE[919usize..933usize]);
    }
}
impl keelson_core::Query for CommentsWithAuthorQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for CommentsWithAuthorQuery {}
/// Comments on one post, with the author when there is one — rule N2 through a
/// nullable foreign key, so the whole `author` side is one `Option`.
///
/// Build `comments_with_author` without running it.
pub fn comments_with_author_query(
    params: impl Into<CommentsWithAuthorParams>,
) -> CommentsWithAuthorQuery {
    CommentsWithAuthorQuery {
        params: params.into(),
    }
}
/// Comments on one post, with the author when there is one — rule N2 through a
/// nullable foreign key, so the whole `author` side is one `Option`.
///
/// Run `comments_with_author` and return every row.
pub async fn comments_with_author(
    db: &dyn keelson_exec::Executor,
    params: impl Into<CommentsWithAuthorParams>,
) -> Result<Vec<CommentsWithAuthorRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    comments_with_author_query(params).fetch_all::<CommentsWithAuthorRow>(db).await
}
/** `comments_with_author` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn comments_with_author_mod(
    params: impl Into<CommentsWithAuthorParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[850usize..898usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[905usize..917usize]);
                            w.push_arg(a0.clone());
                            w.push_str(")");
                        }),
                    ),
                );
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[929usize..933usize]);
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `user_stats`.
#[derive(Debug, Clone, PartialEq, Default)]
pub struct UserStatsParams {}
impl UserStatsParams {
    /// The parameters in placeholder order.
    pub fn new() -> Self {
        UserStatsParams {}
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![]
    }
}
impl From<()> for UserStatsParams {
    fn from((): ()) -> Self {
        UserStatsParams::new()
    }
}
/// One row of `user_stats`.
#[derive(Debug, Clone, PartialEq)]
pub struct UserStatsRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `name` — never NULL by rule N1.
    pub name: String,
    /// `email` — nullable by rule N1.
    pub email: Option<String>,
    /// `post_count` — never NULL by rule N4.
    pub post_count: i64,
    /// `best_views` — nullable by rule N5.
    pub best_views: Option<i64>,
    /// `total_views` — never NULL by rule N7.
    pub total_views: i64,
}
impl keelson_exec::FromRow for UserStatsRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(UserStatsRow {
            id: row.take("id")?,
            name: row.take("name")?,
            email: row.take("email")?,
            post_count: row.take("post_count")?,
            best_views: row.take("best_views")?,
            total_views: row.take("total_views")?,
        })
    }
}
/** `user_stats` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct UserStatsQuery {
    params: UserStatsParams,
}
impl UserStatsQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &UserStatsParams {
        &self.params
    }
}
impl keelson_core::Expression for UserStatsQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        w.push_str(&SOURCE[1112usize..1421usize]);
    }
}
impl keelson_core::Query for UserStatsQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for UserStatsQuery {}
/// The aggregate rules: N4 for `count`, N5 for the rest, N7 for `coalesce`,
/// and N3 — an `IS NOT NULL` filter leaves `email` an `Option<String>`.
///
/// Build `user_stats` without running it.
pub fn user_stats_query(params: impl Into<UserStatsParams>) -> UserStatsQuery {
    UserStatsQuery {
        params: params.into(),
    }
}
/// The aggregate rules: N4 for `count`, N5 for the rest, N7 for `coalesce`,
/// and N3 — an `IS NOT NULL` filter leaves `email` an `Option<String>`.
///
/// Run `user_stats` and return every row.
pub async fn user_stats(
    db: &dyn keelson_exec::Executor,
    params: impl Into<UserStatsParams>,
) -> Result<Vec<UserStatsRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    user_stats_query(params).fetch_all::<UserStatsRow>(db).await
}
/** `user_stats` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn user_stats_mod(
    params: impl Into<UserStatsParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let _ = params;
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[1305usize..1350usize]);
                            }),
                        ),
                    );
            }
        }
        {
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[1357usize..1376usize]);
                            w.push_str(")");
                        }),
                    ),
                );
        }
        {
            q.group_by
                .append_group(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[1386usize..1407usize]);
                        }),
                    ),
                );
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[1417usize..1421usize]);
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `post_flags`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostFlagsParams {
    /// `$1` — type taken from the column it is compared with.
    pub views: i64,
}
impl PostFlagsParams {
    /// The parameters in placeholder order.
    pub fn new(views: i64) -> Self {
        PostFlagsParams { views }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.views)]
    }
}
impl From<i64> for PostFlagsParams {
    fn from(v: i64) -> Self {
        PostFlagsParams::new(v)
    }
}
/// One row of `post_flags`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostFlagsRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `has_status` — never NULL by rule N11.
    pub has_status: i64,
    /// `is_popular` — never NULL by rule N10.
    pub is_popular: i64,
    /// `is_published` — nullable by rule N10.
    pub is_published: Option<i64>,
    /// `heat` — never NULL by rule N9.
    pub heat: String,
    /// `maybe_heat` — nullable by rule N9.
    pub maybe_heat: Option<String>,
    /// `views_text` — never NULL by rule N13.
    pub views_text: String,
}
impl keelson_exec::FromRow for PostFlagsRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(PostFlagsRow {
            id: row.take("id")?,
            has_status: row.take("has_status")?,
            is_popular: row.take("is_popular")?,
            is_published: row.take("is_published")?,
            heat: row.take("heat")?,
            maybe_heat: row.take("maybe_heat")?,
            views_text: row.take("views_text")?,
        })
    }
}
/** `post_flags` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct PostFlagsQuery {
    params: PostFlagsParams,
}
impl PostFlagsQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &PostFlagsParams {
        &self.params
    }
}
impl keelson_core::Expression for PostFlagsQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[1536usize..1611usize]);
        w.push_arg(args[0].clone());
        w.push_str(&SOURCE[1613usize..1896usize]);
    }
}
impl keelson_core::Query for PostFlagsQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for PostFlagsQuery {}
/// The expression rules, SQLite-flavoured: comparisons are integers, not
/// booleans.
///
/// Build `post_flags` without running it.
pub fn post_flags_query(params: impl Into<PostFlagsParams>) -> PostFlagsQuery {
    PostFlagsQuery {
        params: params.into(),
    }
}
/// The expression rules, SQLite-flavoured: comparisons are integers, not
/// booleans.
///
/// Run `post_flags` and return every row.
pub async fn post_flags(
    db: &dyn keelson_exec::Executor,
    params: impl Into<PostFlagsParams>,
) -> Result<Vec<PostFlagsRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    post_flags_query(params).fetch_all::<PostFlagsRow>(db).await
}
/** `post_flags` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn post_flags_mod(
    params: impl Into<PostFlagsParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let _ = params;
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[1875usize..1882usize]);
                            }),
                        ),
                    );
            }
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[1892usize..1896usize]);
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `posts_with_tags`.
#[derive(Debug, Clone, PartialEq, Default)]
pub struct PostsWithTagsParams {}
impl PostsWithTagsParams {
    /// The parameters in placeholder order.
    pub fn new() -> Self {
        PostsWithTagsParams {}
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![]
    }
}
impl From<()> for PostsWithTagsParams {
    fn from((): ()) -> Self {
        PostsWithTagsParams::new()
    }
}
/// `posts_with_tags`'s nested `tags`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostsWithTagsTags {
    /// `tags.name` — never NULL by rule N2.
    pub name: String,
}
/// One row of `posts_with_tags`.
#[derive(Debug, Clone, PartialEq)]
pub struct PostsWithTagsRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `title` — never NULL by rule N1.
    pub title: String,
    /// `tags.*` — a to-many nested group, folded from the result rows.
    pub tags: Vec<PostsWithTagsTags>,
}
impl keelson_exec::FromRow for PostsWithTagsRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(PostsWithTagsRow {
            id: row.take("id")?,
            title: row.take("title")?,
            tags: {
                let name: Option<String> = row.take("tags.name")?;
                match (name,) {
                    (Some(name),) => Some(PostsWithTagsTags { name }),
                    _ => None,
                }
            }
                .into_iter()
                .collect::<Vec<_>>(),
        })
    }
}
/** `posts_with_tags` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct PostsWithTagsQuery {
    params: PostsWithTagsParams,
}
impl PostsWithTagsQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &PostsWithTagsParams {
        &self.params
    }
}
impl keelson_core::Expression for PostsWithTagsQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        w.push_str(&SOURCE[1959usize..2118usize]);
    }
}
impl keelson_core::Query for PostsWithTagsQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for PostsWithTagsQuery {}
/// The to-many nested shape.
///
/// Build `posts_with_tags` without running it.
pub fn posts_with_tags_query(
    params: impl Into<PostsWithTagsParams>,
) -> PostsWithTagsQuery {
    PostsWithTagsQuery {
        params: params.into(),
    }
}
/** Fold `posts_with_tags`'s flat result rows into their to-many groups.

Rows agreeing on every non-nested field are one row; the comparison is linear in the number of distinct parents, which is what keeps the generated code readable.*/
fn fold_posts_with_tags(rows: Vec<PostsWithTagsRow>) -> Vec<PostsWithTagsRow> {
    let mut out: Vec<PostsWithTagsRow> = Vec::with_capacity(rows.len());
    for mut row in rows {
        if let Some(kept) = out
            .iter_mut()
            .find(|kept| kept.id == row.id && kept.title == row.title)
        {
            kept.tags.append(&mut row.tags);
            continue;
        }
        out.push(row);
    }
    out
}
/// The to-many nested shape.
///
/// Run `posts_with_tags` and return every row.
pub async fn posts_with_tags(
    db: &dyn keelson_exec::Executor,
    params: impl Into<PostsWithTagsParams>,
) -> Result<Vec<PostsWithTagsRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    let rows = posts_with_tags_query(params).fetch_all::<PostsWithTagsRow>(db).await?;
    let rows = fold_posts_with_tags(rows);
    Ok(rows)
}
/** `posts_with_tags` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn posts_with_tags_mod(
    params: impl Into<PostsWithTagsParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let _ = params;
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[2008usize..2096usize]);
                            }),
                        ),
                    );
            }
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[2106usize..2118usize]);
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `user_by_id`.
#[derive(Debug, Clone, PartialEq)]
pub struct UserByIdParams {
    /// `$1` — type taken from the column it is compared with.
    pub id: i64,
}
impl UserByIdParams {
    /// The parameters in placeholder order.
    pub fn new(id: i64) -> Self {
        UserByIdParams { id }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.id)]
    }
}
impl From<i64> for UserByIdParams {
    fn from(v: i64) -> Self {
        UserByIdParams::new(v)
    }
}
/// One row of `user_by_id`.
#[derive(Debug, Clone, PartialEq)]
pub struct UserByIdRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `name` — never NULL by rule N1.
    pub name: String,
    /// `email` — nullable by rule N1.
    pub email: Option<String>,
    /// `age` — nullable by rule N1.
    pub age: Option<i64>,
    /// `is_active` — never NULL by rule N1.
    pub is_active: bool,
    /// `created_at` — never NULL by rule N1.
    pub created_at: chrono::NaiveDateTime,
}
impl keelson_exec::FromRow for UserByIdRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(UserByIdRow {
            id: row.take("id")?,
            name: row.take("name")?,
            email: row.take("email")?,
            age: row.take("age")?,
            is_active: row.take("is_active")?,
            created_at: row.take("created_at")?,
        })
    }
}
/** `user_by_id` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct UserByIdQuery {
    params: UserByIdParams,
}
impl UserByIdQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &UserByIdParams {
        &self.params
    }
}
impl keelson_core::Expression for UserByIdQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[2166usize..2255usize]);
        w.push_arg(args[0].clone());
    }
}
impl keelson_core::Query for UserByIdQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for UserByIdQuery {}
/// Exactly one row.
///
/// Build `user_by_id` without running it.
pub fn user_by_id_query(params: impl Into<UserByIdParams>) -> UserByIdQuery {
    UserByIdQuery {
        params: params.into(),
    }
}
/// Exactly one row.
///
/// Run `user_by_id` and return its single row.
pub async fn user_by_id(
    db: &dyn keelson_exec::Executor,
    params: impl Into<UserByIdParams>,
) -> Result<UserByIdRow, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    user_by_id_query(params).fetch_one::<UserByIdRow>(db).await
}
/** `user_by_id` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn user_by_id_mod(
    params: impl Into<UserByIdParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[2234usize..2241usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[2248usize..2255usize]);
                            w.push_arg(a0.clone());
                            w.push_str(")");
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `annotated`.
#[derive(Debug, Clone, PartialEq)]
pub struct AnnotatedParams {
    /// `$1` — type given by a `-- param:` annotation.
    pub title_pattern: String,
}
impl AnnotatedParams {
    /// The parameters in placeholder order.
    pub fn new(title_pattern: String) -> Self {
        AnnotatedParams { title_pattern }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.title_pattern.clone())]
    }
}
impl From<String> for AnnotatedParams {
    fn from(v: String) -> Self {
        AnnotatedParams::new(v)
    }
}
/// One row of `annotated`.
#[derive(Debug, Clone, PartialEq)]
pub struct AnnotatedRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `shouty` — never NULL by rule N16.
    pub shouty: String,
}
impl keelson_exec::FromRow for AnnotatedRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(AnnotatedRow {
            id: row.take("id")?,
            shouty: row.take("shouty")?,
        })
    }
}
/** `annotated` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct AnnotatedQuery {
    params: AnnotatedParams,
}
impl AnnotatedQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &AnnotatedParams {
        &self.params
    }
}
impl keelson_core::Expression for AnnotatedQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[2427usize..2497usize]);
        w.push_arg(args[0].clone());
        w.push_str(&SOURCE[2499usize..2513usize]);
    }
}
impl keelson_core::Query for AnnotatedQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for AnnotatedQuery {}
/// The annotations settle what inference will not guess.
///
/// Build `annotated` without running it.
pub fn annotated_query(params: impl Into<AnnotatedParams>) -> AnnotatedQuery {
    AnnotatedQuery {
        params: params.into(),
    }
}
/// The annotations settle what inference will not guess.
///
/// Run `annotated` and return every row.
pub async fn annotated(
    db: &dyn keelson_exec::Executor,
    params: impl Into<AnnotatedParams>,
) -> Result<Vec<AnnotatedRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    annotated_query(params).fetch_all::<AnnotatedRow>(db).await
}
/** `annotated` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn annotated_mod(
    params: impl Into<AnnotatedParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[2470usize..2477usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[2484usize..2497usize]);
                            w.push_arg(a0.clone());
                            w.push_str(")");
                        }),
                    ),
                );
        }
        {
            q.order_by
                .append_order(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str(&SOURCE[2509usize..2513usize]);
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `titles_union`.
#[derive(Debug, Clone, PartialEq, Default)]
pub struct TitlesUnionParams {}
impl TitlesUnionParams {
    /// The parameters in placeholder order.
    pub fn new() -> Self {
        TitlesUnionParams {}
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![]
    }
}
impl From<()> for TitlesUnionParams {
    fn from((): ()) -> Self {
        TitlesUnionParams::new()
    }
}
/// One row of `titles_union`.
#[derive(Debug, Clone, PartialEq)]
pub struct TitlesUnionRow {
    /// `title` — never NULL by rule N1.
    pub title: String,
}
impl keelson_exec::FromRow for TitlesUnionRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(TitlesUnionRow {
            title: row.take("title")?,
        })
    }
}
/** `titles_union` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct TitlesUnionQuery {
    params: TitlesUnionParams,
}
impl TitlesUnionQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &TitlesUnionParams {
        &self.params
    }
}
impl keelson_core::Expression for TitlesUnionQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        w.push_str(&SOURCE[2679usize..2760usize]);
    }
}
impl keelson_core::Query for TitlesUnionQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for TitlesUnionQuery {}
/// A compound select: the query face runs it (and rule N14 merges the arms'
/// nullability), while the mod face is refused in writing.
///
/// Build `titles_union` without running it.
pub fn titles_union_query(params: impl Into<TitlesUnionParams>) -> TitlesUnionQuery {
    TitlesUnionQuery {
        params: params.into(),
    }
}
/// A compound select: the query face runs it (and rule N14 merges the arms'
/// nullability), while the mod face is refused in writing.
///
/// Run `titles_union` and return every row.
pub async fn titles_union(
    db: &dyn keelson_exec::Executor,
    params: impl Into<TitlesUnionParams>,
) -> Result<Vec<TitlesUnionRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    titles_union_query(params).fetch_all::<TitlesUnionRow>(db).await
}
/// `titles_union` has no mod face: a set operation has no single WHERE/FROM to merge into a host statement.
///
/// The query face above still runs it. Nesting it as a sub-select would
/// not be the same statement, so the generator refuses rather than
/// pretending.
const _: () = ();
/// Parameters of `user_by_email`.
#[derive(Debug, Clone, PartialEq)]
pub struct UserByEmailParams {
    /// `$1` — type taken from the column it is compared with.
    pub email: String,
}
impl UserByEmailParams {
    /// The parameters in placeholder order.
    pub fn new(email: String) -> Self {
        UserByEmailParams { email }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.email.clone())]
    }
}
impl From<String> for UserByEmailParams {
    fn from(v: String) -> Self {
        UserByEmailParams::new(v)
    }
}
/// One row of `user_by_email`.
#[derive(Debug, Clone, PartialEq)]
pub struct UserByEmailRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `name` — never NULL by rule N1.
    pub name: String,
}
impl keelson_exec::FromRow for UserByEmailRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(UserByEmailRow {
            id: row.take("id")?,
            name: row.take("name")?,
        })
    }
}
/** `user_by_email` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct UserByEmailQuery {
    params: UserByEmailParams,
}
impl UserByEmailQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &UserByEmailParams {
        &self.params
    }
}
impl keelson_core::Expression for UserByEmailQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[2816usize..2865usize]);
        w.push_arg(args[0].clone());
    }
}
impl keelson_core::Query for UserByEmailQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for UserByEmailQuery {}
/// Zero or one row.
///
/// Build `user_by_email` without running it.
pub fn user_by_email_query(params: impl Into<UserByEmailParams>) -> UserByEmailQuery {
    UserByEmailQuery {
        params: params.into(),
    }
}
/// Zero or one row.
///
/// Run `user_by_email` and return its row, if there is one.
pub async fn user_by_email(
    db: &dyn keelson_exec::Executor,
    params: impl Into<UserByEmailParams>,
) -> Result<Option<UserByEmailRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    user_by_email_query(params).fetch_optional::<UserByEmailRow>(db).await
}
/** `user_by_email` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn user_by_email_mod(
    params: impl Into<UserByEmailParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[2841usize..2848usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[2855usize..2865usize]);
                            w.push_arg(a0.clone());
                            w.push_str(")");
                        }),
                    ),
                );
        }
    })
}
/// Parameters of `bump_views`.
#[derive(Debug, Clone, PartialEq)]
pub struct BumpViewsParams {
    /// `$1` — type taken from the column it is compared with.
    pub id: i64,
}
impl BumpViewsParams {
    /// The parameters in placeholder order.
    pub fn new(id: i64) -> Self {
        BumpViewsParams { id }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.id)]
    }
}
impl From<i64> for BumpViewsParams {
    fn from(v: i64) -> Self {
        BumpViewsParams::new(v)
    }
}
/** `bump_views` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct BumpViewsQuery {
    params: BumpViewsParams,
}
impl BumpViewsQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &BumpViewsParams {
        &self.params
    }
}
impl keelson_core::Expression for BumpViewsQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[2956usize..3002usize]);
        w.push_arg(args[0].clone());
    }
}
impl keelson_core::Query for BumpViewsQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for BumpViewsQuery {}
/// Run for its side effect: no row struct, and no mod face.
///
/// Build `bump_views` without running it.
pub fn bump_views_query(params: impl Into<BumpViewsParams>) -> BumpViewsQuery {
    BumpViewsQuery {
        params: params.into(),
    }
}
/// Run for its side effect: no row struct, and no mod face.
///
/// Run `bump_views` for its side effect.
pub async fn bump_views(
    db: &dyn keelson_exec::Executor,
    params: impl Into<BumpViewsParams>,
) -> Result<keelson_exec::ExecResult, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    bump_views_query(params).execute(db).await
}
/// `bump_views` has no mod face: only a SELECT has a mod face: an INSERT/UPDATE/DELETE has no clause a host SELECT could absorb.
///
/// The query face above still runs it. Nesting it as a sub-select would
/// not be the same statement, so the generator refuses rather than
/// pretending.
const _: () = ();
/// Parameters of `hot_or_recent`.
#[derive(Debug, Clone, PartialEq)]
pub struct HotOrRecentParams {
    /// `$1` — type taken from the column it is compared with.
    pub views: i64,
}
impl HotOrRecentParams {
    /// The parameters in placeholder order.
    pub fn new(views: i64) -> Self {
        HotOrRecentParams { views }
    }
    /// The bound arguments, in placeholder order.
    ///
    /// Public deliberately: a query with no placeholders never calls
    /// this, and a *private* method nothing calls is a `dead_code`
    /// warning in a generated file the application cannot edit.
    pub fn args(&self) -> Vec<keelson_core::Value> {
        vec![keelson_core::ToValue::to_value(self.views)]
    }
}
impl From<i64> for HotOrRecentParams {
    fn from(v: i64) -> Self {
        HotOrRecentParams::new(v)
    }
}
/// One row of `hot_or_recent`.
#[derive(Debug, Clone, PartialEq)]
pub struct HotOrRecentRow {
    /// `id` — never NULL by rule N1.
    pub id: i64,
    /// `title` — never NULL by rule N1.
    pub title: String,
}
impl keelson_exec::FromRow for HotOrRecentRow {
    fn from_row(row: &mut keelson_exec::Row) -> Result<Self, keelson_exec::ExecError> {
        Ok(HotOrRecentRow {
            id: row.take("id")?,
            title: row.take("title")?,
        })
    }
}
/** `hot_or_recent` as a query object: the file's own SQL, run as written.

Placeholders are re-bound through the writer, so the statement composes as a sub-select without re-numbering by hand.*/
#[derive(Debug, Clone)]
pub struct HotOrRecentQuery {
    params: HotOrRecentParams,
}
impl HotOrRecentQuery {
    /// The parameters this query was built with.
    pub fn params(&self) -> &HotOrRecentParams {
        &self.params
    }
}
impl keelson_core::Expression for HotOrRecentQuery {
    fn write_sql(&self, w: &mut keelson_core::SqlWriter<'_>) {
        let args = self.params.args();
        w.push_str(&SOURCE[3181usize..3231usize]);
        w.push_arg(args[0].clone());
        w.push_str(&SOURCE[3233usize..3259usize]);
    }
}
impl keelson_core::Query for HotOrRecentQuery {
    fn query_type(&self) -> keelson_core::QueryType {
        keelson_core::QueryType::Select
    }
    fn dialect(&self) -> &dyn keelson_core::Dialect {
        &keelson_sqlite::Sqlite
    }
}
impl<H, L, M> keelson_core::QueryExtensions<H, L, M> for HotOrRecentQuery {}
/// A top-level `OR` in the WHERE: as a mod it merges into the host's `AND`
/// chain, so the fragment has to arrive parenthesised or it re-binds.
///
/// Build `hot_or_recent` without running it.
pub fn hot_or_recent_query(params: impl Into<HotOrRecentParams>) -> HotOrRecentQuery {
    HotOrRecentQuery {
        params: params.into(),
    }
}
/// A top-level `OR` in the WHERE: as a mod it merges into the host's `AND`
/// chain, so the fragment has to arrive parenthesised or it re-binds.
///
/// Run `hot_or_recent` and return every row.
pub async fn hot_or_recent(
    db: &dyn keelson_exec::Executor,
    params: impl Into<HotOrRecentParams>,
) -> Result<Vec<HotOrRecentRow>, keelson_exec::ExecError> {
    use keelson_exec::Execute as _;
    hot_or_recent_query(params).fetch_all::<HotOrRecentRow>(db).await
}
/** `hot_or_recent` as a mod: its clauses merged into the host statement, flat.

The `WHERE` is `AND`ed onto the host's; the `FROM` (joins included) is contributed only when the host has none of its own, so a model query on the same table keeps its own. Nothing nests as a sub-select — that flatness is the point.

The select list is deliberately **not** contributed: the host statement owns its projection, which is what lets a typed model query and this mod sit in the same tuple.*/
pub fn hot_or_recent_mod(
    params: impl Into<HotOrRecentParams>,
) -> impl keelson_core::Mod<keelson_sqlite::SelectQuery> {
    let args = params.into().args();
    keelson_core::mod_fn(move |q: &mut keelson_sqlite::SelectQuery| {
        {
            if q.from.expression.is_none() {
                q.from
                    .set_table(
                        keelson_core::dyn_expr(
                            keelson_core::expr_fn(move |
                                w: &mut keelson_core::SqlWriter<'_>|
                            {
                                w.push_str(&SOURCE[3207usize..3214usize]);
                            }),
                        ),
                    );
            }
        }
        {
            let a0 = args[0].clone();
            q.where_
                .append_where(
                    keelson_core::dyn_expr(
                        keelson_core::expr_fn(move |w: &mut keelson_core::SqlWriter<'_>| {
                            w.push_str("(");
                            w.push_str(&SOURCE[3221usize..3231usize]);
                            w.push_arg(a0.clone());
                            w.push_str(&SOURCE[3233usize..3259usize]);
                            w.push_str(")");
                        }),
                    ),
                );
        }
    })
}