diff options
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/beard.c | 4 | ||||
-rw-r--r-- | src/tutorial/funcs_new.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/tutorial/beard.c b/src/tutorial/beard.c index 4157d2195d3..f31a1197709 100644 --- a/src/tutorial/beard.c +++ b/src/tutorial/beard.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.12 2004/12/31 22:04:05 pgsql Exp $ + * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.13 2005/10/15 02:49:52 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -55,7 +55,7 @@ beard(Oid picture) beard_fd = DatumGetInt32(DirectFunctionCall2(lo_open, ObjectIdGetDatum(beard), - Int32GetDatum(INV_WRITE))); + Int32GetDatum(INV_WRITE))); if (beard_fd < 0) elog(ERROR, "Cannot access beard large object"); diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c index e548b85ee41..9c63abaf14e 100644 --- a/src/tutorial/funcs_new.c +++ b/src/tutorial/funcs_new.c @@ -125,8 +125,7 @@ c_overpaid(PG_FUNCTION_ARGS) PG_RETURN_BOOL(false); /* - * Alternatively, we might prefer to do PG_RETURN_NULL() for null - * salary + * Alternatively, we might prefer to do PG_RETURN_NULL() for null salary */ PG_RETURN_BOOL(salary > limit); |