]> granicus.if.org Git - postgresql/commitdiff
Remove trailing period from an elog message.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Tue, 9 Dec 1997 01:40:30 +0000 (01:40 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Tue, 9 Dec 1997 01:40:30 +0000 (01:40 +0000)
 Most other messages do not have one.

src/backend/access/nbtree/nbtinsert.c

index 340d8308121e94c9cfdf28063466a15df2411473..d216b89f7ec1c6503b846a1f036811eeda18579e 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.21 1997/11/20 23:20:16 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.22 1997/12/09 01:40:30 thomas Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -123,7 +123,7 @@ _bt_doinsert(Relation rel, BTItem btitem, bool index_is_unique, Relation heapRel
                                htup = heap_fetch(heapRel, true, &(itup->t_tid), NULL);
                                if (htup != (HeapTuple) NULL)
                                {                               /* it is a duplicate */
-                                       elog(WARN, "Cannot insert a duplicate key into a unique index.");
+                                       elog(WARN, "Cannot insert a duplicate key into a unique index");
                                }
                                /* get next offnum */
                                if (offset < maxoff)