aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
diff options
context:
space:
mode:
authorTeodor Sigaev <teodor@sigaev.ru>2006-04-03 13:44:33 +0000
committerTeodor Sigaev <teodor@sigaev.ru>2006-04-03 13:44:33 +0000
commit8d02b15e33ccbf9e58cb5b227254610491a90dc2 (patch)
treee8a35e09ffda7e619da64855fda8c65431c728ec /src/backend/access/gist/gist.c
parentcdfecf6e3ee62a8774dbd16aea275570595c81eb (diff)
downloadpostgresql-8d02b15e33ccbf9e58cb5b227254610491a90dc2.tar.gz
postgresql-8d02b15e33ccbf9e58cb5b227254610491a90dc2.zip
Eliminate ajust scan code. Since concurrent GiST it doesn't
do real work. That was missed during concurrence development.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r--src/backend/access/gist/gist.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c
index 93ec60481f8..16468fd35a5 100644
--- a/src/backend/access/gist/gist.c
+++ b/src/backend/access/gist/gist.c
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/gist/gist.c,v 1.131 2006/03/31 23:32:05 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/access/gist/gist.c,v 1.132 2006/04/03 13:44:33 teodor Exp $
*
*-------------------------------------------------------------------------
*/
@@ -493,11 +493,6 @@ gistplacetopage(GISTInsertState *state, GISTSTATE *giststate)
END_CRIT_SECTION();
- if (!is_leaf) /* small optimization: inform scan ablout
- * deleting... */
- gistadjscans(state->r, GISTOP_DEL, state->stack->blkno,
- state->stack->childoffnum, PageGetLSN(state->stack->page), oldlsn);
-
if (state->ituplen > 1)
{ /* previous is_splitted==true */