mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
clean up comments
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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
|
* HISTORY
|
||||||
* AUTHOR DATE MAJOR EVENT
|
* AUTHOR DATE MAJOR EVENT
|
||||||
@ -3715,10 +3715,10 @@ a_expr: attr opt_indirection
|
|||||||
| a_expr '>' a_expr
|
| a_expr '>' a_expr
|
||||||
{ $$ = makeA_Expr(OP, ">", $1, $3); }
|
{ $$ = makeA_Expr(OP, ">", $1, $3); }
|
||||||
|
|
||||||
/* We allow this for standards-broken SQL products, like MS stuff */
|
|
||||||
| a_expr '=' NULL_P
|
| a_expr '=' NULL_P
|
||||||
{ $$ = makeA_Expr(ISNULL, NULL, $1, NULL); }
|
{ $$ = 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); }
|
{ $$ = makeA_Expr(ISNULL, NULL, $3, NULL); }
|
||||||
|
|
||||||
| a_expr '=' a_expr
|
| a_expr '=' a_expr
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
--
|
--
|
||||||
-- PL/pgSQL language declaration
|
-- 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
|
create function plpgsql_call_handler() returns opaque
|
||||||
as '@libdir@/plpgsql.so'
|
as @libdir@ '/plpgsql.so'
|
||||||
language 'C';
|
language 'C';
|
||||||
|
|
||||||
create trusted procedural language 'plpgsql'
|
create trusted procedural language 'plpgsql'
|
||||||
|
Reference in New Issue
Block a user