aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/user.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-03-16 03:24:18 +0000
committerBruce Momjian <bruce@momjian.us>1999-03-16 03:24:18 +0000
commit434762b55924c1414d5d66590a08dcabe865c9ac (patch)
tree5c59644da4f4fd2eb9ee9f832c3a5e8f9800cd2f /src/include/commands/user.h
parent787786085f42467fba1568e8524e33738b9d641f (diff)
downloadpostgresql-434762b55924c1414d5d66590a08dcabe865c9ac.tar.gz
postgresql-434762b55924c1414d5d66590a08dcabe865c9ac.zip
Here is a patch.
I have changed to call pg_exec_query_dest() instead of pg_exec_query(). Thanks. Hiroshi Inoue
Diffstat (limited to 'src/include/commands/user.h')
-rw-r--r--src/include/commands/user.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/commands/user.h b/src/include/commands/user.h
index 3849339947d..edf836e5bb7 100644
--- a/src/include/commands/user.h
+++ b/src/include/commands/user.h
@@ -10,8 +10,8 @@
#ifndef USER_H
#define USER_H
-extern void DefineUser(CreateUserStmt *stmt);
-extern void AlterUser(AlterUserStmt *stmt);
-extern void RemoveUser(char *user);
+extern void DefineUser(CreateUserStmt *stmt, CommandDest);
+extern void AlterUser(AlterUserStmt *stmt, CommandDest);
+extern void RemoveUser(char *user, CommandDest);
#endif /* USER_H */