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
// 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.
//! SQL normalization routines.
//!
//! Normalization is the process of taking relatively unstructured types from
//! the [`ast`] module and converting them to more structured types.
//!
//! [`ast`]: crate::ast
use std::fmt;
use itertools::Itertools;
use mz_repr::{ColumnName, GlobalId};
use mz_sql_parser::ast::display::AstDisplay;
use mz_sql_parser::ast::visit_mut::{self, VisitMut};
use mz_sql_parser::ast::{
ContinualTaskStmt, CreateConnectionStatement, CreateContinualTaskStatement,
CreateContinualTaskSugar, CreateIndexStatement, CreateMaterializedViewStatement,
CreateSecretStatement, CreateSinkStatement, CreateSourceStatement, CreateSubsourceStatement,
CreateTableFromSourceStatement, CreateTableStatement, CreateTypeStatement, CreateViewStatement,
CreateWebhookSourceStatement, CteBlock, Function, FunctionArgs, Ident, IfExistsBehavior,
MutRecBlock, Op, Query, Statement, TableFactor, TableFromSourceColumns, UnresolvedItemName,
UnresolvedSchemaName, Value, ViewDefinition,
};
use crate::names::{Aug, FullItemName, PartialItemName, PartialSchemaName, RawDatabaseSpecifier};
use crate::plan::error::PlanError;
use crate::plan::statement::StatementContext;
/// Normalizes a single identifier.
pub fn ident(ident: Ident) -> String {
ident.into_string()
}
/// Normalizes a single identifier.
pub fn ident_ref(ident: &Ident) -> &str {
ident.as_str()
}
/// Normalizes an identifier that represents a column name.
pub fn column_name(id: Ident) -> ColumnName {
ColumnName::from(ident(id))
}
/// Normalizes an unresolved object name.
pub fn unresolved_item_name(mut name: UnresolvedItemName) -> Result<PartialItemName, PlanError> {
if name.0.len() < 1 || name.0.len() > 3 {
return Err(PlanError::MisqualifiedName(name.to_string()));
}
let out = PartialItemName {
item: ident(
name.0
.pop()
.expect("name checked to have at least one component"),
),
schema: name.0.pop().map(ident),
database: name.0.pop().map(ident),
};
assert!(name.0.is_empty());
Ok(out)
}
/// Normalizes an unresolved schema name.
pub fn unresolved_schema_name(
mut name: UnresolvedSchemaName,
) -> Result<PartialSchemaName, PlanError> {
if name.0.len() < 1 || name.0.len() > 2 {
return Err(PlanError::MisqualifiedName(name.to_string()));
}
let out = PartialSchemaName {
schema: ident(
name.0
.pop()
.expect("name checked to have at least one component"),
),
database: name.0.pop().map(ident),
};
assert!(name.0.is_empty());
Ok(out)
}
/// Normalizes an operator reference.
///
/// Qualified operators outside of the pg_catalog schema are rejected.
pub fn op(op: &Op) -> Result<&str, PlanError> {
if let Some(namespace) = &op.namespace {
if namespace.len() != 0
&& (namespace.len() != 1
|| namespace[0].as_str() != mz_repr::namespaces::PG_CATALOG_SCHEMA)
{
sql_bail!(
"operator does not exist: {}.{}",
namespace.iter().map(|n| n.to_string()).join("."),
op.op,
)
}
}
Ok(&op.op)
}
#[derive(Debug, Clone)]
pub enum SqlValueOrSecret {
Value(Value),
Secret(GlobalId),
}
impl fmt::Display for SqlValueOrSecret {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
SqlValueOrSecret::Value(v) => write!(f, "{}", v),
SqlValueOrSecret::Secret(id) => write!(f, "{}", id),
}
}
}
impl From<SqlValueOrSecret> for Option<Value> {
fn from(s: SqlValueOrSecret) -> Self {
match s {
SqlValueOrSecret::Value(v) => Some(v),
SqlValueOrSecret::Secret(_id) => None,
}
}
}
/// Unnormalizes an item name.
///
/// This is the inverse of the [`unresolved_item_name`] function.
pub fn unresolve(name: FullItemName) -> UnresolvedItemName {
// TODO(parkmycar): Refactor FullItemName to use `Ident`.
let mut out = vec![];
if let RawDatabaseSpecifier::Name(n) = name.database {
out.push(Ident::new_unchecked(n));
}
out.push(Ident::new_unchecked(name.schema));
out.push(Ident::new_unchecked(name.item));
UnresolvedItemName(out)
}
/// Converts an `UnresolvedItemName` to a `FullItemName` if the
/// `UnresolvedItemName` is fully specified. Otherwise returns an error.
pub fn full_name(mut raw_name: UnresolvedItemName) -> Result<FullItemName, PlanError> {
match raw_name.0.len() {
3 => Ok(FullItemName {
item: ident(raw_name.0.pop().unwrap()),
schema: ident(raw_name.0.pop().unwrap()),
database: RawDatabaseSpecifier::Name(ident(raw_name.0.pop().unwrap())),
}),
2 => Ok(FullItemName {
item: ident(raw_name.0.pop().unwrap()),
schema: ident(raw_name.0.pop().unwrap()),
database: RawDatabaseSpecifier::Ambient,
}),
_ => sql_bail!("unresolved name {} not fully qualified", raw_name),
}
}
/// Normalizes a `CREATE` statement.
///
/// The resulting statement will not depend upon any session parameters, nor
/// specify any non-default options (like `TEMPORARY`, `IF NOT EXISTS`, etc).
///
/// The goal is to construct a backwards-compatible description of the item.
/// SQL is the most stable part of Materialize, so SQL is used to describe the
/// items that are persisted in the catalog.
pub fn create_statement(
scx: &StatementContext,
mut stmt: Statement<Aug>,
) -> Result<String, PlanError> {
let allocate_name = |name: &UnresolvedItemName| -> Result<_, PlanError> {
Ok(unresolve(
scx.allocate_full_name(unresolved_item_name(name.clone())?)?,
))
};
let allocate_temporary_name = |name: &UnresolvedItemName| -> Result<_, PlanError> {
Ok(unresolve(scx.allocate_temporary_full_name(
unresolved_item_name(name.clone())?,
)))
};
struct QueryNormalizer {
ctes: Vec<Ident>,
err: Option<PlanError>,
}
impl QueryNormalizer {
fn new() -> QueryNormalizer {
QueryNormalizer {
ctes: vec![],
err: None,
}
}
}
impl<'ast> VisitMut<'ast, Aug> for QueryNormalizer {
fn visit_query_mut(&mut self, query: &'ast mut Query<Aug>) {
let n = self.ctes.len();
match &query.ctes {
CteBlock::Simple(ctes) => {
for cte in ctes.iter() {
self.ctes.push(cte.alias.name.clone());
}
}
CteBlock::MutuallyRecursive(MutRecBlock { options: _, ctes }) => {
for cte in ctes.iter() {
self.ctes.push(cte.name.clone());
}
}
}
visit_mut::visit_query_mut(self, query);
self.ctes.truncate(n);
}
fn visit_function_mut(&mut self, func: &'ast mut Function<Aug>) {
match &mut func.args {
FunctionArgs::Star => (),
FunctionArgs::Args { args, order_by } => {
for arg in args {
self.visit_expr_mut(arg);
}
for expr in order_by {
self.visit_order_by_expr_mut(expr);
}
}
}
if let Some(over) = &mut func.over {
self.visit_window_spec_mut(over);
}
}
fn visit_table_factor_mut(&mut self, table_factor: &'ast mut TableFactor<Aug>) {
match table_factor {
TableFactor::Table { name, alias, .. } => {
self.visit_item_name_mut(name);
if let Some(alias) = alias {
self.visit_table_alias_mut(alias);
}
}
// We only need special behavior for `TableFactor::Table`.
// Just visit the other types of table factors like normal.
_ => visit_mut::visit_table_factor_mut(self, table_factor),
}
}
}
// Think very hard before changing any of the branches in this match
// statement. All identifiers must be quoted. All object names must be
// allocated or resolved, depending on whether they are the object created
// by the statement or an object depended upon by the statement. All
// non-default options must be disabled.
//
// Wildcard matches are explicitly avoided so that future additions to the
// syntax cause compile errors here. Before you ignore a new field, triple
// check that it does not need to be normalized according to the rules
// above.
match &mut stmt {
Statement::CreateSource(CreateSourceStatement {
name,
in_cluster: _,
col_names: _,
connection: _,
format: _,
include_metadata: _,
envelope: _,
if_not_exists,
key_constraint: _,
with_options: _,
external_references: _,
progress_subsource: _,
}) => {
*name = allocate_name(name)?;
*if_not_exists = false;
}
Statement::CreateSubsource(CreateSubsourceStatement {
name,
columns,
constraints: _,
of_source: _,
if_not_exists,
with_options: _,
}) => {
*name = allocate_name(name)?;
let mut normalizer = QueryNormalizer::new();
for c in columns {
normalizer.visit_column_def_mut(c);
}
if let Some(err) = normalizer.err {
return Err(err);
}
*if_not_exists = false;
}
Statement::CreateTableFromSource(CreateTableFromSourceStatement {
name,
columns,
constraints: _,
external_reference: _,
source: _,
if_not_exists,
format: _,
include_metadata: _,
envelope: _,
with_options: _,
}) => {
*name = allocate_name(name)?;
let mut normalizer = QueryNormalizer::new();
if let TableFromSourceColumns::Defined(columns) = columns {
for c in columns {
normalizer.visit_column_def_mut(c);
}
}
if let Some(err) = normalizer.err {
return Err(err);
}
*if_not_exists = false;
}
Statement::CreateTable(CreateTableStatement {
name,
columns,
constraints: _,
if_not_exists,
temporary,
with_options: _,
}) => {
*name = if *temporary {
allocate_temporary_name(name)?
} else {
allocate_name(name)?
};
let mut normalizer = QueryNormalizer::new();
for c in columns {
normalizer.visit_column_def_mut(c);
}
if let Some(err) = normalizer.err {
return Err(err);
}
*if_not_exists = false;
}
Statement::CreateWebhookSource(CreateWebhookSourceStatement {
name,
if_not_exists,
include_headers: _,
body_format: _,
validate_using: _,
in_cluster: _,
}) => {
*name = allocate_name(name)?;
*if_not_exists = false;
}
Statement::CreateSink(CreateSinkStatement {
name,
in_cluster: _,
connection: _,
format: _,
envelope: _,
if_not_exists,
..
}) => {
if let Some(name) = name {
*name = allocate_name(name)?;
}
*if_not_exists = false;
}
Statement::CreateView(CreateViewStatement {
temporary,
if_exists,
definition:
ViewDefinition {
name,
query,
columns: _,
},
}) => {
*name = if *temporary {
allocate_temporary_name(name)?
} else {
allocate_name(name)?
};
{
let mut normalizer = QueryNormalizer::new();
normalizer.visit_query_mut(query);
if let Some(err) = normalizer.err {
return Err(err);
}
}
*if_exists = IfExistsBehavior::Error;
}
Statement::CreateMaterializedView(CreateMaterializedViewStatement {
if_exists,
name,
columns: _,
in_cluster: _,
query,
with_options: _,
as_of: _,
}) => {
*name = allocate_name(name)?;
{
let mut normalizer = QueryNormalizer::new();
normalizer.visit_query_mut(query);
if let Some(err) = normalizer.err {
return Err(err);
}
}
*if_exists = IfExistsBehavior::Error;
}
Statement::CreateContinualTask(CreateContinualTaskStatement {
name,
columns: _,
input,
with_options: _,
stmts,
in_cluster: _,
as_of: _,
sugar,
}) => {
let mut normalizer = QueryNormalizer::new();
normalizer.visit_item_name_mut(name);
normalizer.visit_item_name_mut(input);
for stmt in stmts {
match stmt {
ContinualTaskStmt::Delete(stmt) => normalizer.visit_delete_statement_mut(stmt),
ContinualTaskStmt::Insert(stmt) => normalizer.visit_insert_statement_mut(stmt),
}
}
match sugar {
Some(CreateContinualTaskSugar::Transform { transform }) => {
normalizer.visit_query_mut(transform)
}
Some(CreateContinualTaskSugar::Retain { retain }) => {
normalizer.visit_expr_mut(retain)
}
None => {}
}
if let Some(err) = normalizer.err {
return Err(err);
}
}
Statement::CreateIndex(CreateIndexStatement {
name: _,
in_cluster: _,
key_parts,
with_options: _,
if_not_exists,
..
}) => {
let mut normalizer = QueryNormalizer::new();
if let Some(key_parts) = key_parts {
for key_part in key_parts {
normalizer.visit_expr_mut(key_part);
if let Some(err) = normalizer.err {
return Err(err);
}
}
}
*if_not_exists = false;
}
Statement::CreateType(CreateTypeStatement { name, as_type }) => {
*name = allocate_name(name)?;
let mut normalizer = QueryNormalizer::new();
normalizer.visit_create_type_as_mut(as_type);
if let Some(err) = normalizer.err {
return Err(err);
}
}
Statement::CreateSecret(CreateSecretStatement {
name,
if_not_exists,
value: _,
}) => {
*name = allocate_name(name)?;
*if_not_exists = false;
}
Statement::CreateConnection(CreateConnectionStatement {
name,
connection_type: _,
values,
with_options,
if_not_exists,
}) => {
*name = allocate_name(name)?;
*if_not_exists = false;
values.sort();
// Validation only occurs once during planning and should not be
// considered part of the statement's AST/canonical representation.
with_options
.retain(|o| o.name != mz_sql_parser::ast::CreateConnectionOptionName::Validate);
}
_ => unreachable!(),
}
Ok(stmt.to_ast_string_stable())
}
/// Generates a struct capable of taking a `Vec` of types commonly used to
/// represent `WITH` options into useful data types, such as strings.
/// Additionally, it is able to convert the useful data types back to the `Vec`
/// of options.
///
/// # Parameters
/// - `$option_ty`: Accepts a struct representing a set of `WITH` options, which
/// must contain the fields `name` and `value`.
/// - `name` must be of type `$option_tyName`, e.g. if `$option_ty` is
/// `FooOption`, then `name` must be of type `FooOptionName`.
/// `$option_tyName` must be an enum representing `WITH` option keys.
/// - `TryFromValue<value>` must be implemented for the type you want to
/// take the option to. The `sql::plan::with_option` module contains these
/// implementations.
/// - `$option_name` must be an element of `$option_tyName`
/// - `$t` is the type you want to convert the option's value to. If the
/// option's value is absent (i.e. the user only entered the option's key),
/// you can also define a default value.
/// - `Default($v)` is an optional parameter that sets the default value of the
/// field to `$v`. `$v` must be convertible to `$t` using `.into`. This also
/// converts the struct's type from `Option<$t>` to `<$t>`.
/// - `AllowMultiple` is an optional parameter that, when specified, allows
/// the given option to appear multiple times in the `WITH` clause. This
/// also converts the struct's type from `$t` to `Vec<$t>`.
macro_rules! generate_extracted_config {
// No default specified, have remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty), $($tail:tt),*) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, Option::<$t>, None, false)], $(
$tail
),*);
};
// No default specified, no remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty)) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, Option::<$t>, None, false)]);
};
// Default specified, have remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty, Default($v:expr)), $($tail:tt),*) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, $t, $v, false)], $(
$tail
),*);
};
// Default specified, no remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty, Default($v:expr))) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, $t, $v, false)]);
};
// AllowMultiple specified, have remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty, AllowMultiple), $($tail:tt),*) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, $t, vec![], true)], $(
$tail
),*);
};
// AllowMultiple specified, no remaining options.
($option_ty:ty, [$($processed:tt)*], ($option_name:path, $t:ty, AllowMultiple)) => {
generate_extracted_config!($option_ty, [$($processed)* ($option_name, $t, vec![], true)]);
};
($option_ty:ty, [$(($option_name:path, $t:ty, $v:expr, $allow_multiple:literal))+]) => {
paste::paste! {
#[derive(Debug)]
pub struct [<$option_ty Extracted>] {
pub(crate) seen: ::std::collections::BTreeSet::<[<$option_ty Name>]>,
$(
pub [<$option_name:snake>]: generate_extracted_config!(
@ifty $allow_multiple,
Vec::<$t>,
$t
),
)*
}
impl std::default::Default for [<$option_ty Extracted>] {
fn default() -> Self {
[<$option_ty Extracted>] {
seen: ::std::collections::BTreeSet::<[<$option_ty Name>]>::new(),
$(
[<$option_name:snake>]: <generate_extracted_config!(
@ifty $allow_multiple,
Vec::<$t>,
$t
)>::from($v),
)*
}
}
}
impl std::convert::TryFrom<Vec<$option_ty<Aug>>> for [<$option_ty Extracted>] {
type Error = $crate::plan::PlanError;
fn try_from(v: Vec<$option_ty<Aug>>) -> Result<[<$option_ty Extracted>], Self::Error> {
use [<$option_ty Name>]::*;
let mut extracted = [<$option_ty Extracted>]::default();
for option in v {
match option.name {
$(
$option_name => {
if !$allow_multiple && !extracted.seen.insert(option.name.clone()) {
sql_bail!("{} specified more than once", option.name.to_ast_string());
}
let val: $t = $crate::plan::with_options::TryFromValue::try_from_value(option.value)
.map_err(|e| sql_err!("invalid {}: {}", option.name.to_ast_string(), e))?;
generate_extracted_config!(
@ifexpr $allow_multiple,
extracted.[<$option_name:snake>].push(val),
extracted.[<$option_name:snake>] = val
);
}
)*
}
}
Ok(extracted)
}
}
impl [<$option_ty Extracted>] {
#[allow(unused)]
fn into_values(self, catalog: &dyn crate::catalog::SessionCatalog) -> Vec<$option_ty<Aug>> {
use [<$option_ty Name>]::*;
let mut options = Vec::new();
$(
let value = self.[<$option_name:snake>];
let values: Vec<_> = generate_extracted_config!(
@ifexpr $allow_multiple,
value,
Vec::from([value])
);
for value in values {
// If `try_into_value` returns `None`, then there was no option that
// generated this value. For example, this can happen when `value` is
// `None`.
let maybe_value = <$t as $crate::plan::with_options::TryFromValue<
Option<mz_sql_parser::ast::WithOptionValue<$crate::names::Aug>>
>>::try_into_value(value, catalog);
match maybe_value {
Some(value) => {
let option = $option_ty {name: $option_name, value};
options.push(option);
},
None => (),
}
}
)*
options
}
}
}
};
($option_ty:ty, $($h:tt),+) => {
generate_extracted_config!{$option_ty, [], $($h),+}
};
// Helper `if` constructs to conditionally generate expressions and types
// based on the value of $allow_multiple.
(@ifexpr false, $lhs:expr, $rhs:expr) => {
$rhs
};
(@ifexpr true, $lhs:expr, $rhs:expr) => {
$lhs
};
(@ifty false, $lhs:ty, $rhs:ty) => {
$rhs
};
(@ifty true, $lhs:ty, $rhs:ty) => {
$lhs
};
}
pub(crate) use generate_extracted_config;