8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 18:43:02 +01:00

Allow table alias on INTO part of MERGE

This commit is contained in:
asfernandes 2006-12-31 20:55:16 +00:00
parent 105efe1f22
commit 7dd5d15b17

View File

@ -3503,7 +3503,7 @@ insert : INSERT INTO simple_table_name ins_column_parens_opt
/* MERGE statement */
merge
: MERGE INTO simple_table_name USING table_reference ON search_condition
: MERGE INTO table_name USING table_reference ON search_condition
merge_when_clause
{
$$ = make_node(nod_merge, e_mrg_count, $3, $5, $7, $8);