sql_query_builder 2.6.2

Write SQL queries in a simple and composable way
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
use crate::{
  concat::Concat,
  fmt,
  structure::{
    AlterTable, CreateTable, Delete, DropTable, Insert, Select, TrCmd::*, Transaction, TransactionCommand, Update,
  },
  utils::push_unique,
};

#[cfg(any(feature = "postgresql", feature = "sqlite", feature = "mysql"))]
use crate::structure::{CreateIndex, DropIndex};

impl Transaction {
  /// Gets the current state of the [Transaction] and returns it as string
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "START TRANSACTION; COMMIT;";
  /// # assert_eq!(transaction_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// START TRANSACTION;
  /// COMMIT;
  /// ```
  pub fn as_string(&self) -> String {
    let fmts = fmt::one_line();
    self.concat(&fmts)
  }

  /// The `commit` command, this method will be always added at the end of the transaction and
  /// all consecutive call will override the previous value
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .commit("WORK")
  ///   .commit("TRANSACTION")
  ///   .as_string();
  ///
  /// # let expected = "COMMIT TRANSACTION;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// COMMIT TRANSACTION;
  /// ```
  pub fn commit(mut self, arg: &str) -> Self {
    let cmd = TransactionCommand::new(Commit, arg.trim().to_string());
    self._commit = Some(cmd);
    self
  }

  /// Prints the current state of the [Transaction] to the standard output in a more ease to read version.
  /// This method is useful to debug complex queries or just print the generated SQL while you type
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let insert_foo = sql::Insert::new()
  ///   .insert_into("users (login, name)")
  ///   .values("('foo', 'Foo')");
  ///
  /// let transaction = sql::Transaction::new()
  ///   .start_transaction("isolation level serializable")
  ///   .insert(insert_foo)
  ///   .commit("")
  ///   .as_string();
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION isolation level serializable;
  /// INSERT INTO users (login, name)
  /// VALUES ('foo', 'Foo');
  /// COMMIT;
  /// ```
  pub fn debug(self) -> Self {
    let fmts = fmt::multiline();
    println!("{}", fmt::format(self.concat(&fmts), &fmts));
    self
  }

  /// The `alter table` command, access the [AlterTable] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let users_table = sql::AlterTable::new()
  ///   .alter_table("users")
  ///   .drop("legacy_column");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .alter_table(users_table)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   ALTER TABLE users DROP legacy_column; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// ALTER TABLE users DROP legacy_column;
  /// COMMIT;
  /// ```
  pub fn alter_table(mut self, alter_table: AlterTable) -> Self {
    let cmd = Box::new(alter_table);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `create table` command, access the [CreateTable] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let users_table = sql::CreateTable::new()
  ///   .create_table("users")
  ///   .column("login varchar(40) not null");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .create_table(users_table)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   CREATE TABLE users (\
  /// #      login varchar(40) not null\
  /// #   ); \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// CREATE TABLE users (
  ///   login varchar(40) not null
  /// );
  /// COMMIT;
  /// ```
  pub fn create_table(mut self, create_table: CreateTable) -> Self {
    let cmd = Box::new(create_table);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `delete` command, access the [Delete] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let delete_foo = sql::Delete::new()
  ///   .delete_from("users")
  ///   .where_clause("login = 'foo'");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .delete(delete_foo)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   DELETE FROM users \
  /// #   WHERE login = 'foo'; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// DELETE FROM users
  /// WHERE login = 'foo';
  /// COMMIT;
  /// ```
  pub fn delete(mut self, delete: Delete) -> Self {
    let cmd = Box::new(delete);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `drop table` command, access the [DropTable] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let drop_users = sql::DropTable::new()
  ///   .drop_table("users");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .drop_table(drop_users)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   DROP TABLE users; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// DROP TABLE users;
  /// COMMIT;
  /// ```
  pub fn drop_table(mut self, drop_table: DropTable) -> Self {
    let cmd = Box::new(drop_table);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `insert` command, access the [Insert] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let insert_foo = sql::Insert::new()
  ///   .insert_into("users (login, name)")
  ///   .values("('foo', 'Foo')");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .insert(insert_foo)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   INSERT INTO users (login, name) \
  /// #   VALUES ('foo', 'Foo'); \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// INSERT INTO users (login, name)
  /// VALUES ('foo', 'Foo');
  /// COMMIT;
  /// ```
  pub fn insert(mut self, insert: Insert) -> Self {
    let cmd = Box::new(insert);
    self._ordered_commands.push(cmd);
    self
  }

  /// Creates instance to be used with Transaction commands
  pub fn new() -> Self {
    Self::default()
  }

  /// Prints the current state of the [Transaction] to the standard output similar to debug method,
  /// the difference is that this method prints in one line.
  pub fn print(self) -> Self {
    let fmts = fmt::one_line();
    println!("{}", fmt::format(self.concat(&fmts), &fmts));
    self
  }

  /// Adds at the beginning a raw SQL query.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let raw_query = "\
  ///   start transaction; \
  ///   set transaction isolation level read committed;\
  /// ";
  /// let transaction_query = sql::Transaction::new()
  ///   .raw(raw_query)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   start transaction; \
  /// #   set transaction isolation level read committed; \
  /// #   COMMIT;\
  /// ";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// start transaction;
  /// set transaction isolation level read committed;
  /// COMMIT;
  /// ```
  pub fn raw(mut self, raw_sql: &str) -> Self {
    push_unique(&mut self._raw, raw_sql.trim().to_string());
    self
  }

  /// The `release savepoint` command
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .release_savepoint("saved_foo")
  ///   .as_string();
  ///
  /// # let expected = "RELEASE SAVEPOINT saved_foo;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// RELEASE_SAVEPOINT saved_foo;
  /// ```
  pub fn release_savepoint(mut self, name: &str) -> Self {
    let cmd = Box::new(TransactionCommand::new(ReleaseSavepoint, name.trim().to_string()));
    self._ordered_commands.push(cmd);
    self
  }

  /// The `rollback` command, this method can be used to add a `rollback to savepoint my_savepoint` command.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .rollback("")
  ///   .as_string();
  ///
  /// # let expected = "ROLLBACK;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// ROLLBACK;
  /// ```
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .rollback("TO SAVEPOINT my_savepoint")
  ///   .as_string();
  ///
  /// # let expected = "ROLLBACK TO SAVEPOINT my_savepoint;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// ROLLBACK TO SAVEPOINT my_savepoint;
  /// ```
  pub fn rollback(mut self, arg: &str) -> Self {
    let cmd = Box::new(TransactionCommand::new(Rollback, arg.trim().to_string()));
    self._ordered_commands.push(cmd);
    self
  }

  /// The `savepoint` command
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .savepoint("my_savepoint")
  ///   .as_string();
  ///
  /// # let expected = "SAVEPOINT my_savepoint;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// SAVEPOINT my_savepoint;
  /// ```
  pub fn savepoint(mut self, name: &str) -> Self {
    let cmd = Box::new(TransactionCommand::new(Savepoint, name.trim().to_string()));
    self._ordered_commands.push(cmd);
    self
  }

  /// The `select` command, access the [Select] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let select_foo = sql::Select::new()
  ///   .select("login, name")
  ///   .from("users")
  ///   .where_clause("id = $1");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .select(select_foo)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   SELECT login, name FROM users WHERE id = $1; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// SELECT login, name FROM users WHERE id = $1;
  /// COMMIT;
  /// ```
  pub fn select(mut self, select: Select) -> Self {
    let cmd = Box::new(select);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `set transaction` command, this method will be always added after the `start transaction` and
  /// all consecutive call will override the previous value
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .set_transaction("read write")
  ///   .set_transaction("read only")
  ///   .start_transaction("")
  ///   .as_string();
  ///
  /// # let expected = "START TRANSACTION; SET TRANSACTION read only;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// START TRANSACTION;
  /// SET TRANSACTION read only;
  /// ```
  #[cfg(not(feature = "sqlite"))]
  pub fn set_transaction(mut self, mode: &str) -> Self {
    let cmd = TransactionCommand::new(SetTransaction, mode.trim().to_string());
    self._set_transaction = Some(cmd);
    self
  }

  /// The `start transaction` command, this method will be always added at the beginning of the transation and
  /// all consecutive call will override the previous value
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .commit("")
  ///   .start_transaction("read write")
  ///   .start_transaction("isolation level serializable")
  ///   .as_string();
  ///
  /// # let expected = "START TRANSACTION isolation level serializable; COMMIT;";
  /// # assert_eq!(transaction_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// START TRANSACTION isolation level serializable;
  /// COMMIT;
  /// ```
  #[cfg(not(feature = "sqlite"))]
  pub fn start_transaction(mut self, mode: &str) -> Self {
    let cmd = TransactionCommand::new(StartTransaction, mode.trim().to_string());
    self._start_transaction = Some(cmd);
    self
  }

  /// The `update` command, access the [Update] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_foo = sql::Update::new()
  ///   .update("users")
  ///   .set("name = 'Foooo'")
  ///   .where_clause("id = $1");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .update(update_foo)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   UPDATE users SET name = 'Foooo' WHERE id = $1; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// UPDATE users SET name = 'Foooo' WHERE id = $1;
  /// COMMIT;
  /// ```
  pub fn update(mut self, update: Update) -> Self {
    let cmd = Box::new(update);
    self._ordered_commands.push(cmd);
    self
  }
}

#[cfg(any(feature = "postgresql", feature = "sqlite", feature = "mysql"))]
#[cfg_attr(docsrs, doc(cfg(feature = "postgresql")))]
#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
#[cfg_attr(docsrs, doc(cfg(feature = "mysql")))]
impl Transaction {
  /// The `begin` command, this method will be always added at the beginning of the transation and
  /// all consecutive call will override the previous value.
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .begin("transaction")
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "BEGIN transaction; COMMIT;";
  /// # assert_eq!(transaction_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// BEGIN transaction;
  /// COMMIT;
  /// ```
  pub fn begin(mut self, mode: &str) -> Self {
    let cmd = TransactionCommand::new(Begin, mode.trim().to_string());
    self._begin = Some(cmd);
    self
  }

  /// The `create index` command, access the [CreateIndex] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let create_index_name = sql::CreateIndex::new()
  ///   .create_index("users_name_idx")
  ///   .on("users")
  ///   .column("name");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .create_index(create_index_name)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   CREATE INDEX users_name_idx ON users (name); \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// CREATE INDEX users_name_idx ON users (name);
  /// COMMIT;
  /// ```
  pub fn create_index(mut self, create_index: CreateIndex) -> Self {
    let cmd = Box::new(create_index);
    self._ordered_commands.push(cmd);
    self
  }

  /// The `drop index` command, access the [DropIndex] for more info
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(not(feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let drop_index_name = sql::DropIndex::new()
  ///   .drop_index("users_name_idx");
  ///
  /// let query = sql::Transaction::new()
  ///   .start_transaction("")
  ///   .drop_index(drop_index_name)
  ///   .commit("")
  ///   .as_string();
  ///
  /// # let expected = "\
  /// #   START TRANSACTION; \
  /// #   DROP INDEX users_name_idx; \
  /// #   COMMIT;\
  /// # ";
  /// # assert_eq!(expected, query);
  /// # }
  /// ```
  ///
  /// Output (indented for readability)
  ///
  /// ```sql
  /// START TRANSACTION;
  /// DROP INDEX users_name_idx;
  /// COMMIT;
  /// ```
  pub fn drop_index(mut self, drop_index: DropIndex) -> Self {
    let cmd = Box::new(drop_index);
    self._ordered_commands.push(cmd);
    self
  }
}

#[cfg(any(feature = "postgresql", feature = "sqlite"))]
#[cfg_attr(docsrs, doc(cfg(feature = "postgresql")))]
#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
impl Transaction {
  /// The `end` command, this method will be always added at the end of the transation and
  /// all consecutive call will override the previous value.
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let transaction_query = sql::Transaction::new()
  ///   .begin("")
  ///   .end("")
  ///   .as_string();
  ///
  /// # let expected = "BEGIN; END;";
  /// # assert_eq!(transaction_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// BEGIN;
  /// END;
  /// ```
  pub fn end(mut self, mode: &str) -> Self {
    let cmd = TransactionCommand::new(End, mode.trim().to_string());
    self._end = Some(cmd);
    self
  }
}

impl std::fmt::Display for Transaction {
  fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
    write!(f, "{}", self.as_string())
  }
}

impl std::fmt::Debug for Transaction {
  fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
    let fmts = fmt::multiline();
    write!(f, "{}", fmt::format(self.concat(&fmts), &fmts))
  }
}