Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5ef5abe

Browse files
committed
Fix previous patch so that it actually works --- consider TRUNCATE foo, public.foo
1 parent6563e9e commit5ef5abe

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

‎src/backend/commands/tablecmds.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.260 2008/07/1616:54:08 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.261 2008/07/1619:33:25 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -762,9 +762,6 @@ ExecuteTruncate(TruncateStmt *stmt)
762762
ResultRelInfo*resultRelInfo;
763763
ListCell*cell;
764764

765-
/* make list unique */
766-
stmt->relations=list_union(NIL,stmt->relations);
767-
768765
/*
769766
* Open, exclusive-lock, and check all the explicitly-specified relations
770767
*/
@@ -774,6 +771,12 @@ ExecuteTruncate(TruncateStmt *stmt)
774771
Relationrel;
775772

776773
rel=heap_openrv(rv,AccessExclusiveLock);
774+
/* don't throw error for "TRUNCATE foo, foo" */
775+
if (list_member_oid(relids,RelationGetRelid(rel)))
776+
{
777+
heap_close(rel,AccessExclusiveLock);
778+
continue;
779+
}
777780
truncate_check_rel(rel);
778781
rels=lappend(rels,rel);
779782
relids=lappend_oid(relids,RelationGetRelid(rel));

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp