Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support SET ROLE statement #455

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/ast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,16 @@ pub enum Statement {
/// deleted along with the dropped table
purge: bool,
},
/// SET [ SESSION | LOCAL ] ROLE role_name
///
/// Note: this is a PostgreSQL-specific statement,
/// but may also compatible with other SQL.
SetRole {
local: bool,
// SESSION is the default if neither SESSION nor LOCAL appears.
session: bool,
role_name: Option<Ident>,
},
/// SET <variable>
///
/// Note: this is not a standard SQL statement, but it is supported by at
Expand Down Expand Up @@ -1453,6 +1463,24 @@ impl fmt::Display for Statement {
if *cascade { " CASCADE" } else { "" },
if *purge { " PURGE" } else { "" }
),
Statement::SetRole {
local,
session,
role_name,
} => {
write!(
f,
"SET {local}{session}ROLE",
local = if *local { "LOCAL " } else { "" },
session = if *session { "SESSION " } else { "" },
)?;
if let Some(role_name) = role_name {
write!(f, " {}", role_name)?;
} else {
f.write_str(" NONE")?;
}
Ok(())
}
Statement::SetVariable {
local,
variable,
Expand Down
12 changes: 12 additions & 0 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3116,7 +3116,19 @@ impl<'a> Parser<'a> {
self.parse_one_of_keywords(&[Keyword::SESSION, Keyword::LOCAL, Keyword::HIVEVAR]);
if let Some(Keyword::HIVEVAR) = modifier {
self.expect_token(&Token::Colon)?;
} else if self.parse_keyword(Keyword::ROLE) {
let role_name = if self.parse_keyword(Keyword::NONE) {
None
} else {
Some(self.parse_identifier()?)
};
return Ok(Statement::SetRole {
local: modifier == Some(Keyword::LOCAL),
session: modifier == Some(Keyword::SESSION),
role_name,
});
}

let variable = self.parse_identifier()?;
if self.consume_token(&Token::Eq) || self.parse_keyword(Keyword::TO) {
let mut values = vec![];
Expand Down
39 changes: 39 additions & 0 deletions tests/sqlparser_postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,45 @@ fn parse_set() {
);
}

#[test]
fn parse_set_role() {
let stmt = pg_and_generic().verified_stmt("SET SESSION ROLE NONE");
assert_eq!(
stmt,
Statement::SetRole {
local: false,
session: true,
role_name: None,
}
);

let stmt = pg_and_generic().verified_stmt("SET LOCAL ROLE \"rolename\"");
assert_eq!(
stmt,
Statement::SetRole {
local: true,
session: false,
role_name: Some(Ident {
value: "rolename".to_string(),
quote_style: Some('\"'),
}),
}
);

let stmt = pg_and_generic().verified_stmt("SET ROLE 'rolename'");
assert_eq!(
stmt,
Statement::SetRole {
local: false,
session: false,
role_name: Some(Ident {
value: "rolename".to_string(),
quote_style: Some('\''),
}),
}
);
}

#[test]
fn parse_show() {
let stmt = pg_and_generic().verified_stmt("SHOW a a");
Expand Down