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

Method parse_object_option_value

src/sql-parser/src/parser.rs:5521–5524  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

5519 }
5520
5521 fn parse_object_option_value(&mut self) -> Result<WithOptionValue<Raw>, ParserError> {
5522 let _ = self.consume_token(&Token::Eq);
5523 Ok(WithOptionValue::Item(self.parse_raw_name()?))
5524 }
5525
5526 fn parse_optional_option_value(&mut self) -> Result<Option<WithOptionValue<Raw>>, ParserError> {
5527 // The next token might be a value and might not. The only valid things

Callers 2

parse_copy_optionMethod · 0.80

Calls 3

consume_tokenMethod · 0.80
parse_raw_nameMethod · 0.80
ItemEnum · 0.50

Tested by

no test coverage detected