Skip to content

Commit

Permalink
Fixed bug CORE-2797 : Problem with default value of SP parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlad committed Dec 12, 2009
1 parent 8ff4c07 commit 15a9a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsql/parse.y
Expand Up @@ -1899,7 +1899,7 @@ output_proc_parameter($parameters)

default_par_opt : DEFAULT begin_trigger default_value end_default
{ $$ = make_node (nod_def_default, (int) e_dft_count, $3, $4); }
| '=' begin_trigger default_value end_trigger
| '=' begin_trigger default_value end_default
{ $$ = make_node (nod_def_default, (int) e_dft_count, $3, $4); }
|
{ $$ = NULL; }
Expand Down

0 comments on commit 15a9a2b

Please sign in to comment.