11 lines
451 B
Text
11 lines
451 B
Text
# Does not parse in generic dialect
|
|
statement error ^SQL error: ParserError\("ALTER ROLE is only support for PostgreSqlDialect, MsSqlDialect"\) \(sql/xatq3n1zk65go\)$
|
|
ALTER ROLE jdoe;
|
|
|
|
statement ok
|
|
SET sql_dialect='postgres';
|
|
|
|
statement error ^External error: unimplemented_sql/u6set5k1gzyhh: ALTER ROLE$
|
|
ALTER ROLE jdoe WITH PASSWORD 's3kr1t';
|
|
|
|
# TODO cover all variants: <https://docs.rs/sqlparser/latest/sqlparser/ast/enum.AlterRoleOperation.html>
|