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
use super::{common::*, SqlRenderer};
use crate::{
    flavour::PostgresFlavour,
    migration_pair::MigrationPair,
    sql_migration::{
        AlterColumn, AlterEnum, AlterExtension, AlterTable, CreateExtension, DropExtension, ExtensionChange,
        RedefineTable, SequenceChange, SequenceChanges, TableChange,
    },
    sql_schema_differ::{ColumnChange, ColumnChanges},
};
use psl::builtin_connectors::{CockroachType, PostgresType};
use sql_ddl::{
    postgres::{self as ddl, PostgresIdentifier},
    IndexColumn, SortOrder,
};
use sql_schema_describer::{
    postgres::{PostgresSchemaExt, SqlIndexAlgorithm},
    walkers::*,
    ColumnArity, ColumnTypeFamily, DefaultKind, DefaultValue, ForeignKeyAction, PrismaValue, SQLSortOrder, SqlSchema,
};
use std::borrow::Cow;

impl PostgresFlavour {
    fn render_column(&self, column: TableColumnWalker<'_>) -> String {
        let column_name = Quoted::postgres_ident(column.name());
        let tpe_str = render_column_type(column, self);
        let nullability_str = render_nullability(column);
        let default_str = column
            .default()
            .map(|d| render_default(d.inner(), &render_column_type(column, self)))
            .filter(|default| !default.is_empty())
            .map(|default| format!(" DEFAULT {default}"))
            .unwrap_or_else(String::new);

        let identity_str = render_column_identity_str(column, self);

        format!("{SQL_INDENTATION}{column_name} {tpe_str}{nullability_str}{default_str}{identity_str}",)
    }
}

impl SqlRenderer for PostgresFlavour {
    // TODO(MultiSchema): We only do alter_sequence on CockroachDB.
    fn render_alter_sequence(
        &self,
        sequence_idx: MigrationPair<u32>,
        changes: SequenceChanges,
        schemas: MigrationPair<&SqlSchema>,
    ) -> Vec<String> {
        let exts: MigrationPair<&PostgresSchemaExt> = schemas.map(|schema| schema.downcast_connector_data());
        let (prev_seq, next_seq) = exts
            .zip(sequence_idx)
            .map(|(ext, idx)| &ext.sequences[idx as usize])
            .into_tuple();
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_str("ALTER SEQUENCE ");
                stmt.push_display(&Quoted::postgres_ident(&prev_seq.name));

                if changes.0.contains(SequenceChange::MinValue) {
                    stmt.push_str(" MINVALUE ");
                    stmt.push_display(&next_seq.min_value);
                }

                if changes.0.contains(SequenceChange::MaxValue) {
                    stmt.push_str(" MAXVALUE ");
                    stmt.push_display(&next_seq.max_value);
                }

                if changes.0.contains(SequenceChange::Increment) {
                    stmt.push_str(" INCREMENT ");
                    stmt.push_display(&next_seq.increment_by);
                }

                if changes.0.contains(SequenceChange::Start) {
                    stmt.push_str(" START ");
                    stmt.push_display(&next_seq.start_value);
                }

                if changes.0.contains(SequenceChange::Cache) {
                    stmt.push_str(" CACHE ");
                    stmt.push_display(&next_seq.cache_size);
                }
            })
        })
    }

    fn render_create_extension(&self, create: &CreateExtension, schema: &SqlSchema) -> Vec<String> {
        let ext: &PostgresSchemaExt = schema.downcast_connector_data();
        let extension = ext.get_extension(create.id);

        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_str("CREATE EXTENSION IF NOT EXISTS ");
                stmt.push_display(&Quoted::postgres_ident(&extension.name));

                if !extension.version.is_empty() || !extension.schema.is_empty() {
                    stmt.push_str(" WITH");
                }

                if !extension.schema.is_empty() {
                    stmt.push_str(" SCHEMA ");
                    stmt.push_display(&Quoted::postgres_ident(&extension.schema));
                }

                if !extension.version.is_empty() {
                    stmt.push_str(" VERSION ");
                    stmt.push_display(&Quoted::postgres_ident(&extension.version));
                }
            })
        })
    }

    fn render_drop_extension(&self, drop: &DropExtension, schema: &SqlSchema) -> Vec<String> {
        let ext: &PostgresSchemaExt = schema.downcast_connector_data();
        let extension = ext.get_extension(drop.id);

        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_str("DROP EXTENSION ");
                stmt.push_display(&Quoted::postgres_ident(&extension.name));
            })
        })
    }

    fn render_alter_extension(&self, alter: &AlterExtension, schemas: MigrationPair<&SqlSchema>) -> Vec<String> {
        let exts: MigrationPair<&PostgresSchemaExt> = schemas.map(|schema| schema.downcast_connector_data());
        let extensions = exts.zip(alter.ids).map(|(ext, id)| ext.get_extension(id));

        alter
            .changes
            .iter()
            .flat_map(|change| {
                render_step(&mut |step| match change {
                    ExtensionChange::AlterVersion => step.render_statement(&mut |stmt| {
                        stmt.push_str("ALTER EXTENSION ");
                        stmt.push_display(&Quoted::postgres_ident(&extensions.previous.name));
                        stmt.push_str(" UPDATE TO ");
                        stmt.push_display(&Quoted::postgres_ident(&extensions.next.version));
                    }),
                    ExtensionChange::AlterSchema => step.render_statement(&mut |stmt| {
                        stmt.push_str("ALTER EXTENSION ");
                        stmt.push_display(&Quoted::postgres_ident(&extensions.previous.name));
                        stmt.push_str(" SET SCHEMA ");
                        stmt.push_display(&Quoted::postgres_ident(&extensions.next.schema));
                    }),
                })
            })
            .collect()
    }

    fn quote<'a>(&self, name: &'a str) -> Quoted<&'a str> {
        Quoted::postgres_ident(name)
    }

    fn render_add_foreign_key(&self, foreign_key: ForeignKeyWalker<'_>) -> String {
        ddl::AlterTable {
            table_name: &QuotedWithPrefix::pg_from_table_walker(foreign_key.table()),
            clauses: vec![ddl::AlterTableClause::AddForeignKey(ddl::ForeignKey {
                constrained_columns: foreign_key.constrained_columns().map(|c| c.name().into()).collect(),
                referenced_columns: foreign_key.referenced_columns().map(|c| c.name().into()).collect(),
                constraint_name: foreign_key.constraint_name().map(From::from),
                referenced_table: &QuotedWithPrefix::pg_from_table_walker(foreign_key.referenced_table()),
                on_delete: Some(match foreign_key.on_delete_action() {
                    ForeignKeyAction::Cascade => ddl::ForeignKeyAction::Cascade,
                    ForeignKeyAction::NoAction => ddl::ForeignKeyAction::NoAction,
                    ForeignKeyAction::Restrict => ddl::ForeignKeyAction::Restrict,
                    ForeignKeyAction::SetDefault => ddl::ForeignKeyAction::SetDefault,
                    ForeignKeyAction::SetNull => ddl::ForeignKeyAction::SetNull,
                }),
                on_update: Some(match foreign_key.on_update_action() {
                    ForeignKeyAction::Cascade => ddl::ForeignKeyAction::Cascade,
                    ForeignKeyAction::NoAction => ddl::ForeignKeyAction::NoAction,
                    ForeignKeyAction::Restrict => ddl::ForeignKeyAction::Restrict,
                    ForeignKeyAction::SetDefault => ddl::ForeignKeyAction::SetDefault,
                    ForeignKeyAction::SetNull => ddl::ForeignKeyAction::SetNull,
                }),
            })],
        }
        .to_string()
    }

    fn render_alter_enum(&self, alter_enum: &AlterEnum, schemas: MigrationPair<&SqlSchema>) -> Vec<String> {
        // ALTER TYPE is much more limited on postgres than on cockroachdb.
        //
        // On Postgres:
        // - Values cannot be removed.
        // - Only one value can be added in a single transaction until postgres 11.
        if self.is_cockroachdb() {
            render_step(&mut |step| {
                render_cockroach_alter_enum(alter_enum, schemas, step);
            })
        } else {
            let flavour = self;
            render_postgres_alter_enum(alter_enum, schemas, flavour)
        }
    }

    fn render_alter_primary_key(&self, tables: MigrationPair<TableWalker<'_>>) -> Vec<String> {
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_str("ALTER TABLE ");
                stmt.push_display(&QuotedWithPrefix::pg_from_table_walker(tables.previous));
                stmt.push_str(" ALTER PRIMARY KEY USING COLUMNS (");
                let column_names = tables
                    .next
                    .primary_key()
                    .unwrap() // safe because there is a primary key to alter
                    .column_names()
                    .map(Quoted::postgres_ident);
                stmt.join(", ", column_names);
                stmt.push_str(")");
            })
        })
    }

    fn render_rename_index(&self, indexes: MigrationPair<IndexWalker<'_>>) -> Vec<String> {
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                let previous_table = indexes.previous.table();
                let index_previous_name = QuotedWithPrefix::pg_new(previous_table.namespace(), indexes.previous.name());
                stmt.push_str("ALTER INDEX ");
                stmt.push_str(&index_previous_name.to_string());
                stmt.push_str(" RENAME TO ");
                // Postgres assumes we use the same schema as the previous name's, so we're not
                // allowed to qualify this identifier.
                stmt.push_display(&Quoted::postgres_ident(indexes.next.name()));
            })
        })
    }

    fn render_alter_table(&self, alter_table: &AlterTable, schemas: MigrationPair<&SqlSchema>) -> Vec<String> {
        let AlterTable { changes, table_ids } = alter_table;
        let mut lines = Vec::new();
        let mut before_statements = Vec::new();
        let mut after_statements = Vec::new();
        let tables = schemas.walk(*table_ids);

        for change in changes {
            match change {
                TableChange::DropPrimaryKey => lines.push(format!(
                    "DROP CONSTRAINT {}",
                    Quoted::postgres_ident(tables.previous.primary_key().unwrap().name())
                )),
                TableChange::RenamePrimaryKey => lines.push(format!(
                    "RENAME CONSTRAINT {} TO {}",
                    Quoted::postgres_ident(tables.previous.primary_key().unwrap().name()),
                    Quoted::postgres_ident(tables.next.primary_key().unwrap().name())
                )),
                TableChange::AddPrimaryKey => lines.push({
                    let named = match tables.next.primary_key().map(|pk| pk.name()) {
                        Some(name) => format!("CONSTRAINT {} ", self.quote(name)),
                        None => "".into(),
                    };

                    format!(
                        "ADD {}PRIMARY KEY ({})",
                        named,
                        tables
                            .next
                            .primary_key_columns()
                            .unwrap()
                            .map(|col| self.quote(col.name()))
                            .join(", ")
                    )
                }),
                TableChange::AddColumn {
                    column_id,
                    has_virtual_default: _,
                } => {
                    let column = schemas.next.walk(*column_id);
                    let col_sql = self.render_column(column);

                    lines.push(format!("ADD COLUMN {col_sql}"));
                }
                TableChange::DropColumn { column_id } => {
                    let name = self.quote(schemas.previous.walk(*column_id).name());
                    lines.push(format!("DROP COLUMN {name}"));
                }
                TableChange::AlterColumn(AlterColumn {
                    column_id,
                    changes,
                    type_change: _,
                }) => {
                    let columns = schemas.walk(*column_id);

                    render_alter_column(
                        columns,
                        changes,
                        &mut before_statements,
                        &mut lines,
                        &mut after_statements,
                        self,
                    );
                }
                TableChange::DropAndRecreateColumn { column_id, changes: _ } => {
                    let columns = schemas.walk(*column_id);
                    let name = self.quote(columns.previous.name());

                    lines.push(format!("DROP COLUMN {name}"));

                    let col_sql = self.render_column(columns.next);
                    lines.push(format!("ADD COLUMN {col_sql}"));
                }
            };
        }

        if lines.is_empty() {
            return Vec::new();
        }

        if self.is_cockroachdb() {
            let mut out = Vec::with_capacity(before_statements.len() + after_statements.len() + lines.len());
            out.extend(before_statements);
            for line in lines {
                out.push(format!(
                    "ALTER TABLE {} {}",
                    QuotedWithPrefix::pg_from_table_walker(tables.previous),
                    line
                ))
            }
            out.extend(after_statements);
            out
        } else {
            let alter_table = format!(
                "ALTER TABLE {} {}",
                QuotedWithPrefix::pg_new(tables.previous.namespace(), tables.previous.name()),
                lines.join(",\n")
            );

            before_statements
                .into_iter()
                .chain(std::iter::once(alter_table))
                .chain(after_statements)
                .collect()
        }
    }

    fn render_create_enum(&self, enm: EnumWalker<'_>) -> Vec<String> {
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_str("CREATE TYPE ");
                stmt.push_display(&QuotedWithPrefix::pg_new(enm.namespace(), enm.name()));
                stmt.push_str(" AS ENUM (");
                let mut values = enm.values().peekable();
                while let Some(value) = values.next() {
                    stmt.push_display(&Quoted::postgres_string(value));
                    if values.peek().is_some() {
                        stmt.push_str(", ");
                    }
                }
                stmt.push_str(")");
            })
        })
    }

    fn render_create_index(&self, index: IndexWalker<'_>) -> String {
        let pg_ext: &PostgresSchemaExt = index.schema.downcast_connector_data();

        ddl::CreateIndex {
            index_name: index.name().into(),
            is_unique: index.is_unique(),
            table_reference: &QuotedWithPrefix::pg_from_table_walker(index.table()),
            using: Some(match pg_ext.index_algorithm(index.id) {
                SqlIndexAlgorithm::BTree => ddl::IndexAlgorithm::BTree,
                SqlIndexAlgorithm::Hash => ddl::IndexAlgorithm::Hash,
                SqlIndexAlgorithm::Gist => ddl::IndexAlgorithm::Gist,
                SqlIndexAlgorithm::Gin => ddl::IndexAlgorithm::Gin,
                SqlIndexAlgorithm::SpGist => ddl::IndexAlgorithm::SpGist,
                SqlIndexAlgorithm::Brin => ddl::IndexAlgorithm::Brin,
            }),
            columns: index
                .columns()
                .map(|c| IndexColumn {
                    name: c.as_column().name().into(),
                    length: None,
                    sort_order: c.sort_order().map(|so| match so {
                        SQLSortOrder::Asc => SortOrder::Asc,
                        SQLSortOrder::Desc => SortOrder::Desc,
                    }),
                    operator_class: pg_ext.get_opclass(c.id).map(|c| c.kind.as_ref().into()),
                })
                .collect(),
        }
        .to_string()
    }

    fn render_create_namespace(&self, ns: sql_schema_describer::NamespaceWalker<'_>) -> String {
        format!("CREATE SCHEMA IF NOT EXISTS {}", Quoted::postgres_ident(ns.name()))
    }

    fn render_create_table(&self, table: TableWalker<'_>) -> String {
        self.render_create_table_as(table, QuotedWithPrefix::pg_from_table_walker(table))
    }

    fn render_create_table_as(&self, table: TableWalker<'_>, table_name: QuotedWithPrefix<&str>) -> String {
        let columns: String = table.columns().map(|column| self.render_column(column)).join(",\n");

        let pk = if let Some(pk) = table.primary_key() {
            let named_constraint = format!("CONSTRAINT {} ", Quoted::postgres_ident(pk.name()));

            format!(
                ",\n\n{}{}PRIMARY KEY ({})",
                SQL_INDENTATION,
                named_constraint,
                pk.columns().map(|col| Quoted::postgres_ident(col.name())).join(",")
            )
        } else {
            String::new()
        };

        format!("CREATE TABLE {table_name} (\n{columns}{pk}\n)")
    }

    fn render_drop_enum(&self, dropped_enum: EnumWalker<'_>) -> Vec<String> {
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_display(&ddl::DropType {
                    type_name: PostgresIdentifier::new(dropped_enum.namespace(), dropped_enum.name()),
                })
            })
        })
    }

    fn render_drop_foreign_key(&self, foreign_key: ForeignKeyWalker<'_>) -> String {
        format!(
            "ALTER TABLE {table} DROP CONSTRAINT {constraint_name}",
            table = PostgresIdentifier::new(foreign_key.table().namespace(), foreign_key.table().name()),
            constraint_name = Quoted::postgres_ident(foreign_key.constraint_name().unwrap()),
        )
    }

    fn render_drop_index(&self, index: IndexWalker<'_>) -> String {
        ddl::DropIndex {
            index_name: PostgresIdentifier::new(index.table().namespace(), index.name()),
        }
        .to_string()
    }

    fn render_drop_table(&self, namespace: Option<&str>, table_name: &str) -> Vec<String> {
        render_step(&mut |step| {
            step.render_statement(&mut |stmt| {
                stmt.push_display(&ddl::DropTable {
                    table_name: PostgresIdentifier::new(namespace, table_name),
                    cascade: false,
                })
            })
        })
    }

    fn render_drop_view(&self, view: ViewWalker<'_>) -> String {
        ddl::DropView {
            view_name: PostgresIdentifier::new(view.namespace(), view.name()),
        }
        .to_string()
    }

    fn render_redefine_tables(&self, tables: &[RedefineTable], schemas: MigrationPair<&SqlSchema>) -> Vec<String> {
        let mut result = Vec::new();

        for redefine_table in tables {
            let tables = schemas.walk(redefine_table.table_ids);
            let temporary_table_name = format!("_prisma_new_{}", &tables.next.name());
            let quoted_temporary_table = QuotedWithPrefix(
                tables.next.namespace().map(Quoted::postgres_ident),
                Quoted::postgres_ident(&temporary_table_name),
            );
            result.push(self.render_create_table_as(tables.next, quoted_temporary_table));

            let columns: Vec<_> = redefine_table
                .column_pairs
                .iter()
                .map(|(column_ids, _, _)| schemas.walk(*column_ids).next.name())
                .map(|c| Quoted::postgres_ident(c).to_string())
                .collect();

            let table = tables.previous.name();

            for index in tables.previous.indexes().filter(|idx| !idx.is_primary_key()) {
                result.push(self.render_drop_index(index));
            }

            if !columns.is_empty() {
                let column_names = columns.join(",");
                result.push(format!(
                    r#"INSERT INTO {quoted_temporary_table} ({column_names}) SELECT {column_names} FROM "{table}""#,
                ));
            }

            result.push(
                ddl::DropTable {
                    table_name: PostgresIdentifier::new(tables.previous.namespace(), tables.previous.name()),
                    cascade: true,
                }
                .to_string(),
            );

            result.push(self.render_rename_table(tables.next.namespace(), &temporary_table_name, tables.next.name()));

            for index in tables.next.indexes().filter(|idx| !idx.is_primary_key()) {
                result.push(self.render_create_index(index));
            }

            for fk in tables.next.foreign_keys() {
                result.push(self.render_add_foreign_key(fk));
            }
        }

        result
    }

    fn render_rename_table(&self, namespace: Option<&str>, name: &str, new_name: &str) -> String {
        format!(
            "ALTER TABLE {} RENAME TO {}",
            QuotedWithPrefix::pg_new(namespace, name),
            Quoted::postgres_ident(new_name)
        )
    }

    fn render_drop_user_defined_type(&self, _: &UserDefinedTypeWalker<'_>) -> String {
        unreachable!("render_drop_user_defined_type on PostgreSQL")
    }

    fn render_rename_foreign_key(&self, fks: MigrationPair<ForeignKeyWalker<'_>>) -> String {
        format!(
            r#"ALTER TABLE {table} RENAME CONSTRAINT {previous} TO {next}"#,
            table = QuotedWithPrefix::pg_from_table_walker(fks.previous.table()),
            previous = self.quote(fks.previous.constraint_name().unwrap()),
            next = self.quote(fks.next.constraint_name().unwrap()),
        )
    }
}

fn render_column_type(col: TableColumnWalker<'_>, flavour: &PostgresFlavour) -> Cow<'static, str> {
    let t = col.column_type();
    if let Some(enm) = col.column_type_family_as_enum() {
        let name = QuotedWithPrefix::pg_new(enm.namespace(), enm.name());
        let arity = if t.arity.is_list() { "[]" } else { "" };
        return format!("{name}{arity}").into();
    }

    if let ColumnTypeFamily::Unsupported(description) = &t.family {
        return format!("{}{}", description, if t.arity.is_list() { "[]" } else { "" }).into();
    }

    if flavour.is_cockroachdb() {
        render_column_type_cockroachdb(col)
    } else {
        render_column_type_postgres(col)
    }
}

fn render_column_type_postgres(col: TableColumnWalker<'_>) -> Cow<'static, str> {
    let t = col.column_type();
    let is_autoincrement = col.is_autoincrement();

    let native_type: &PostgresType = col
        .column_native_type()
        .expect("Missing native type in postgres_renderer::render_column_type()");

    let tpe: Cow<'_, str> = match native_type {
        PostgresType::Citext => "CITEXT".into(),
        PostgresType::Oid => "OID".into(),
        PostgresType::Inet => "INET".into(),
        PostgresType::Money => "MONEY".into(),
        PostgresType::SmallInt if is_autoincrement => "SMALLSERIAL".into(),
        PostgresType::SmallInt => "SMALLINT".into(),
        PostgresType::Integer if is_autoincrement => "SERIAL".into(),
        PostgresType::Integer => "INTEGER".into(),
        PostgresType::BigInt if is_autoincrement => "BIGSERIAL".into(),
        PostgresType::BigInt => "BIGINT".into(),
        PostgresType::Decimal(precision) => format!("DECIMAL{}", render_decimal_args(*precision)).into(),
        PostgresType::Real => "REAL".into(),
        PostgresType::DoublePrecision => "DOUBLE PRECISION".into(),
        PostgresType::VarChar(length) => format!("VARCHAR{}", render_optional_args(*length)).into(),
        PostgresType::Char(length) => format!("CHAR{}", render_optional_args(*length)).into(),
        PostgresType::Text => "TEXT".into(),
        PostgresType::ByteA => "BYTEA".into(),
        PostgresType::Date => "DATE".into(),
        PostgresType::Timestamp(precision) => format!("TIMESTAMP{}", render_optional_args(*precision)).into(),
        PostgresType::Timestamptz(precision) => format!("TIMESTAMPTZ{}", render_optional_args(*precision)).into(),
        PostgresType::Time(precision) => format!("TIME{}", render_optional_args(*precision)).into(),
        PostgresType::Timetz(precision) => format!("TIMETZ{}", render_optional_args(*precision)).into(),
        PostgresType::Boolean => "BOOLEAN".into(),
        PostgresType::Bit(length) => format!("BIT{}", render_optional_args(*length)).into(),
        PostgresType::VarBit(length) => format!("VARBIT{}", render_optional_args(*length)).into(),
        PostgresType::Uuid => "UUID".into(),
        PostgresType::Xml => "XML".into(),
        PostgresType::Json => "JSON".into(),
        PostgresType::JsonB => "JSONB".into(),
    };

    if t.arity.is_list() {
        format!("{tpe}[]").into()
    } else {
        tpe
    }
}

fn render_column_type_cockroachdb(col: TableColumnWalker<'_>) -> Cow<'static, str> {
    let t = col.column_type();
    let native_type = col
        .column_native_type()
        .expect("Missing native type in postgres_renderer::render_column_type()");

    let tpe: Cow<'_, str> = match native_type {
        CockroachType::Inet => "INET".into(),
        CockroachType::Int2 => "INT2".into(),
        CockroachType::Int4 => "INT4".into(),
        CockroachType::Int8 => "INT8".into(),
        CockroachType::Oid => "OID".into(),
        CockroachType::Decimal(precision) => format!("DECIMAL{}", render_decimal_args(*precision)).into(),
        CockroachType::Float4 => "FLOAT4".into(),
        CockroachType::Float8 => "FLOAT8".into(),
        CockroachType::String(length) => format!("STRING{}", render_optional_args(*length)).into(),

        // https://www.cockroachlabs.com/docs/stable/string.html
        CockroachType::Char(length) => format!("CHAR{}", render_optional_args(*length)).into(),
        CockroachType::CatalogSingleChar => r#""char""#.into(),

        CockroachType::Bytes => "BYTES".into(),
        CockroachType::Date => "DATE".into(),
        CockroachType::Timestamp(precision) => format!("TIMESTAMP{}", render_optional_args(*precision)).into(),
        CockroachType::Timestamptz(precision) => format!("TIMESTAMPTZ{}", render_optional_args(*precision)).into(),
        CockroachType::Time(precision) => format!("TIME{}", render_optional_args(*precision)).into(),
        CockroachType::Timetz(precision) => format!("TIMETZ{}", render_optional_args(*precision)).into(),
        CockroachType::Bool => "BOOL".into(),
        CockroachType::Bit(length) => format!("BIT{}", render_optional_args(*length)).into(),
        CockroachType::VarBit(length) => format!("VARBIT{}", render_optional_args(*length)).into(),
        CockroachType::Uuid => "UUID".into(),
        CockroachType::JsonB => "JSONB".into(),
    };

    if t.arity.is_list() {
        format!("{tpe}[]").into()
    } else {
        tpe
    }
}

fn render_optional_args(input: Option<u32>) -> String {
    match input {
        None => "".to_string(),
        Some(arg) => format!("({arg})"),
    }
}

fn render_decimal_args(input: Option<(u32, u32)>) -> String {
    match input {
        None => "".to_string(),
        Some((precision, scale)) => format!("({precision},{scale})"),
    }
}

/// Escape an in-memory string so it becomes a valid string literal with default escaping, i.e.
/// replacing `'` characters with `''`.
fn escape_string_literal(s: &str) -> Cow<'_, str> {
    let mut char_indices = s.char_indices();
    let first_idx = loop {
        match char_indices.next() {
            Some((idx, '\'')) => break idx,
            Some(_) => (),
            None => return Cow::Borrowed(s),
        }
    };

    let mut out = String::with_capacity(s.len() + 1); // at least one more char
    out.push_str(&s[0..first_idx]);

    for c in s[first_idx..].chars() {
        match c {
            '\'' => {
                out.push_str("''");
            }
            c => out.push(c),
        }
    }

    Cow::Owned(out)
}

fn render_alter_column(
    columns: MigrationPair<TableColumnWalker<'_>>,
    column_changes: &ColumnChanges,
    before_statements: &mut Vec<String>,
    clauses: &mut Vec<String>,
    after_statements: &mut Vec<String>,
    flavour: &PostgresFlavour,
) {
    let steps = expand_alter_column(columns, column_changes);
    let table_name = QuotedWithPrefix::pg_from_table_walker(columns.previous.table());
    let column_name = Quoted::postgres_ident(columns.previous.name());

    let alter_column_prefix = format!("ALTER COLUMN {column_name}");

    for step in steps {
        match step {
            PostgresAlterColumn::DropDefault => {
                clauses.push(format!("{} DROP DEFAULT", &alter_column_prefix));

                // We also need to drop the sequence, in case it isn't used by any other column.
                if let Some(DefaultKind::Sequence(sequence_name)) = columns.previous.default().map(|d| d.kind()) {
                    let sequence_is_still_used = columns.next.schema.walk_table_columns().any(|column| matches!(column.default().map(|d| d.kind()), Some(DefaultKind::Sequence(other_sequence)) if other_sequence == sequence_name) && !column.is_same_column(columns.next));

                    if !sequence_is_still_used {
                        after_statements.push(format!("DROP SEQUENCE {}", Quoted::postgres_ident(sequence_name)));
                    }
                }
            }
            PostgresAlterColumn::SetDefault(new_default) => clauses.push(format!(
                "{} SET DEFAULT {}",
                &alter_column_prefix,
                render_default(&new_default, &render_column_type(columns.next, flavour))
            )),
            PostgresAlterColumn::DropNotNull => clauses.push(format!("{} DROP NOT NULL", &alter_column_prefix)),
            PostgresAlterColumn::SetNotNull => clauses.push(format!("{} SET NOT NULL", &alter_column_prefix)),
            PostgresAlterColumn::SetType => clauses.push(format!(
                "{} SET DATA TYPE {}",
                &alter_column_prefix,
                render_column_type(columns.next, flavour)
            )),
            PostgresAlterColumn::AddSequence => {
                // We imitate the sequence that would be automatically created on a `SERIAL` column.
                //
                // See the postgres docs for more details:
                // https://www.postgresql.org/docs/12/datatype-numeric.html#DATATYPE-SERIAL
                let sequence_name = format!(
                    "{namespace}{table_name}_{column_name}_seq",
                    namespace = match columns.next.table().namespace() {
                        Some(namespace) => format!("{}.", Quoted::postgres_ident(namespace)),
                        None => String::from(""),
                    },
                    table_name = columns.next.table().name(),
                    column_name = columns.next.name()
                )
                .to_lowercase();

                before_statements.push(format!("CREATE SEQUENCE {sequence_name}"));

                clauses.push(format!(
                    "{prefix} SET DEFAULT {default}",
                    prefix = alter_column_prefix,
                    default = format_args!("nextval({})", Quoted::postgres_string(&sequence_name))
                ));

                after_statements.push(format!(
                    "ALTER SEQUENCE {sequence_name} OWNED BY {table_name}.{column_name}",
                ));
            }
        }
    }
}

fn expand_alter_column(
    columns: MigrationPair<TableColumnWalker<'_>>,
    column_changes: &ColumnChanges,
) -> Vec<PostgresAlterColumn> {
    let mut changes = Vec::new();
    let mut set_type = false;

    for change in column_changes.iter() {
        match change {
            ColumnChange::Default => match (columns.previous.default(), columns.next.default()) {
                (_, Some(next_default)) => changes.push(PostgresAlterColumn::SetDefault(next_default.inner().clone())),
                (_, None) => changes.push(PostgresAlterColumn::DropDefault),
            },
            ColumnChange::Arity => match (columns.previous.arity(), columns.next.arity()) {
                (ColumnArity::Required, ColumnArity::Nullable) => changes.push(PostgresAlterColumn::DropNotNull),
                (ColumnArity::Nullable, ColumnArity::Required) => changes.push(PostgresAlterColumn::SetNotNull),
                (ColumnArity::List, ColumnArity::Nullable) => {
                    set_type = true;
                    changes.push(PostgresAlterColumn::DropNotNull)
                }
                (ColumnArity::List, ColumnArity::Required) => {
                    set_type = true;
                    changes.push(PostgresAlterColumn::SetNotNull)
                }
                (ColumnArity::Nullable, ColumnArity::List) | (ColumnArity::Required, ColumnArity::List) => {
                    set_type = true;
                }
                (ColumnArity::Nullable, ColumnArity::Nullable)
                | (ColumnArity::Required, ColumnArity::Required)
                | (ColumnArity::List, ColumnArity::List) => (),
            },
            ColumnChange::TypeChanged => set_type = true,
            ColumnChange::Autoincrement => {
                if columns.previous.is_autoincrement() {
                    // The sequence should be dropped.
                    changes.push(PostgresAlterColumn::DropDefault)
                } else {
                    // The sequence should be created.
                    changes.push(PostgresAlterColumn::AddSequence)
                }
            }
        }
    }

    // This is a flag so we don't push multiple SetTypes from arity and type changes.
    if set_type {
        changes.push(PostgresAlterColumn::SetType);
    }

    changes
}

/// https://www.postgresql.org/docs/9.1/sql-altertable.html
#[derive(Debug)]
enum PostgresAlterColumn {
    SetDefault(sql_schema_describer::DefaultValue),
    DropDefault,
    DropNotNull,
    SetType,
    SetNotNull,
    /// Add an auto-incrementing sequence as a default on the column.
    AddSequence,
}

fn render_default<'a>(default: &'a DefaultValue, full_data_type: &str) -> Cow<'a, str> {
    fn render_constant_default<'a>(value: &'a PrismaValue, full_data_type: &str) -> Cow<'a, str> {
        match value {
            PrismaValue::String(val) | PrismaValue::Enum(val) => format!("'{}'", escape_string_literal(val)).into(),
            PrismaValue::Json(json_value) => {
                let mut out = String::with_capacity(json_value.len() + 2);
                out.push('\'');
                out.push_str(&escape_string_literal(json_value));
                out.push('\'');
                Cow::Owned(out)
            }
            PrismaValue::DateTime(val) => Quoted::postgres_string(val).to_string().into(),
            PrismaValue::Bytes(b) => {
                // https://www.postgresql.org/docs/current/datatype-binary.html
                let mut out = String::with_capacity(b.len() * 2 + 2);
                out.push_str("'\\x");
                format_hex(b, &mut out);
                out.push('\'');
                out.into()
            }
            PrismaValue::List(values) => {
                let mut out = String::new();
                let mut values = values.iter().peekable();

                out.push_str("ARRAY[");

                while let Some(value) = values.next() {
                    out.push_str(render_constant_default(value, full_data_type).as_ref());

                    if values.peek().is_some() {
                        out.push_str(", ");
                    }
                }

                out.push_str("]::");
                out.push_str(full_data_type);

                Cow::Owned(out)
            }

            other => other.to_string().into(),
        }
    }

    match default.kind() {
        DefaultKind::DbGenerated(Some(val)) => Cow::Borrowed(val.as_str()),
        DefaultKind::Value(PrismaValue::String(val)) | DefaultKind::Value(PrismaValue::Enum(val)) => {
            format!("'{}'", escape_string_literal(val)).into()
        }
        DefaultKind::Now => "CURRENT_TIMESTAMP".into(),
        DefaultKind::Value(value) => render_constant_default(value, full_data_type),
        DefaultKind::UniqueRowid => "unique_rowid()".into(),
        DefaultKind::Sequence(_) | DefaultKind::DbGenerated(None) => Default::default(),
    }
}

fn render_postgres_alter_enum(
    alter_enum: &AlterEnum,
    schemas: MigrationPair<&SqlSchema>,
    flavour: &PostgresFlavour,
) -> Vec<String> {
    if alter_enum.dropped_variants.is_empty() {
        let mut stmts: Vec<String> = alter_enum
            .created_variants
            .iter()
            .map(|created_value| {
                format!(
                    "ALTER TYPE {enum_name} ADD VALUE {value}",
                    enum_name = QuotedWithPrefix::pg_new(
                        schemas.walk(alter_enum.id).previous.namespace(),
                        schemas.walk(alter_enum.id).previous.name()
                    ),
                    value = Quoted::postgres_string(created_value)
                )
            })
            .collect();

        if stmts.len() > 1 {
            let warning = indoc::indoc! {
                r#"
                    -- This migration adds more than one value to an enum.
                    -- With PostgreSQL versions 11 and earlier, this is not possible
                    -- in a single migration. This can be worked around by creating
                    -- multiple migrations, each migration adding only one value to
                    -- the enum.
                    "#
            };

            stmts[0] = format!("{}\n\n{}", warning, stmts[0]);
        }

        return stmts;
    }

    let enums = schemas.walk(alter_enum.id);

    let mut stmts = Vec::with_capacity(10);

    let temporary_enum_name = format!("{}_new", &enums.next.name());
    let tmp_name = QuotedWithPrefix::pg_new(enums.next.namespace(), temporary_enum_name.as_str());
    let tmp_old_name = format!("{}_old", &enums.previous.name());

    stmts.push("BEGIN".to_string());

    // Create the new enum with tmp name
    {
        let create_new_enum = format!(
            "CREATE TYPE {enum_name} AS ENUM ({variants})",
            enum_name = tmp_name,
            variants = enums.next.values().map(Quoted::postgres_string).join(", ")
        );

        stmts.push(create_new_enum);
    }

    // Find all usages as a default and drop them
    {
        for (colid, _) in &alter_enum.previous_usages_as_default {
            let column = schemas.previous.walk(*colid);

            let drop_default = format!(
                r#"ALTER TABLE {table_name} ALTER COLUMN {column_name} DROP DEFAULT"#,
                table_name = QuotedWithPrefix::pg_from_table_walker(column.table()),
                column_name = Quoted::postgres_ident(column.name()),
            );

            stmts.push(drop_default);
        }
    }

    // Alter type of the current columns to new, with a cast
    {
        let affected_columns = schemas.next.walk_table_columns().filter(
            |column| matches!(&column.column_type().family, ColumnTypeFamily::Enum(id) if *id == enums.next.id),
        );

        for column in affected_columns {
            let array = if column.arity().is_list() { "[]" } else { "" };

            let sql = format!(
                "ALTER TABLE {table_name} \
                            ALTER COLUMN {column_name} TYPE {tmp_name}{array} \
                                USING ({column_name}::text::{tmp_name}{array})",
                table_name = QuotedWithPrefix::pg_from_table_walker(column.table()),
                column_name = Quoted::postgres_ident(column.name()),
                array = array,
            );

            stmts.push(sql);
        }
    }

    // Rename old enum
    {
        let sql = format!(
            "ALTER TYPE {enum_name} RENAME TO {tmp_old_name}",
            enum_name = QuotedWithPrefix::pg_new(enums.previous.namespace(), enums.previous.name()),
            tmp_old_name = Quoted::postgres_ident(&tmp_old_name)
        );

        stmts.push(sql);
    }

    // Rename new enum
    {
        let sql = format!(
            "ALTER TYPE {tmp_name} RENAME TO {enum_name}",
            enum_name = Quoted::postgres_ident(enums.next.name())
        );

        stmts.push(sql)
    }

    // Drop old enum
    {
        let sql = ddl::DropType {
            type_name: PostgresIdentifier::new(enums.previous.namespace(), tmp_old_name.as_str()),
        }
        .to_string();

        stmts.push(sql)
    }

    // Reinstall dropped defaults that need to be reinstalled
    {
        for (columns, next_default) in alter_enum
            .previous_usages_as_default
            .iter()
            .filter_map(|(prev, next)| next.map(|next| schemas.walk(MigrationPair::new(*prev, next))))
            .filter_map(|columns| columns.next.default().map(|next_default| (columns, next_default)))
        {
            let table_name = columns.previous.table().name();
            let column_name = columns.previous.name();
            let data_type = render_column_type(columns.next, flavour);
            let default_str = render_default(next_default.inner(), &data_type);

            let set_default = format!(
                "ALTER TABLE {table_name} ALTER COLUMN {column_name} SET DEFAULT {default}",
                table_name = QuotedWithPrefix::pg_new(columns.previous.table().namespace(), table_name),
                column_name = Quoted::postgres_ident(&column_name),
                default = default_str,
            );

            stmts.push(set_default);
        }
    }

    stmts.push("COMMIT".to_string());

    stmts
}

fn render_cockroach_alter_enum(
    alter_enum: &AlterEnum,
    schemas: MigrationPair<&SqlSchema>,
    renderer: &mut StepRenderer,
) {
    let enums = schemas.walk(alter_enum.id);
    let mut prefix = String::new();
    prefix.push_str("ALTER TYPE ");
    prefix.push_str(
        QuotedWithPrefix::pg_new(enums.previous.namespace(), enums.previous.name())
            .to_string()
            .as_str(),
    );

    // Defaults that use a dropped value will need to be recreated after the alter enum.
    let defaults_to_drop = alter_enum
        .previous_usages_as_default
        .iter()
        .filter_map(|(prev_colidx, _)| {
            let col = schemas.previous.walk(*prev_colidx);
            col.default()
                .and_then(|d| d.as_value())
                .and_then(|v| v.as_enum_value())
                .map(|value| (col, value))
        })
        .filter(|(_, value)| !enums.next.values().any(|v| v == *value));

    for (col, _) in defaults_to_drop {
        renderer.render_statement(&mut |stmt| {
            stmt.push_str("ALTER TABLE ");
            stmt.push_display(&QuotedWithPrefix::pg_from_table_walker(col.table()));
            stmt.push_str(" ALTER COLUMN ");
            stmt.push_display(&Quoted::postgres_ident(col.name()));
            stmt.push_str(" DROP DEFAULT");
        })
    }

    for variant in &alter_enum.created_variants {
        renderer.render_statement(&mut |stmt| {
            stmt.push_str(&prefix);
            stmt.push_str(" ADD VALUE '");
            stmt.push_str(variant);
            stmt.push_str("'");
        });
    }

    for variant in &alter_enum.dropped_variants {
        renderer.render_statement(&mut |stmt| {
            stmt.push_str(&prefix);
            stmt.push_str("DROP VALUE '");
            stmt.push_str(variant);
            stmt.push_str("'");
        });
    }
}

fn render_column_identity_str(column: TableColumnWalker<'_>, flavour: &PostgresFlavour) -> String {
    if !flavour.is_cockroachdb() {
        return String::new();
    }

    let sequence = if let Some(seq_name) = column.default().as_ref().and_then(|d| d.as_sequence()) {
        let connector_data: &PostgresSchemaExt = column.schema.downcast_connector_data();
        connector_data
            .sequences
            .iter()
            .find(|sequence| sequence.name == seq_name)
            .unwrap()
    } else {
        return String::new();
    };

    let mut options = Vec::new();

    if sequence.r#virtual {
        options.push("VIRTUAL".to_owned());
    }

    if sequence.increment_by > 1 {
        options.push(format!("INCREMENT {}", sequence.increment_by));
    }

    if sequence.cache_size > 1 {
        options.push(format!("CACHE {}", sequence.cache_size))
    }

    if sequence.start_value > 1 {
        options.push(format!("START {}", sequence.start_value))
    }

    if sequence.min_value > 1 {
        options.push(format!("MINVALUE {}", sequence.min_value))
    }

    if sequence.max_value != 0 && sequence.max_value != i64::MAX {
        options.push(format!("MAXVALUE {}", sequence.max_value))
    }

    if options.is_empty() {
        String::from(" GENERATED BY DEFAULT AS IDENTITY")
    } else {
        format!(" GENERATED BY DEFAULT AS IDENTITY ({})", options.join(" "))
    }
}