We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f0b07 commit 722193bCopy full SHA for 722193b
src/parser/mod.rs
@@ -17428,7 +17428,7 @@ impl<'a> Parser<'a> {
17428
/// Parse remainder of `CREATE TYPE AS RANGE` statement
17429
///
17430
/// See [PostgreSQL](https://www.postgresql.org/docs/current/sql-createtype.html)
17431
- pub fn parse_create_type_range(&mut self, name: ObjectName) -> Result<Statement, ParserError> {
+ fn parse_create_type_range(&mut self, name: ObjectName) -> Result<Statement, ParserError> {
17432
self.expect_token(&Token::LParen)?;
17433
let options = self.parse_comma_separated0(|p| p.parse_range_option(), Token::RParen)?;
17434
self.expect_token(&Token::RParen)?;
0 commit comments