Parse a NAME = VALUE parameter for CREATE SINK
(&mut self)
| 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, |
nothing calls this directly
no test coverage detected