risingwave_frontend/utils/
data_type.rs1use risingwave_common::types::DataType;
16use risingwave_sqlparser::ast::{DataType as AstDataType, StructField};
17
18#[easy_ext::ext(DataTypeToAst)]
19impl DataType {
20 pub fn to_ast(&self) -> AstDataType {
22 match self {
23 DataType::Boolean => AstDataType::Boolean,
24 DataType::Int16 => AstDataType::SmallInt,
25 DataType::Int32 => AstDataType::Int,
26 DataType::Int64 => AstDataType::BigInt,
27 DataType::Float32 => AstDataType::Real,
28 DataType::Float64 => AstDataType::Double,
29 DataType::Decimal => AstDataType::Decimal(None, None),
31 DataType::Date => AstDataType::Date,
32 DataType::Varchar => AstDataType::Varchar,
33 DataType::Time => AstDataType::Time(false),
34 DataType::Timestamp => AstDataType::Timestamp(false),
35 DataType::Timestamptz => AstDataType::Timestamp(true),
36 DataType::Interval => AstDataType::Interval,
37 DataType::Jsonb => AstDataType::Jsonb,
38 DataType::Bytea => AstDataType::Bytea,
39 DataType::List(item_ty) => AstDataType::Array(Box::new(item_ty.to_ast())),
40 DataType::Struct(fields) => {
41 let fields = fields
42 .iter()
43 .map(|(name, ty)| StructField {
44 name: name.into(),
45 data_type: ty.to_ast(),
46 })
47 .collect();
48 AstDataType::Struct(fields)
49 }
50 DataType::Int256 => AstDataType::Custom(vec!["rw_int256".into()].into()),
51 DataType::Map(map) => {
52 AstDataType::Map(Box::new((map.key().to_ast(), map.value().to_ast())))
53 }
54 DataType::Serial => unreachable!("serial type should not be user-defined"),
55 }
56 }
57}