risingwave_sqlparser/ast/
data_type.rs1#[cfg(not(feature = "std"))]
14use alloc::boxed::Box;
15use core::fmt;
16
17#[cfg(feature = "serde")]
18use serde::{Deserialize, Serialize};
19
20use crate::ast::{Ident, ObjectName, display_comma_separated};
21
22#[derive(Debug, Clone, PartialEq, Eq, Hash)]
24#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
25pub enum DataType {
26 Char(Option<u64>),
28 Varchar,
31 Uuid,
33 Decimal(Option<u64>, Option<u64>),
35 Float(Option<u64>),
37 SmallInt,
39 Int,
41 BigInt,
43 Real,
45 Double,
47 Boolean,
49 Date,
51 Time(bool),
53 Timestamp(bool),
55 Interval,
57 Regclass,
59 Regproc,
61 Text,
63 Bytea,
65 Jsonb,
67 Custom(ObjectName),
69 Array(Box<DataType>),
71 Struct(Vec<StructField>),
73 Map(Box<(DataType, DataType)>),
75}
76
77impl fmt::Display for DataType {
78 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
79 match self {
80 DataType::Char(size) => format_type_with_optional_length(f, "CHAR", size),
81 DataType::Varchar => write!(f, "CHARACTER VARYING"),
82 DataType::Uuid => write!(f, "UUID"),
83 DataType::Decimal(precision, scale) => {
84 if let Some(scale) = scale {
85 write!(f, "NUMERIC({},{})", precision.unwrap(), scale)
86 } else {
87 format_type_with_optional_length(f, "NUMERIC", precision)
88 }
89 }
90 DataType::Float(size) => format_type_with_optional_length(f, "FLOAT", size),
91 DataType::SmallInt => {
92 write!(f, "SMALLINT")
93 }
94 DataType::Int => write!(f, "INT"),
95 DataType::BigInt => write!(f, "BIGINT"),
96 DataType::Real => write!(f, "REAL"),
97 DataType::Double => write!(f, "DOUBLE"),
98 DataType::Boolean => write!(f, "BOOLEAN"),
99 DataType::Date => write!(f, "DATE"),
100 DataType::Time(tz) => write!(f, "TIME{}", if *tz { " WITH TIME ZONE" } else { "" }),
101 DataType::Timestamp(tz) => {
102 write!(f, "TIMESTAMP{}", if *tz { " WITH TIME ZONE" } else { "" })
103 }
104 DataType::Interval => write!(f, "INTERVAL"),
105 DataType::Regclass => write!(f, "REGCLASS"),
106 DataType::Regproc => write!(f, "REGPROC"),
107 DataType::Text => write!(f, "TEXT"),
108 DataType::Bytea => write!(f, "BYTEA"),
109 DataType::Jsonb => write!(f, "JSONB"),
110 DataType::Array(ty) => write!(f, "{}[]", ty),
111 DataType::Custom(ty) => write!(f, "{}", ty),
112 DataType::Struct(defs) => {
113 write!(f, "STRUCT<{}>", display_comma_separated(defs))
114 }
115 DataType::Map(kv) => {
116 write!(f, "MAP({},{})", kv.0, kv.1)
117 }
118 }
119 }
120}
121
122fn format_type_with_optional_length(
123 f: &mut fmt::Formatter<'_>,
124 sql_type: &'static str,
125 len: &Option<u64>,
126) -> fmt::Result {
127 write!(f, "{}", sql_type)?;
128 if let Some(len) = len {
129 write!(f, "({})", len)?;
130 }
131 Ok(())
132}
133
134#[derive(Debug, Clone, PartialEq, Eq, Hash)]
135#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
136pub struct StructField {
137 pub name: Ident,
138 pub data_type: DataType,
139}
140
141impl fmt::Display for StructField {
142 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
143 write!(f, "{} {}", self.name, self.data_type)
144 }
145}