Skip to content

Commit 724a747

Browse files
Update src/parser/mod.rs
Co-authored-by: Ifeanyi Ubah <ify1992@yahoo.com>
1 parent 1812929 commit 724a747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6436,7 +6436,7 @@ impl<'a> Parser<'a> {
64366436
/// This is used for PostgreSQL CREATE OPERATOR statements.
64376437
///
64386438
/// Examples: `+`, `myschema.+`, `pg_catalog.<=`
6439-
pub fn parse_operator_name(&mut self) -> Result<ObjectName, ParserError> {
6439+
fn parse_operator_name(&mut self) -> Result<ObjectName, ParserError> {
64406440
let mut parts = vec![];
64416441
loop {
64426442
parts.push(ObjectNamePart::Identifier(Ident::new(

0 commit comments

Comments
 (0)