clean up comments

This commit is contained in:
Bruce Momjian 1999-05-11 03:28:43 +00:00
parent 0b4fab42c3
commit 12f9de3fd4
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.72 1999/05/03 19:09:41 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.73 1999/05/11 03:28:42 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -3715,10 +3715,10 @@ a_expr: attr opt_indirection
| a_expr '>' a_expr
{ $$ = makeA_Expr(OP, ">", $1, $3); }
/* We allow this for standards-broken SQL products, like MS stuff */
| a_expr '=' NULL_P
{ $$ = makeA_Expr(ISNULL, NULL, $1, NULL); }
| NULL_P '=' a_expr /* we need to fix the shift/reduce */
/* We allow this for standards-broken SQL products, like MS stuff */
| NULL_P '=' a_expr
{ $$ = makeA_Expr(ISNULL, NULL, $3, NULL); }
| a_expr '=' a_expr

View File

@ -1,11 +1,11 @@
--
-- PL/pgSQL language declaration
--
-- $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/mklang.sql.in,v 1.1 1998/10/12 04:55:03 momjian Exp $
-- $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/mklang.sql.in,v 1.2 1999/05/11 03:28:43 momjian Exp $
--
create function plpgsql_call_handler() returns opaque
as '@libdir@/plpgsql.so'
as @libdir@ '/plpgsql.so'
language 'C';
create trusted procedural language 'plpgsql'