diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-26 19:17:02 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-26 19:17:02 +0000 |
commit | 1dbf8aa7a8159875bb46f6ee6ab0116eee76869b (patch) | |
tree | 9aa08b4247dc230b6d35aa9c34b488b36b716693 /src/include/commands/comment.h | |
parent | da631e931f9da4bc5df4bfd39f0c42684adfb8e5 (diff) | |
download | postgresql-1dbf8aa7a8159875bb46f6ee6ab0116eee76869b.tar.gz postgresql-1dbf8aa7a8159875bb46f6ee6ab0116eee76869b.zip |
pg_class has a relnamespace column. You can create and access tables
in schemas other than the system namespace; however, there's no search
path yet, and not all operations work yet on tables outside the system
namespace.
Diffstat (limited to 'src/include/commands/comment.h')
-rw-r--r-- | src/include/commands/comment.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h index 4d83372bdd6..f1e9a760b0b 100644 --- a/src/include/commands/comment.h +++ b/src/include/commands/comment.h @@ -25,8 +25,8 @@ *------------------------------------------------------------------ */ -extern void CommentObject(int objtype, char *objname, char *objproperty, - List *objlist, char *comment); +extern void CommentObject(int objtype, char * schemaname, char *objname, + char *objproperty, List *objlist, char *comment); extern void DeleteComments(Oid oid, Oid classoid); |