mirror of
https://github.com/postgres/postgres.git
synced 2025-05-30 00:02:11 -04:00
Disable COPY TO/FROM on views.
This commit is contained in:
parent
75d872aa69
commit
b6564c445e
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.139 2001/06/08 21:16:48 petere Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.140 2001/07/11 21:53:59 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -307,6 +307,8 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
|
|||||||
{ /* copy from file to database */
|
{ /* copy from file to database */
|
||||||
if (rel->rd_rel->relkind == RELKIND_SEQUENCE)
|
if (rel->rd_rel->relkind == RELKIND_SEQUENCE)
|
||||||
elog(ERROR, "You cannot change sequence relation %s", relname);
|
elog(ERROR, "You cannot change sequence relation %s", relname);
|
||||||
|
if (rel->rd_rel->relkind == RELKIND_VIEW)
|
||||||
|
elog(ERROR, "You cannot copy view %s", relname);
|
||||||
if (pipe)
|
if (pipe)
|
||||||
{
|
{
|
||||||
if (IsUnderPostmaster)
|
if (IsUnderPostmaster)
|
||||||
@ -330,6 +332,8 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ /* copy from database to file */
|
{ /* copy from database to file */
|
||||||
|
if (rel->rd_rel->relkind == RELKIND_VIEW)
|
||||||
|
elog(ERROR, "You cannot copy view %s", relname);
|
||||||
if (pipe)
|
if (pipe)
|
||||||
{
|
{
|
||||||
if (IsUnderPostmaster)
|
if (IsUnderPostmaster)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user