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
use psl::parser_database::walkers;
use sql::postgres::PostgresSchemaExt;
use sql_schema_describer as sql;
use std::borrow::Cow;

use super::{IntrospectionPair, ScalarFieldPair};

/// Pairing PSL index field to field in database index definition.
/// Both values are optional, due to in some cases we plainly just copy
/// the PSL argument to the rendered data model.
///
/// This happens with views, where we need at least one unique
/// field in the view definition, but the database does not
/// hold constraints on views.
pub(crate) type IndexFieldPair<'a> =
    IntrospectionPair<'a, Option<walkers::ScalarFieldWalker<'a>>, Option<sql::IndexColumnWalker<'a>>>;

pub(crate) enum IndexOps<'a> {
    Managed(&'a str),
    Raw(&'a str),
}

impl<'a> IndexFieldPair<'a> {
    /// The name of the field (as used in Prisma).
    pub(crate) fn name(self) -> Cow<'a, str> {
        match self.field() {
            Some(field) => field.name(),
            None => Cow::Borrowed(self.previous.unwrap().name()),
        }
    }

    /// The ordering of the column in the database. Returns a value if
    /// non-default.
    pub(crate) fn sort_order(self) -> Option<&'static str> {
        match self.next {
            Some(next) => next
                .sort_order()
                .filter(|so| matches!(so, sql::SQLSortOrder::Desc))
                .map(|_| "Desc"),
            None => None,
        }
    }

    /// A MySQL specific length definition for the indexed column.
    pub(crate) fn length(self) -> Option<u32> {
        self.next.and_then(|next| next.length())
    }

    /// True, if we _add_ an index with non-default null position.
    pub(crate) fn adds_non_default_null_position(self) -> bool {
        if self.previous.is_some() {
            return false;
        }

        match self.next {
            Some(next) => self.context.flavour.uses_non_default_null_position(self.context, next),
            None => false,
        }
    }

    /// A PostgreSQL specific operator class for the indexed column.
    pub(crate) fn opclass(self) -> Option<IndexOps<'a>> {
        if !self.context.sql_family.is_postgres() {
            return None;
        }

        let ext: &PostgresSchemaExt = self.context.sql_schema.downcast_connector_data();

        let next = match self.next {
            Some(next) => next,
            None => return None,
        };

        let opclass = match ext.get_opclass(next.id) {
            Some(opclass) => opclass,
            None => return None,
        };

        match &opclass.kind {
            _ if opclass.is_default => None,
            sql::postgres::SQLOperatorClassKind::InetOps => Some(IndexOps::Managed("InetOps")),
            sql::postgres::SQLOperatorClassKind::JsonbOps => Some(IndexOps::Managed("JsonbOps")),
            sql::postgres::SQLOperatorClassKind::JsonbPathOps => Some(IndexOps::Managed("JsonbPathOps")),
            sql::postgres::SQLOperatorClassKind::ArrayOps => Some(IndexOps::Managed("ArrayOps")),
            sql::postgres::SQLOperatorClassKind::TextOps => Some(IndexOps::Managed("TextOps")),
            sql::postgres::SQLOperatorClassKind::BitMinMaxOps => Some(IndexOps::Managed("BitMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::VarBitMinMaxOps => Some(IndexOps::Managed("VarBitMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::BpcharBloomOps => Some(IndexOps::Managed("BpcharBloomOps")),
            sql::postgres::SQLOperatorClassKind::BpcharMinMaxOps => Some(IndexOps::Managed("BpcharMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::ByteaBloomOps => Some(IndexOps::Managed("ByteaBloomOps")),
            sql::postgres::SQLOperatorClassKind::ByteaMinMaxOps => Some(IndexOps::Managed("ByteaMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::DateBloomOps => Some(IndexOps::Managed("DateBloomOps")),
            sql::postgres::SQLOperatorClassKind::DateMinMaxOps => Some(IndexOps::Managed("DateMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::DateMinMaxMultiOps => Some(IndexOps::Managed("DateMinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::Float4BloomOps => Some(IndexOps::Managed("Float4BloomOps")),
            sql::postgres::SQLOperatorClassKind::Float4MinMaxOps => Some(IndexOps::Managed("Float4MinMaxOps")),
            sql::postgres::SQLOperatorClassKind::Float4MinMaxMultiOps => {
                Some(IndexOps::Managed("Float4MinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::Float8BloomOps => Some(IndexOps::Managed("Float8BloomOps")),
            sql::postgres::SQLOperatorClassKind::Float8MinMaxOps => Some(IndexOps::Managed("Float8MinMaxOps")),
            sql::postgres::SQLOperatorClassKind::Float8MinMaxMultiOps => {
                Some(IndexOps::Managed("Float8MinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::InetInclusionOps => Some(IndexOps::Managed("InetInclusionOps")),
            sql::postgres::SQLOperatorClassKind::InetBloomOps => Some(IndexOps::Managed("InetBloomOps")),
            sql::postgres::SQLOperatorClassKind::InetMinMaxOps => Some(IndexOps::Managed("InetMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::InetMinMaxMultiOps => Some(IndexOps::Managed("InetMinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::Int2BloomOps => Some(IndexOps::Managed("Int2BloomOps")),
            sql::postgres::SQLOperatorClassKind::Int2MinMaxOps => Some(IndexOps::Managed("Int2MinMaxOps")),
            sql::postgres::SQLOperatorClassKind::Int2MinMaxMultiOps => Some(IndexOps::Managed("Int2MinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::Int4BloomOps => Some(IndexOps::Managed("Int4BloomOps")),
            sql::postgres::SQLOperatorClassKind::Int4MinMaxOps => Some(IndexOps::Managed("Int4MinMaxOps")),
            sql::postgres::SQLOperatorClassKind::Int4MinMaxMultiOps => Some(IndexOps::Managed("Int4MinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::Int8BloomOps => Some(IndexOps::Managed("Int8BloomOps")),
            sql::postgres::SQLOperatorClassKind::Int8MinMaxOps => Some(IndexOps::Managed("Int8MinMaxOps")),
            sql::postgres::SQLOperatorClassKind::Int8MinMaxMultiOps => Some(IndexOps::Managed("Int8MinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::NumericBloomOps => Some(IndexOps::Managed("NumericBloomOps")),
            sql::postgres::SQLOperatorClassKind::NumericMinMaxOps => Some(IndexOps::Managed("NumericMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::NumericMinMaxMultiOps => {
                Some(IndexOps::Managed("NumericMinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::OidBloomOps => Some(IndexOps::Managed("OidBloomOps")),
            sql::postgres::SQLOperatorClassKind::OidMinMaxOps => Some(IndexOps::Managed("OidMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::OidMinMaxMultiOps => Some(IndexOps::Managed("OidMinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::TextBloomOps => Some(IndexOps::Managed("TextBloomOps")),
            sql::postgres::SQLOperatorClassKind::TextMinMaxOps => Some(IndexOps::Managed("TextMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::TimestampBloomOps => Some(IndexOps::Managed("TimestampBloomOps")),
            sql::postgres::SQLOperatorClassKind::TimestampMinMaxOps => Some(IndexOps::Managed("TimestampMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::TimestampMinMaxMultiOps => {
                Some(IndexOps::Managed("TimestampMinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::TimestampTzBloomOps => Some(IndexOps::Managed("TimestampTzBloomOps")),
            sql::postgres::SQLOperatorClassKind::TimestampTzMinMaxOps => {
                Some(IndexOps::Managed("TimestampTzMinMaxOps"))
            }
            sql::postgres::SQLOperatorClassKind::TimestampTzMinMaxMultiOps => {
                Some(IndexOps::Managed("TimestampTzMinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::TimeBloomOps => Some(IndexOps::Managed("TimeBloomOps")),
            sql::postgres::SQLOperatorClassKind::TimeMinMaxOps => Some(IndexOps::Managed("TimeMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::TimeMinMaxMultiOps => Some(IndexOps::Managed("TimeMinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::TimeTzBloomOps => Some(IndexOps::Managed("TimeTzBloomOps")),
            sql::postgres::SQLOperatorClassKind::TimeTzMinMaxOps => Some(IndexOps::Managed("TimeTzMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::TimeTzMinMaxMultiOps => {
                Some(IndexOps::Managed("TimeTzMinMaxMultiOps"))
            }
            sql::postgres::SQLOperatorClassKind::UuidBloomOps => Some(IndexOps::Managed("UuidBloomOps")),
            sql::postgres::SQLOperatorClassKind::UuidMinMaxOps => Some(IndexOps::Managed("UuidMinMaxOps")),
            sql::postgres::SQLOperatorClassKind::UuidMinMaxMultiOps => Some(IndexOps::Managed("UuidMinMaxMultiOps")),
            sql::postgres::SQLOperatorClassKind::Raw(ref c) => Some(IndexOps::Raw(c)),
        }
    }

    fn field(self) -> Option<ScalarFieldPair<'a>> {
        let next = match self.next {
            Some(next) => next,
            None => return None,
        };

        let previous = self.context.existing_table_scalar_field(next.as_column().id);
        let next = next.as_column();

        Some(IntrospectionPair::new(self.context, previous, next.coarsen()))
    }
}