|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $Header: /cvsroot/pgsql/src/backend/executor/spi.c,v 1.103 2003/08/08 21:41:42 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/executor/spi.c,v 1.104 2003/09/16 00:50:09 tgl Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
@@ -409,7 +409,7 @@ SPI_modifytuple(Relation rel, HeapTuple tuple, int natts, int *attnum, |
409 | 409 | boolisnull; |
410 | 410 | inti; |
411 | 411 |
|
412 | | -if (rel==NULL||tuple==NULL||natts <=0||attnum==NULL||Values==NULL) |
| 412 | +if (rel==NULL||tuple==NULL||natts<0||attnum==NULL||Values==NULL) |
413 | 413 | { |
414 | 414 | SPI_result=SPI_ERROR_ARGUMENT; |
415 | 415 | returnNULL; |
|