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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use chrono::{DateTime, NaiveDateTime, Utc};
use mz_ore::result::ResultExt;
use mz_repr::adt::interval::Interval;
use mz_repr::adt::numeric::Numeric;
use mz_repr::adt::timestamp::CheckedTimestamp;
use mz_repr::{strconv, Timestamp};

use crate::EvalError;

// Conversions to and from MzTimestamp to make it ergonomic to use. Although, theoretically, an
// MzTimestamp might not always mean milliseconds-since-unix-epoch, in practice it currently always
// does mean that. In order to increase usability of this type, we will provide casts and operators
// that make that assumption.

sqlfunc!(
    #[sqlname = "mz_timestamp_to_text"]
    #[preserves_uniqueness = true]
    #[inverse = to_unary!(super::CastStringToMzTimestamp)]
    fn cast_mz_timestamp_to_string(a: Timestamp) -> String {
        let mut buf = String::new();
        strconv::format_mz_timestamp(&mut buf, a);
        buf
    }
);

sqlfunc!(
    #[sqlname = "text_to_mz_timestamp"]
    #[preserves_uniqueness = false]
    #[inverse = to_unary!(super::CastMzTimestampToString)]
    fn cast_string_to_mz_timestamp(a: String) -> Result<Timestamp, EvalError> {
        strconv::parse_mz_timestamp(&a).err_into()
    }
);

sqlfunc!(
    #[sqlname = "numeric_to_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn cast_numeric_to_mz_timestamp(a: Numeric) -> Result<Timestamp, EvalError> {
        // The try_into will error if the conversion is lossy (out of range or fractional).
        a.try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))
    }
);

sqlfunc!(
    #[sqlname = "uint8_to_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn cast_uint64_to_mz_timestamp(a: u64) -> Timestamp {
        a.into()
    }
);

sqlfunc!(
    #[sqlname = "uint4_to_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn cast_uint32_to_mz_timestamp(a: u32) -> Timestamp {
        u64::from(a).into()
    }
);

sqlfunc!(
    #[sqlname = "bigint_to_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn cast_int64_to_mz_timestamp(a: i64) -> Result<Timestamp, EvalError> {
        a.try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))
    }
);

sqlfunc!(
    #[sqlname = "integer_to_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn cast_int32_to_mz_timestamp(a: i32) -> Result<Timestamp, EvalError> {
        i64::from(a)
            .try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))
    }
);

sqlfunc!(
    #[sqlname = "timestamp_tz_to_mz_timestamp"]
    #[is_monotone = true]
    fn cast_timestamp_tz_to_mz_timestamp(
        a: CheckedTimestamp<DateTime<Utc>>,
    ) -> Result<Timestamp, EvalError> {
        a.timestamp_millis()
            .try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))
    }
);

sqlfunc!(
    #[sqlname = "interval_to_mz_timestamp"]
    #[is_monotone = true]
    fn cast_interval_to_mz_timestamp(a: Interval) -> Result<Timestamp, EvalError> {
        let ms: u64 = a
            .as_milliseconds()
            .try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))?;
        Ok(ms.into())
    }
);

sqlfunc!(
    #[sqlname = "timestamp_to_mz_timestamp"]
    #[is_monotone = true]
    fn cast_timestamp_to_mz_timestamp(
        a: CheckedTimestamp<NaiveDateTime>,
    ) -> Result<Timestamp, EvalError> {
        a.and_utc()
            .timestamp_millis()
            .try_into()
            .map_err(|_| EvalError::MzTimestampOutOfRange(a.to_string()))
    }
);

sqlfunc!(
    #[sqlname = "mz_timestamp_to_timestamp"]
    #[preserves_uniqueness = true]
    #[inverse = to_unary!(super::CastTimestampToMzTimestamp)]
    fn cast_mz_timestamp_to_timestamp(
        a: Timestamp,
    ) -> Result<CheckedTimestamp<NaiveDateTime>, EvalError> {
        let ms: i64 = a.try_into().map_err(|_| EvalError::TimestampOutOfRange)?;
        let ct = DateTime::from_timestamp_millis(ms).and_then(|dt| {
            let ct: Option<CheckedTimestamp<NaiveDateTime>> = dt.naive_utc().try_into().ok();
            ct
        });
        ct.ok_or(EvalError::TimestampOutOfRange)
    }
);

sqlfunc!(
    #[sqlname = "mz_timestamp_to_timestamp_tz"]
    #[preserves_uniqueness = true]
    #[inverse = to_unary!(super::CastTimestampTzToMzTimestamp)]
    fn cast_mz_timestamp_to_timestamp_tz(
        a: Timestamp,
    ) -> Result<CheckedTimestamp<DateTime<Utc>>, EvalError> {
        let ms: i64 = a.try_into().map_err(|_| EvalError::TimestampOutOfRange)?;
        let ct = DateTime::from_timestamp_millis(ms).and_then(|dt| {
            let ct: Option<CheckedTimestamp<DateTime<Utc>>> = dt.try_into().ok();
            ct
        });
        ct.ok_or(EvalError::TimestampOutOfRange)
    }
);

sqlfunc!(
    #[sqlname = "step_mz_timestamp"]
    #[preserves_uniqueness = true]
    #[is_monotone = true]
    fn step_mz_timestamp(a: Timestamp) -> Result<Timestamp, EvalError> {
        a.checked_add(1).ok_or(EvalError::MzTimestampStepOverflow)
    }
);