Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8f7d3d commit 063da9dCopy full SHA for 063da9d
src/backend/commands/tablecmds.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.69 2003/03/20 18:52:47 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.70 2003/03/21 15:43:02 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -3835,6 +3835,7 @@ AlterTableClusterOn(Oid relOid, const char *indexName)
3835
{
3836
elog(NOTICE, "ALTER TABLE: table \"%s\" is already being clustered on index \"%s\"",
3837
NameStr(rel->rd_rel->relname), indexName);
3838
+ ReleaseSysCache(indexTuple);
3839
heap_close(rel, AccessExclusiveLock);
3840
return;
3841
}
0 commit comments