MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / parse_create_sink_option

Method parse_create_sink_option

src/sql-parser/src/parser.rs:3618–3623  ·  view source on GitHub ↗

Parse a NAME = VALUE parameter for CREATE SINK

(&mut self)

Source from the content-addressed store, hash-verified

3616
3617 /// Parse a NAME = VALUE parameter for CREATE SINK
3618 fn parse_create_sink_option(&mut self) -> Result<CreateSinkOption<Raw>, ParserError> {
3619 Ok(CreateSinkOption {
3620 name: self.parse_create_sink_option_name()?,
3621 value: self.parse_optional_option_value()?,
3622 })
3623 }
3624
3625 fn parse_create_source_connection(
3626 &mut self,

Callers

nothing calls this directly

Tested by

no test coverage detected