We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ALTER USER
1 parent 51621b5 commit 1118ae4Copy full SHA for 1118ae4
1 file changed
src/parser/alter.rs
@@ -40,12 +40,7 @@ impl Parser<'_> {
40
}
41
42
pub fn parse_alter_user(&mut self) -> Result<Statement, ParserError> {
43
- if dialect_of!(self is PostgreSqlDialect) {
44
- return self.parse_pg_alter_user();
45
- }
46
- Err(ParserError::ParserError(
47
- "ALTER USER is only supported for PostgreSqlDialect".into(),
48
- ))
+ self.parse_pg_alter_user()
49
50
51
/// Parse ALTER POLICY statement
0 commit comments