diff options
| author | Bruce Momjian | 1999-02-03 21:18:02 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-02-03 21:18:02 +0000 |
| commit | 9322950aa44ef3647ccdd043cffe92cead171587 (patch) | |
| tree | ca69b5d9a1278312e21f9e68ce4ac1e236212495 /src/pl | |
| parent | 3982368a4e2ae08659c1bd7536c91ec9c08a6139 (diff) | |
Cleanup of source files where 'return' or 'var =' is alone on a line.
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index 30155f7b08..fa4935e965 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3,7 +3,7 @@ * procedural language * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.6 1999/01/27 16:15:22 wieck Exp $ + * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.7 1999/02/03 21:17:58 momjian Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -2540,8 +2540,7 @@ exec_simple_check_plan(PLpgSQL_expr * expr) ((Param *)(tle->expr))->paramtype; break; - case T_Const: expr->plan_simple_type = - ((Const *)(tle->expr))->consttype; + case T_Const: expr->plan_simple_type = ((Const *)(tle->expr))->consttype; break; default: expr->plan_simple_type = InvalidOid; |
