We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1812929 commit 724a747Copy full SHA for 724a747
src/parser/mod.rs
@@ -6436,7 +6436,7 @@ impl<'a> Parser<'a> {
6436
/// This is used for PostgreSQL CREATE OPERATOR statements.
6437
///
6438
/// Examples: `+`, `myschema.+`, `pg_catalog.<=`
6439
- pub fn parse_operator_name(&mut self) -> Result<ObjectName, ParserError> {
+ fn parse_operator_name(&mut self) -> Result<ObjectName, ParserError> {
6440
let mut parts = vec![];
6441
loop {
6442
parts.push(ObjectNamePart::Identifier(Ident::new(
0 commit comments