reinhardt-query 0.1.0

SQL query builder for Reinhardt framework
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
//! Query statement builders
//!
//! This module provides builders for SQL query statements (SELECT, INSERT, UPDATE, DELETE)
//! and DDL statements (CREATE/ALTER/DROP for tables, indexes, views, schemas, sequences, databases).
//!
//! # DML Usage
//!
//! - Query Select: [`SelectStatement`]
//! - Query Insert: [`InsertStatement`]
//! - Query Update: [`UpdateStatement`]
//! - Query Delete: [`DeleteStatement`]
//!
//! # DDL Usage - Table Operations
//!
//! - Create Table: [`CreateTableStatement`]
//! - Alter Table: [`AlterTableStatement`]
//! - Drop Table: [`DropTableStatement`]
//!
//! # DDL Usage - Index Operations
//!
//! - Create Index: [`CreateIndexStatement`]
//! - Alter Index: [`AlterIndexStatement`]
//! - Drop Index: [`DropIndexStatement`]
//! - Reindex: [`ReindexStatement`]
//!
//! # DDL Usage - View Operations
//!
//! - Create View: [`CreateViewStatement`]
//! - Drop View: [`DropViewStatement`]
//!
//! # DDL Usage - Schema Operations
//!
//! - Create Schema: [`CreateSchemaStatement`]
//! - Alter Schema: [`AlterSchemaStatement`]
//! - Drop Schema: [`DropSchemaStatement`]
//!
//! # DDL Usage - Sequence Operations
//!
//! - Create Sequence: [`CreateSequenceStatement`]
//! - Alter Sequence: [`AlterSequenceStatement`]
//! - Drop Sequence: [`DropSequenceStatement`]
//!
//! # DDL Usage - Database Operations
//!
//! - Create Database: [`CreateDatabaseStatement`]
//! - Alter Database: [`AlterDatabaseStatement`]
//! - Drop Database: [`DropDatabaseStatement`]
//!
//! # DDL Usage - Comment Operations
//!
//! - Comment: [`CommentStatement`]
//!
//! # Examples
//!
//! ```rust,ignore
//! use reinhardt_query::prelude::*;
//!
//! // SELECT query
//! let select_query = Query::select()
//!     .column(Expr::col("name"))
//!     .from("users")
//!     .and_where(Expr::col("active").eq(true));
//!
//! // INSERT query
//! let insert_query = Query::insert()
//!     .into_table("users")
//!     .columns(["name", "email"])
//!     .values_panic(["Alice", "alice@example.com"]);
//!
//! // UPDATE query
//! let update_query = Query::update()
//!     .table("users")
//!     .value("active", false)
//!     .and_where(Expr::col("id").eq(1));
//!
//! // DELETE query
//! let delete_query = Query::delete()
//!     .from_table("users")
//!     .and_where(Expr::col("active").eq(false));
//! ```

pub mod alter_index;
pub mod alter_table;
pub mod comment;
pub mod create_index;
pub mod create_table;
pub mod create_trigger;
pub mod create_view;
pub mod database;
pub mod delete;
pub mod drop_index;
pub mod drop_table;
pub mod drop_trigger;
pub mod drop_view;
pub mod event;
pub mod foreign_key;
pub mod function;
pub mod insert;
pub mod maintenance;
pub mod materialized_view;
pub mod on_conflict;
pub mod procedure;
pub mod reindex;
pub mod returning;
pub mod schema;
pub mod select;
pub mod sequence;
pub mod traits;
pub mod truncate_table;
pub mod type_def;
pub mod update;

// Re-export all public types from submodules
pub use alter_index::AlterIndexStatement;
pub use alter_table::{AlterTableOperation, AlterTableStatement};
pub use comment::CommentStatement;
pub use create_index::{CreateIndexStatement, IndexColumn, IndexMethod};
pub use create_table::CreateTableStatement;
pub use create_trigger::CreateTriggerStatement;
pub use create_view::CreateViewStatement;
pub use database::{
	AlterDatabaseStatement, AttachDatabaseStatement, CreateDatabaseStatement,
	DetachDatabaseStatement, DropDatabaseStatement,
};
pub use delete::DeleteStatement;
pub use drop_index::DropIndexStatement;
pub use drop_table::DropTableStatement;
pub use drop_trigger::DropTriggerStatement;
pub use drop_view::DropViewStatement;
pub use event::{AlterEventStatement, CreateEventStatement, DropEventStatement};
pub use foreign_key::{ForeignKey, ForeignKeyCreateStatement};
pub use function::{AlterFunctionStatement, CreateFunctionStatement, DropFunctionStatement};
pub use insert::{InsertSource, InsertStatement};
pub use maintenance::{
	AnalyzeStatement, CheckTableStatement, OptimizeTableStatement, RepairTableStatement,
	VacuumStatement,
};
pub use materialized_view::{
	AlterMaterializedViewStatement, CreateMaterializedViewStatement, DropMaterializedViewStatement,
	RefreshMaterializedViewStatement,
};
pub use on_conflict::{OnConflict, OnConflictAction, OnConflictTarget};
pub use procedure::{AlterProcedureStatement, CreateProcedureStatement, DropProcedureStatement};
pub use reindex::{ReindexStatement, ReindexTarget};
pub use returning::ReturningClause;
pub use schema::{
	AlterSchemaOperation, AlterSchemaStatement, CreateSchemaStatement, DropSchemaStatement,
};
pub use select::{
	CommonTableExpr, LockClause, SelectDistinct, SelectExpr, SelectStatement, UnionType,
};
pub use sequence::{AlterSequenceStatement, CreateSequenceStatement, DropSequenceStatement};
pub use traits::{QueryBuilderTrait, QueryStatementBuilder, QueryStatementWriter};
pub use truncate_table::TruncateTableStatement;
pub use type_def::{AlterTypeStatement, CreateTypeStatement, DropTypeStatement};
pub use update::UpdateStatement;

/// Shorthand for constructing any table query
///
/// This struct provides static constructor methods for creating query statements.
///
/// # Examples
///
/// ```rust,ignore
/// use reinhardt_query::prelude::*;
///
/// // Create a SELECT statement
/// let select = Query::select()
///     .column(Expr::col("id"))
///     .column(Expr::col("name"))
///     .from("users");
///
/// // Create an INSERT statement
/// let insert = Query::insert()
///     .into_table("users")
///     .columns(["name", "email"])
///     .values(["Alice"]);
///
/// // Create an UPDATE statement
/// let update = Query::update()
///     .table("users")
///     .value("name", "Bob")
///     .and_where(Expr::col("id").eq(1));
///
/// // Create a DELETE statement
/// let delete = Query::delete()
///     .from_table("users")
///     .and_where(Expr::col("id").eq(1));
/// ```
#[derive(Debug, Clone)]
pub struct Query;

impl Query {
	/// Construct a new [`SelectStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::select()
	///     .column(Expr::col("id"))
	///     .column(Expr::col("name"))
	///     .from("users");
	/// ```
	pub fn select() -> SelectStatement {
		SelectStatement::new()
	}

	/// Construct a new [`InsertStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::insert()
	///     .into_table("users")
	///     .columns(["name", "email"])
	///     .values(["Alice"]);
	/// ```
	pub fn insert() -> InsertStatement {
		InsertStatement::new()
	}

	/// Construct a new [`UpdateStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::update()
	///     .table("users")
	///     .value("name", "Bob")
	///     .and_where(Expr::col("id").eq(1));
	/// ```
	pub fn update() -> UpdateStatement {
		UpdateStatement::new()
	}

	/// Construct a new [`DeleteStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::delete()
	///     .from_table("users")
	///     .and_where(Expr::col("id").eq(1));
	/// ```
	pub fn delete() -> DeleteStatement {
		DeleteStatement::new()
	}

	/// Construct a new [`CreateTableStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::ddl::{ColumnDef, ColumnType};
	///
	/// let query = Query::create_table()
	///     .table("users")
	///     .if_not_exists()
	///     .col(
	///         ColumnDef::new("id")
	///             .column_type(ColumnType::Integer)
	///             .primary_key(true)
	///     );
	/// ```
	pub fn create_table() -> CreateTableStatement {
		CreateTableStatement::new()
	}

	/// Construct a new [`AlterTableStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::ddl::{ColumnDef, ColumnType};
	///
	/// let query = Query::alter_table()
	///     .table("users")
	///     .add_column(
	///         ColumnDef::new("age")
	///             .column_type(ColumnType::Integer)
	///     );
	/// ```
	pub fn alter_table() -> AlterTableStatement {
		AlterTableStatement::new()
	}

	/// Construct a new [`DropTableStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::drop_table()
	///     .table("users")
	///     .if_exists();
	/// ```
	pub fn drop_table() -> DropTableStatement {
		DropTableStatement::new()
	}

	/// Construct a new [`CreateIndexStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::create_index()
	///     .name("idx_email")
	///     .table("users")
	///     .col("email")
	///     .unique();
	/// ```
	pub fn create_index() -> CreateIndexStatement {
		CreateIndexStatement::new()
	}

	/// Construct a new [`DropIndexStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::drop_index()
	///     .name("idx_email")
	///     .table("users")
	///     .if_exists();
	/// ```
	pub fn drop_index() -> DropIndexStatement {
		DropIndexStatement::new()
	}

	/// Construct a new [`CreateViewStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let select = Query::select()
	///     .column(Expr::col("name"))
	///     .from("users");
	///
	/// let query = Query::create_view()
	///     .name("user_names")
	///     .as_select(select)
	///     .if_not_exists();
	/// ```
	pub fn create_view() -> CreateViewStatement {
		CreateViewStatement::new()
	}

	/// Construct a new [`DropViewStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::drop_view()
	///     .name("user_names")
	///     .if_exists();
	/// ```
	pub fn drop_view() -> DropViewStatement {
		DropViewStatement::new()
	}

	/// Construct a new [`TruncateTableStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::truncate_table()
	///     .table("users");
	/// ```
	pub fn truncate_table() -> TruncateTableStatement {
		TruncateTableStatement::new()
	}

	/// Construct a new [`CreateTriggerStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::{TriggerTiming, TriggerEvent, TriggerScope};
	///
	/// let query = Query::create_trigger()
	///     .name("audit_insert")
	///     .timing(TriggerTiming::After)
	///     .event(TriggerEvent::Insert)
	///     .on_table("users")
	///     .for_each(TriggerScope::Row)
	///     .execute_function("audit_log_insert");
	/// ```
	pub fn create_trigger() -> CreateTriggerStatement {
		CreateTriggerStatement::new()
	}

	/// Construct a new [`DropTriggerStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::drop_trigger()
	///     .name("audit_insert")
	///     .on_table("users")
	///     .if_exists();
	/// ```
	pub fn drop_trigger() -> DropTriggerStatement {
		DropTriggerStatement::new()
	}

	/// Construct a new [`AlterIndexStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // PostgreSQL: Rename index
	/// let query = Query::alter_index()
	///     .name("idx_users_email")
	///     .rename_to("idx_users_email_new");
	///
	/// // MySQL: Rename index (requires table name)
	/// let query = Query::alter_index()
	///     .table("users")
	///     .name("idx_email")
	///     .rename_to("idx_email_new");
	/// ```
	pub fn alter_index() -> AlterIndexStatement {
		AlterIndexStatement::new()
	}

	/// Construct a new [`ReindexStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Reindex a specific index
	/// let query = Query::reindex()
	///     .index("idx_users_email");
	///
	/// // Reindex all indexes in a table
	/// let query = Query::reindex()
	///     .table("users");
	/// ```
	pub fn reindex() -> ReindexStatement {
		ReindexStatement::new()
	}

	/// Construct a new [`CreateSchemaStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // CREATE SCHEMA my_schema
	/// let query = Query::create_schema()
	///     .name("my_schema");
	///
	/// // CREATE SCHEMA IF NOT EXISTS my_schema AUTHORIZATION owner_user
	/// let query = Query::create_schema()
	///     .name("my_schema")
	///     .if_not_exists()
	///     .authorization("owner_user");
	/// ```
	pub fn create_schema() -> CreateSchemaStatement {
		CreateSchemaStatement::new()
	}

	/// Construct a new [`AlterSchemaStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ALTER SCHEMA old_name RENAME TO new_name
	/// let query = Query::alter_schema()
	///     .name("old_name")
	///     .rename_to("new_name");
	///
	/// // ALTER SCHEMA my_schema OWNER TO new_owner
	/// let query = Query::alter_schema()
	///     .name("my_schema")
	///     .owner_to("new_owner");
	/// ```
	pub fn alter_schema() -> AlterSchemaStatement {
		AlterSchemaStatement::new()
	}

	/// Construct a new [`DropSchemaStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP SCHEMA my_schema
	/// let query = Query::drop_schema()
	///     .name("my_schema");
	///
	/// // DROP SCHEMA IF EXISTS my_schema CASCADE
	/// let query = Query::drop_schema()
	///     .name("my_schema")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_schema() -> DropSchemaStatement {
		DropSchemaStatement::new()
	}

	/// Construct a new [`CreateSequenceStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // CREATE SEQUENCE user_id_seq
	/// let query = Query::create_sequence()
	///     .name("user_id_seq");
	///
	/// // CREATE SEQUENCE user_id_seq START WITH 1000 INCREMENT BY 1
	/// let query = Query::create_sequence()
	///     .name("user_id_seq")
	///     .start_with(1000)
	///     .increment_by(1);
	/// ```
	pub fn create_sequence() -> CreateSequenceStatement {
		CreateSequenceStatement::new()
	}

	/// Construct a new [`AlterSequenceStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ALTER SEQUENCE user_id_seq RESTART WITH 2000
	/// let query = Query::alter_sequence()
	///     .name("user_id_seq")
	///     .restart_with(2000);
	///
	/// // ALTER SEQUENCE user_id_seq RENAME TO new_user_id_seq
	/// let query = Query::alter_sequence()
	///     .name("user_id_seq")
	///     .rename_to("new_user_id_seq");
	/// ```
	pub fn alter_sequence() -> AlterSequenceStatement {
		AlterSequenceStatement::new()
	}

	/// Construct a new [`DropSequenceStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP SEQUENCE user_id_seq
	/// let query = Query::drop_sequence()
	///     .name("user_id_seq");
	///
	/// // DROP SEQUENCE IF EXISTS user_id_seq CASCADE
	/// let query = Query::drop_sequence()
	///     .name("user_id_seq")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_sequence() -> DropSequenceStatement {
		DropSequenceStatement::new()
	}

	/// Construct a new [`CommentStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::CommentTarget;
	///
	/// // COMMENT ON TABLE "users" IS 'User account information'
	/// let query = Query::comment()
	///     .target(CommentTarget::Table("users".into_iden()))
	///     .comment("User account information");
	///
	/// // COMMENT ON COLUMN "users"."email" IS 'User email address'
	/// let query = Query::comment()
	///     .target(CommentTarget::Column("users".into_iden(), "email".into_iden()))
	///     .comment("User email address");
	/// ```
	pub fn comment() -> CommentStatement {
		CommentStatement::new()
	}

	/// Construct a new [`AlterDatabaseStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ALTER DATABASE mydb RENAME TO newdb
	/// let query = Query::alter_database()
	///     .name("mydb")
	///     .rename_to("newdb");
	///
	/// // CockroachDB: ALTER DATABASE mydb ADD REGION 'us-west-1'
	/// let query = Query::alter_database()
	///     .name("mydb")
	///     .add_region("us-west-1");
	/// ```
	pub fn alter_database() -> AlterDatabaseStatement {
		AlterDatabaseStatement::new()
	}

	/// Construct a new [`CreateDatabaseStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::create_database()
	///     .name("testdb")
	/// ```
	pub fn create_database() -> CreateDatabaseStatement {
		CreateDatabaseStatement::new()
	}

	/// Construct a new [`DropDatabaseStatement`]
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP DATABASE mydb
	/// let query = Query::drop_database()
	///     .name("mydb");
	/// ```
	pub fn drop_database() -> DropDatabaseStatement {
		DropDatabaseStatement::new()
	}

	/// Construct a new [`OptimizeTableStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // OPTIMIZE TABLE users
	/// let query = Query::optimize_table()
	///     .table("users");
	///
	/// // OPTIMIZE TABLE users, posts
	/// let query = Query::optimize_table()
	///     .table("users")
	///     .table("posts");
	/// ```
	pub fn optimize_table() -> OptimizeTableStatement {
		OptimizeTableStatement::new()
	}

	/// Construct a new [`RepairTableStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // REPAIR TABLE users
	/// let query = Query::repair_table()
	///     .table("users");
	///
	/// // REPAIR TABLE QUICK users
	/// let query = Query::repair_table()
	///     .table("users")
	///     .quick();
	/// ```
	pub fn repair_table() -> RepairTableStatement {
		RepairTableStatement::new()
	}

	/// Construct a new [`CheckTableStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::CheckTableOption;
	///
	/// // CHECK TABLE users
	/// let query = Query::check_table()
	///     .table("users");
	///
	/// // CHECK TABLE users QUICK
	/// let query = Query::check_table()
	///     .table("users")
	///     .option(CheckTableOption::Quick);
	/// ```
	pub fn check_table() -> CheckTableStatement {
		CheckTableStatement::new()
	}

	/// Construct a new [`CreateEventStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::{TriggerTiming, TriggerEvent, TriggerScope};
	///
	/// // CREATE EVENT cleanup_logs
	/// let query = Query::create_event()
	///     .name("cleanup_logs")
	///     .on_schedule_every("1 DAY")
	///     .do_body("DELETE FROM logs WHERE created_at < NOW() - INTERVAL 7 DAY");
	/// ```
	pub fn create_event() -> CreateEventStatement {
		CreateEventStatement::new()
	}

	/// Construct a new [`AlterEventStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ALTER EVENT cleanup_logs RENAME TO purge_old_logs
	/// let query = Query::alter_event()
	///     .name("cleanup_logs")
	///     .rename_to("purge_old_logs");
	/// ```
	pub fn alter_event() -> AlterEventStatement {
		AlterEventStatement::new()
	}

	/// Construct a new [`DropEventStatement`]
	///
	/// **MySQL-only feature**: This statement is specific to MySQL.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP EVENT cleanup_logs
	/// let query = Query::drop_event()
	///     .name("cleanup_logs")
	///     .if_exists();
	/// ```
	pub fn drop_event() -> DropEventStatement {
		DropEventStatement::new()
	}

	/// Construct a new [`CreateFunctionStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::function::FunctionLanguage;
	///
	/// // Basic SQL function:
	///
	/// let query = Query::create_function()
	///     .name("add_one")
	///     .add_parameter("x", "integer")
	///     .returns("integer")
	///     .language(FunctionLanguage::Sql)
	///     .body("SELECT $1 + 1");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::function::*;
	///
	/// // PL/pgSQL function with OR REPLACE and options:
	///
	/// let query = Query::create_function()
	///     .name("calculate_total")
	///     .or_replace()
	///     .add_parameter("price", "numeric")
	///     .add_parameter("quantity", "integer")
	///     .returns("numeric")
	///     .language(FunctionLanguage::PlPgSql)
	///     .behavior(FunctionBehavior::Immutable)
	///     .security(FunctionSecurity::Definer)
	///     .body("BEGIN RETURN price * quantity; END;");
	/// ```
	pub fn create_function() -> CreateFunctionStatement {
		CreateFunctionStatement::new()
	}

	/// Construct a new [`AlterFunctionStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Rename function:
	///
	/// let query = Query::alter_function()
	///     .name("old_func")
	///     .rename_to("new_func");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Change function owner:
	///
	/// let query = Query::alter_function()
	///     .name("my_func")
	///     .owner_to("new_owner");
	/// ```
	pub fn alter_function() -> AlterFunctionStatement {
		AlterFunctionStatement::new()
	}

	/// Construct a new [`DropFunctionStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Simple DROP FUNCTION:
	///
	/// let query = Query::drop_function()
	///     .name("my_func");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP FUNCTION with IF EXISTS and CASCADE:
	///
	/// let query = Query::drop_function()
	///     .name("my_func")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_function() -> DropFunctionStatement {
		DropFunctionStatement::new()
	}

	/// Construct a new [`CreateProcedureStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::function::FunctionLanguage;
	///
	/// // Basic SQL procedure:
	///
	/// let query = Query::create_procedure()
	///     .name("log_event")
	///     .add_parameter("message", "text")
	///     .language(FunctionLanguage::Sql)
	///     .body("INSERT INTO event_log (message) VALUES ($1)");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::types::function::*;
	///
	/// // PL/pgSQL procedure with OR REPLACE and options:
	///
	/// let query = Query::create_procedure()
	///     .name("update_inventory")
	///     .or_replace()
	///     .add_parameter("product_id", "integer")
	///     .add_parameter("quantity", "integer")
	///     .language(FunctionLanguage::PlPgSql)
	///     .behavior(FunctionBehavior::Volatile)
	///     .security(FunctionSecurity::Invoker)
	///     .body("BEGIN UPDATE inventory SET stock = stock - quantity WHERE id = product_id; END;");
	/// ```
	pub fn create_procedure() -> CreateProcedureStatement {
		CreateProcedureStatement::new()
	}

	/// Construct a new [`AlterProcedureStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Rename procedure:
	///
	/// let query = Query::alter_procedure()
	///     .name("old_proc")
	///     .rename_to("new_proc");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Change procedure owner:
	///
	/// let query = Query::alter_procedure()
	///     .name("my_proc")
	///     .owner_to("new_owner");
	/// ```
	pub fn alter_procedure() -> AlterProcedureStatement {
		AlterProcedureStatement::new()
	}

	/// Construct a new [`DropProcedureStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, CockroachDB only.
	/// SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Simple DROP PROCEDURE:
	///
	/// let query = Query::drop_procedure()
	///     .name("my_proc");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP PROCEDURE with IF EXISTS and CASCADE:
	///
	/// let query = Query::drop_procedure()
	///     .name("my_proc")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_procedure() -> DropProcedureStatement {
		DropProcedureStatement::new()
	}

	/// Construct a new [`CreateTypeStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Create ENUM type:
	///
	/// let query = Query::create_type()
	///     .name("mood")
	///     .as_enum(vec!["happy".to_string(), "sad".to_string(), "neutral".to_string()]);
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Create COMPOSITE type:
	///
	/// let query = Query::create_type()
	///     .name("address")
	///     .as_composite(vec![
	///         ("street".to_string(), "text".to_string()),
	///         ("city".to_string(), "varchar(10)".to_string()),
	///         ("zip".to_string(), "varchar(10)".to_string()),
	///     ]);
	/// ```
	pub fn create_type() -> CreateTypeStatement {
		CreateTypeStatement::new()
	}

	/// Construct a new [`AlterTypeStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Add value to ENUM type:
	///
	/// let query = Query::alter_type()
	///     .name("mood")
	///     .add_value("excited", Some("happy"));
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Rename type:
	///
	/// let query = Query::alter_type()
	///     .name("old_type")
	///     .rename_to("new_type");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Rename ENUM value:
	///
	/// let query = Query::alter_type()
	///     .name("mood")
	///     .rename_value("happy", "joyful");
	/// ```
	pub fn alter_type() -> AlterTypeStatement {
		AlterTypeStatement::new()
	}

	/// Construct a new [`DropTypeStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // Simple DROP TYPE:
	///
	/// let query = Query::drop_type()
	///     .name("mood");
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP TYPE with IF EXISTS and CASCADE:
	///
	/// let query = Query::drop_type()
	///     .name("mood")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_type() -> DropTypeStatement {
		DropTypeStatement::new()
	}

	/// Construct a new [`VacuumStatement`]
	///
	/// **Backend support**: PostgreSQL, SQLite, CockroachDB only.
	/// MySQL will panic with a helpful message (use `Query::optimize_table()` instead).
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // VACUUM (all tables)
	/// let query = Query::vacuum();
	///
	/// // VACUUM users
	/// let query = Query::vacuum()
	///     .table("users");
	///
	/// // VACUUM FULL ANALYZE users
	/// let query = Query::vacuum()
	///     .table("users")
	///     .full()
	///     .analyze();
	/// ```
	pub fn vacuum() -> VacuumStatement {
		VacuumStatement::new()
	}

	/// Construct a new [`AnalyzeStatement`]
	///
	/// **Backend support**: PostgreSQL, MySQL, SQLite, CockroachDB.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ANALYZE (all tables)
	/// let query = Query::analyze();
	///
	/// // ANALYZE users
	/// let query = Query::analyze()
	///     .table("users");
	///
	/// // ANALYZE VERBOSE users
	/// let query = Query::analyze()
	///     .table("users")
	///     .verbose();
	///
	/// // ANALYZE users (email, name)
	/// let query = Query::analyze()
	///     .table_columns("users", ["email", "name"]);
	/// ```
	pub fn analyze() -> AnalyzeStatement {
		AnalyzeStatement::new()
	}

	/// Construct a new [`CreateMaterializedViewStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let select = Query::select()
	///     .column(Expr::col("id"))
	///     .column(Expr::col("name"))
	///     .from("users")
	///     .and_where(Expr::col("active").eq(true));
	///
	/// let query = Query::create_materialized_view()
	///     .name("active_users")
	///     .as_select(select)
	///     .if_not_exists();
	/// ```
	pub fn create_materialized_view() -> CreateMaterializedViewStatement {
		CreateMaterializedViewStatement::new()
	}

	/// Construct a new [`AlterMaterializedViewStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ALTER MATERIALIZED VIEW old_mv RENAME TO new_mv
	/// let query = Query::alter_materialized_view()
	///     .name("old_mv")
	///     .rename_to("new_mv");
	///
	/// // ALTER MATERIALIZED VIEW my_mv OWNER TO new_owner
	/// let query = Query::alter_materialized_view()
	///     .name("my_mv")
	///     .owner_to("new_owner");
	/// ```
	pub fn alter_materialized_view() -> AlterMaterializedViewStatement {
		AlterMaterializedViewStatement::new()
	}

	/// Construct a new [`DropMaterializedViewStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DROP MATERIALIZED VIEW my_mv
	/// let query = Query::drop_materialized_view()
	///     .name("my_mv");
	///
	/// // DROP MATERIALIZED VIEW IF EXISTS my_mv CASCADE
	/// let query = Query::drop_materialized_view()
	///     .name("my_mv")
	///     .if_exists()
	///     .cascade();
	/// ```
	pub fn drop_materialized_view() -> DropMaterializedViewStatement {
		DropMaterializedViewStatement::new()
	}

	/// Construct a new [`RefreshMaterializedViewStatement`]
	///
	/// **Backend support**: PostgreSQL, CockroachDB only.
	/// MySQL and SQLite will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // REFRESH MATERIALIZED VIEW my_mv
	/// let query = Query::refresh_materialized_view()
	///     .name("my_mv");
	///
	/// // REFRESH MATERIALIZED VIEW CONCURRENTLY my_mv
	/// let query = Query::refresh_materialized_view()
	///     .name("my_mv")
	///     .concurrently();
	///
	/// // REFRESH MATERIALIZED VIEW my_mv WITH NO DATA
	/// let query = Query::refresh_materialized_view()
	///     .name("my_mv")
	///     .with_data(false);
	/// ```
	pub fn refresh_materialized_view() -> RefreshMaterializedViewStatement {
		RefreshMaterializedViewStatement::new()
	}

	/// Construct a new [`AttachDatabaseStatement`]
	///
	/// **SQLite-only feature**: This statement is specific to SQLite.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // ATTACH DATABASE 'other.db' AS other_db
	///
	/// let query = Query::attach_database()
	///     .file_path("other.db")
	///     .schema_name("other_db");
	/// ```
	pub fn attach_database() -> AttachDatabaseStatement {
		AttachDatabaseStatement::new()
	}

	/// Construct a new [`DetachDatabaseStatement`]
	///
	/// **SQLite-only feature**: This statement is specific to SQLite.
	/// Other backends will panic with a helpful message.
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// // DETACH DATABASE other_db
	///
	/// let query = Query::detach_database()
	///     .schema_name("other_db");
	/// ```
	pub fn detach_database() -> DetachDatabaseStatement {
		DetachDatabaseStatement::new()
	}

	/// Construct a new GRANT statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::{GrantStatement, Privilege};
	///
	/// let grant = Query::grant()
	///     .privilege(Privilege::Select)
	///     .on_table("users")
	///     .to("app_user");
	/// ```
	pub fn grant() -> crate::dcl::GrantStatement {
		crate::dcl::GrantStatement::new()
	}

	/// Construct a new REVOKE statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::{RevokeStatement, Privilege};
	///
	/// let revoke = Query::revoke()
	///     .privilege(Privilege::Insert)
	///     .from_table("users")
	///     .from("app_user");
	/// ```
	pub fn revoke() -> crate::dcl::RevokeStatement {
		crate::dcl::RevokeStatement::new()
	}

	/// Construct a new CREATE ROLE statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::{CreateRoleStatement, RoleAttribute};
	///
	/// let create_role = Query::create_role()
	///     .role("developer")
	///     .attribute(RoleAttribute::Login)
	///     .attribute(RoleAttribute::Password("secret".to_string()));
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::*;
	///
	/// // MySQL CREATE ROLE:
	///
	/// let query = Query::create_role()
	///     .role("app_role")
	///     .if_not_exists(true)
	///     .option(UserOption::Comment("Application role".to_string()));
	/// ```
	pub fn create_role() -> crate::dcl::CreateRoleStatement {
		crate::dcl::CreateRoleStatement::new()
	}

	/// Construct a new DROP ROLE statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::DropRoleStatement;
	///
	/// let drop_role = Query::drop_role()
	///     .role("old_role")
	///     .if_exists(true);
	/// ```
	pub fn drop_role() -> crate::dcl::DropRoleStatement {
		crate::dcl::DropRoleStatement::new()
	}

	/// Construct a new ALTER ROLE statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::{AlterRoleStatement, RoleAttribute};
	///
	/// // PostgreSQL:
	///
	/// let query = Query::alter_role()
	///     .role("developer")
	///     .attribute(RoleAttribute::NoLogin);
	/// ```
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	/// use reinhardt_query::dcl::*;
	///
	/// // MySQL:
	///
	/// let query = Query::alter_role()
	///     .role("app_role")
	///     .option(UserOption::AccountLock);
	/// ```
	pub fn alter_role() -> crate::dcl::AlterRoleStatement {
		crate::dcl::AlterRoleStatement::new()
	}

	/// Construct a new SET ROLE statement (PostgreSQL only)
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::set_role()
	///     .role_name("developer")
	/// ```
	pub fn set_role() -> crate::dcl::SetRoleStatement {
		crate::dcl::SetRoleStatement::new()
	}

	/// Construct a new RESET ROLE statement (PostgreSQL only)
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::reset_role()
	///     .role_name("developer")
	/// ```
	pub fn reset_role() -> crate::dcl::ResetRoleStatement {
		crate::dcl::ResetRoleStatement::new()
	}

	/// Construct a new SET DEFAULT ROLE statement (MySQL only)
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::prelude::*;
	///
	/// let query = Query::set_default_role()
	///     .role_name("developer")
	/// ```
	pub fn set_default_role() -> crate::dcl::SetDefaultRoleStatement {
		crate::dcl::SetDefaultRoleStatement::new()
	}

	/// Construct a new CREATE USER statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::query::Query;
	///
	/// let stmt = Query::create_user();
	/// ```
	pub fn create_user() -> crate::dcl::CreateUserStatement {
		crate::dcl::CreateUserStatement::new()
	}

	/// Construct a new DROP USER statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::query::Query;
	///
	/// let stmt = Query::drop_user();
	/// ```
	pub fn drop_user() -> crate::dcl::DropUserStatement {
		crate::dcl::DropUserStatement::new()
	}

	/// Construct a new ALTER USER statement
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::query::Query;
	///
	/// let stmt = Query::alter_user();
	/// ```
	pub fn alter_user() -> crate::dcl::AlterUserStatement {
		crate::dcl::AlterUserStatement::new()
	}

	/// Construct a new RENAME USER statement (MySQL only)
	///
	/// # Examples
	///
	/// ```rust,ignore
	/// use reinhardt_query::query::Query;
	///
	/// let stmt = Query::rename_user();
	/// ```
	pub fn rename_user() -> crate::dcl::RenameUserStatement {
		crate::dcl::RenameUserStatement::new()
	}
}