mirror of https://github.com/citusdata/citus.git
Remove unnecessary schema name from CREATE SCHEMA stmts (#5785)
parent
d153c2de0d
commit
4312486141
|
@ -110,7 +110,6 @@ AppendCreateSchemaStmt(StringInfo buf, CreateSchemaStmt *stmt)
|
||||||
* with the name of the authorizated user.
|
* with the name of the authorizated user.
|
||||||
*/
|
*/
|
||||||
Assert(stmt->authrole != NULL);
|
Assert(stmt->authrole != NULL);
|
||||||
appendStringInfo(buf, "%s ", RoleSpecString(stmt->authrole, true));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stmt->authrole != NULL)
|
if (stmt->authrole != NULL)
|
||||||
|
|
Loading…
Reference in New Issue