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
use crate::{
behavior::TransactionQuery,
concat::Concat,
fmt,
structure::{Insert, InsertClause, InsertVariance, Select, ValuesVariance},
utils::push_unique,
};
impl TransactionQuery for Insert {}
impl Insert {
/// Gets the current state of the [Insert] and returns it as string
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login)")
/// .values("('foo')")
/// .as_string();
///
/// # let expected = "INSERT INTO users (login) VALUES ('foo')";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login) VALUES ('foo')
/// ```
pub fn as_string(&self) -> String {
let fmts = fmt::one_line();
self.concat(&fmts)
}
/// Prints the current state of the [Insert] 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
///
/// ```
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .values("('foo', 'Foo')")
/// .debug()
/// .values("('bar', 'Bar')")
/// .as_string();
/// ```
///
/// Prints to the standard output
///
/// ```sql
/// -- ------------------------------------------------------------------------------
/// INSERT INTO users (login, name)
/// VALUES ('foo', 'Foo')
/// -- ------------------------------------------------------------------------------
/// ```
pub fn debug(self) -> Self {
let fmts = fmt::multiline();
println!("{}", fmt::format(self.concat(&fmts), &fmts));
self
}
/// The `default values` clause
///
/// # Example
///
/// ```
/// # #[cfg(not(feature = "mysql"))]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users")
/// .default_values()
/// .to_string();
///
/// # let expected = "INSERT INTO users DEFAULT VALUES";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users DEFAULT VALUES
/// ```
#[cfg(not(feature = "mysql"))]
pub fn default_values(mut self) -> Self {
self._values_variance = ValuesVariance::InsertDefaultValues;
self
}
/// The `insert into` clause. This method overrides the previous value
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let insert = sql::Insert::new()
/// .insert_into("users (login, name)");
/// #
/// # let expected = "INSERT INTO users (login, name)";
/// # assert_eq!(expected, insert.to_string());
///
/// let insert = sql::Insert::new()
/// .insert_into("addresses (state, country)")
/// .insert_into("users (login, name)");
///
/// # let expected = "INSERT INTO users (login, name)";
/// # assert_eq!(expected, insert.to_string());
/// ```
///
/// # Mutually exclusive methods
///
/// Avaliable on `sqlite` only
///
/// Methods [Insert::insert_into], [Insert::insert_or] and [Insert::replace_into] are mutually exclusive, the last called will overrides the previous ones.
///
/// ```
/// # #[cfg(feature = "sqlite")]
/// # {
/// # use sql_query_builder as sql;
/// let insert = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .replace_into("users (login, name)");
/// #
/// # let expected = "REPLACE INTO users (login, name)";
/// # assert_eq!(expected, insert.to_string());
/// # }
/// ```
/// Output
///
/// ```sql
/// REPLACE INTO users (login, name)
/// ```
///
/// Avaliable on `mysql` only
///
/// Methods [Insert::insert_into] and the splitted version ([Insert::insert], [Insert::into], [Insert::column]) are mutually exclusive, the last called will overrides the previous ones.
///
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let insert = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .insert("low_priority")
/// .into("users")
/// .column("login");
/// #
/// # let expected = "INSERT low_priority INTO users (login)";
/// # assert_eq!(expected, insert.to_string());
/// # }
/// ```
/// Output
///
/// ```sql
/// INSERT low_priority INTO users (login)
/// ```
pub fn insert_into(mut self, table_name: &str) -> Self {
self._insert_into = table_name.trim().to_string();
self._insert_variance = InsertVariance::InsertInto;
self
}
/// Creates instance of the Insert command
pub fn new() -> Self {
Self::default()
}
/// The `overriding` clause. This method overrides the previous value
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login)")
/// .overriding("user value")
/// .as_string();
///
/// # let expected = "INSERT INTO users (login) OVERRIDING user value";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login) OVERRIDING user value
/// ```
#[cfg(not(any(feature = "sqlite", feature = "mysql")))]
pub fn overriding(mut self, option: &str) -> Self {
self._overriding = option.trim().to_string();
self
}
/// Prints the current state of the [Insert] 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
}
/// The `select` clause. This method overrides the previous value
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .select(
/// sql::Select::new()
/// .select("login, name")
/// .from("users_bk")
/// .where_clause("active = true"),
/// )
/// .as_string();
///
/// # let expected = "\
/// # INSERT INTO users (login, name) \
/// # SELECT login, name \
/// # FROM users_bk \
/// # WHERE active = true\
/// # ";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login, name)
/// SELECT login, name
/// FROM users_bk
/// WHERE active = true
/// ```
pub fn select(mut self, select: Select) -> Self {
self._select = Some(select);
self._values_variance = ValuesVariance::InsertSelect;
self
}
/// Adds at the beginning a raw SQL query.
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let raw_query = "insert into users (login, name)";
///
/// let query = sql::Insert::new()
/// .raw(raw_query)
/// .values("('foo', 'Foo')")
/// .as_string();
///
/// # let expected = "insert into users (login, name) VALUES ('foo', 'Foo')";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// insert into users (login, name) VALUES ('foo', 'Foo')
/// ```
pub fn raw(mut self, raw_sql: &str) -> Self {
push_unique(&mut self._raw, raw_sql.trim().to_string());
self
}
/// Adds a raw SQL query after a specified clause.
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let raw = "values ('foo', 'Foo')";
///
/// let query = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .raw_after(sql::InsertClause::InsertInto, raw)
/// .as_string();
///
/// # let expected = "INSERT INTO users (login, name) values ('foo', 'Foo')";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login, name) values ('foo', 'Foo')
/// ```
pub fn raw_after(mut self, clause: InsertClause, raw_sql: &str) -> Self {
self._raw_after.push((clause, raw_sql.trim().to_string()));
self
}
/// Adds a raw SQL query before a specified clause.
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let raw = "insert into users (login, name)";
///
/// let query = sql::Insert::new()
/// .raw_before(sql::InsertClause::Values, raw)
/// .values("('bar', 'Bar')")
/// .as_string();
///
/// # let expected = "insert into users (login, name) VALUES ('bar', 'Bar')";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// insert into users (login, name) VALUES ('bar', 'Bar')
/// ```
pub fn raw_before(mut self, clause: InsertClause, raw_sql: &str) -> Self {
self._raw_before.push((clause, raw_sql.trim().to_string()));
self
}
/// The `values` clause
///
/// # Example
///
/// ```
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .values("('foo', 'Foo')")
/// .values("('bar', 'Bar')")
/// .as_string();
///
/// # let expected = "INSERT INTO users (login, name) VALUES ('foo', 'Foo'), ('bar', 'Bar')";
/// # assert_eq!(expected, query);
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login, name) VALUES ('foo', 'Foo'), ('bar', 'Bar')
/// ```
///
/// # Composable methods
/// The methods [Insert::values], [Insert::row] are composable, when both was used each line will receive the contructor clause row.
///
/// # Example
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .values("('foo', 'Foo')")
/// .row("('bar', 'Bar')")
/// .as_string();
/// # let expected = "VALUES ROW('foo', 'Foo'), ROW('bar', 'Bar')";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// VALUES ROW('foo', 'Foo'), ROW('bar', 'Bar')
/// ```
///
/// # Mutually exclusive methods
/// The methods [Insert::values]/[Insert::row], [Insert::select] and [Insert::set] are mutually exclusive, the last called will overrides the previous ones.
/// [Insert::row] and [Insert::set] are available on crate feature `mysql` only.
///
/// # Example
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .values("('foo', 'Foo')")
/// .row("('bar', 'Bar')")
/// .set("login = 'foo'")
/// .set("name = 'Foo'")
/// .as_string();
/// # let expected = "SET login = 'foo', name = 'Foo'";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// SET login = 'foo', name = 'Foo'
/// ```
pub fn values(mut self, expression: &str) -> Self {
push_unique(&mut self._values, expression.trim().to_string());
self._values_variance = ValuesVariance::InsertValues;
self
}
}
#[cfg(any(feature = "postgresql", feature = "sqlite"))]
use crate::behavior::WithQuery;
#[cfg(any(feature = "postgresql", feature = "sqlite"))]
impl WithQuery for Insert {}
#[cfg(any(doc, feature = "postgresql", feature = "sqlite"))]
#[cfg_attr(docsrs, doc(cfg(feature = "postgresql")))]
#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
impl Insert {
/// The `on conflict` clause. This method overrides the previous value
///
/// # Example
///
/// ```
/// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login)")
/// .on_conflict("do nothing")
/// .as_string();
///
/// # let expected = "INSERT INTO users (login) ON CONFLICT do nothing";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login) ON CONFLICT do nothing
/// ```
pub fn on_conflict(mut self, conflict: &str) -> Self {
self._on_conflict = conflict.trim().to_string();
self
}
/// The `returning` clause
///
/// # Example
///
/// ```
/// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users")
/// .returning("id")
/// .returning("login")
/// .to_string();
///
/// # let expected = "INSERT INTO users RETURNING id, login";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users RETURNING id, login
/// ```
pub fn returning(mut self, output_name: &str) -> Self {
push_unique(&mut self._returning, output_name.trim().to_string());
self
}
/// The `with` clause
///
/// # Example
///
/// ```
/// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
/// # {
/// # use sql_query_builder as sql;
/// let active_users = sql::Select::new()
/// .select("*")
/// .from("users_bk")
/// .where_clause("ative = true");
///
/// let query = sql::Insert::new()
/// .with("active_users", active_users)
/// .insert_into("users")
/// .select(sql::Select::new().select("*").from("active_users"))
/// .to_string();
///
/// # let expected = "\
/// # WITH active_users AS (\
/// # SELECT * \
/// # FROM users_bk \
/// # WHERE ative = true\
/// # ) \
/// # INSERT INTO users \
/// # SELECT * \
/// # FROM active_users\
/// # ";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// WITH active_users AS (
/// SELECT *
/// FROM users_bk
/// WHERE ative = true
/// )
/// INSERT INTO users
/// SELECT *
/// FROM active_users
/// ```
#[cfg(any(feature = "postgresql", feature = "sqlite"))]
pub fn with(mut self, name: &str, query: impl WithQuery + 'static + Send + Sync) -> Self {
self._with.push((name.trim().to_string(), std::sync::Arc::new(query)));
self
}
}
#[cfg(any(doc, feature = "sqlite"))]
#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
impl Insert {
/// The `insert or <keyword> into` clause
///
/// # Example
///
/// ```
/// # #[cfg(feature = "sqlite")]
/// # {
/// # use sql_query_builder as sql;
/// let insert = sql::Insert::new()
/// .insert_or("abort into users (login, name)");
/// #
/// # let expected = "INSERT OR abort into users (login, name)";
/// # assert_eq!(expected, insert.to_string());
///
/// let insert = sql::Insert::new()
/// .insert_or("fail into addresses (state, country)")
/// .insert_or("abort into users (login, name)");
///
/// # let expected = "INSERT OR abort into users (login, name)";
/// # assert_eq!(expected, insert.to_string());
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT OR abort into users (login, name)
/// ```
pub fn insert_or(mut self, expression: &str) -> Self {
self._insert_or = expression.trim().to_string();
self._insert_variance = InsertVariance::InsertOr;
self
}
/// The `replace into` clause, this method overrides the previous value
///
/// # Example
///
/// ```
/// # #[cfg(feature = "sqlite")]
/// # {
/// # use sql_query_builder as sql;
/// let insert = sql::Insert::new()
/// .replace_into("users (login, name)");
/// #
/// # let expected = "REPLACE INTO users (login, name)";
/// # assert_eq!(expected, insert.to_string());
/// # }
/// ```
///
/// Output
///
/// ```sql
/// REPLACE INTO users (login, name)
/// ```
pub fn replace_into(mut self, table_name: &str) -> Self {
self._replace_into = table_name.trim().to_string();
self._insert_variance = InsertVariance::ReplaceInto;
self
}
}
#[cfg(any(doc, feature = "mysql"))]
#[cfg_attr(docsrs, doc(cfg(feature = "mysql")))]
impl Insert {
/// Defines the columns of the table used to insert values.
///
/// ### Example
///
///```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .into("users")
/// .column("login")
/// .column("name")
/// .as_string();
///
/// # let expected = "INTO users (login, name)";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Outputs
///
/// ```sql
/// INTO users (login, name)
/// ```
pub fn column(mut self, column_name: &str) -> Self {
push_unique(&mut self._column, column_name.trim().to_string());
self._insert_variance = InsertVariance::InsertSplitted;
self
}
/// The `insert` clause, used to defined modifiers to change de insert execution
///
/// ### Example
///
///```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert("LOW_PRIORITY")
/// .into("users")
/// .column("login")
/// .as_string();
///
/// # let expected = "INSERT LOW_PRIORITY INTO users (login)";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Outputs
///
/// ```sql
/// INSERT LOW_PRIORITY INTO users (login)
/// ```
pub fn insert(mut self, modifier: &str) -> Self {
self._insert = modifier.trim().to_string();
self._insert_variance = InsertVariance::InsertSplitted;
self
}
/// The `into` clause, defines the name of the table to be used
///
/// ### Example
///
///```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .into("users")
/// .column("login")
/// .as_string();
///
/// # let expected = "INTO users (login)";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Outputs
///
/// ```sql
/// INTO users (login)
/// ```
pub fn into(mut self, table: &str) -> Self {
self._into = table.trim().to_string();
self._insert_variance = InsertVariance::InsertSplitted;
self
}
/// The `partition` clause
///
/// # Example
///
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .into("employees")
/// .partition("p1")
/// .to_string();
///
/// # let expected = "INTO employees PARTITION (p1)";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INTO employees PARTITION (p1)
/// ```
pub fn partition(mut self, name: &str) -> Self {
push_unique(&mut self._partition, name.trim().to_string());
self._insert_into = "".to_string();
self
}
/// The `ON DUPLICATE KEY UPDATE` clause
///
/// # Example
///
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("t1 (a, b, c)")
/// .values("(1, 2, 3)")
/// .on_duplicate_key_update("c = c+1")
/// .as_string();
///
/// # let expected = "\
/// # INSERT INTO t1 (a, b, c) \
/// # VALUES (1, 2, 3) \
/// # ON DUPLICATE KEY UPDATE c = c+1\
/// # ";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO t1 (a, b, c)
/// VALUES (1, 2, 3)
/// ON DUPLICATE KEY UPDATE c = c+1
/// ```
pub fn on_duplicate_key_update(mut self, assignment: &str) -> Self {
push_unique(&mut self._on_duplicate_key_update, assignment.trim().to_string());
self
}
/// The `values` clause with the `row` constructor clause
///
/// # Example
///
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let query = sql::Insert::new()
/// .insert_into("users (login, name)")
/// .row("('foo', 'Foo')")
/// .row("('bar', 'Bar')")
/// .as_string();
///
/// # let expected = "INSERT INTO users (login, name) VALUES ROW('foo', 'Foo'), ROW('bar', 'Bar')";
/// # assert_eq!(expected, query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// INSERT INTO users (login, name) VALUES ROW('foo', 'Foo'), ROW('bar', 'Bar')
/// ```
pub fn row(mut self, expression: &str) -> Self {
push_unique(&mut self._values, expression.trim().to_string());
self._values_variance = ValuesVariance::InsertValuesRow;
self
}
/// The `set` clause
///
/// # Example
///
/// ```
/// # #[cfg(feature = "mysql")]
/// # {
/// # use sql_query_builder as sql;
/// let update_query = sql::Insert::new()
/// .set("name = 'Bar'")
/// .as_string();
///
/// # let expected = "SET name = 'Bar'";
/// # assert_eq!(expected, update_query);
/// # }
/// ```
///
/// Output
///
/// ```sql
/// SET name = 'Bar'
/// ```
pub fn set(mut self, assignment: &str) -> Self {
push_unique(&mut self._set, assignment.trim().to_string());
self._values_variance = ValuesVariance::InsertSet;
self
}
}
impl std::fmt::Display for Insert {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{}", self.as_string())
}
}
impl std::fmt::Debug for Insert {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let fmts = fmt::multiline();
write!(f, "{}", fmt::format(self.concat(&fmts), &fmts))
}
}