8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 19:23:03 +01:00

Replace a deleted piece of code - thanks to Claudio

This commit is contained in:
asfernandes 2006-11-29 00:20:01 +00:00
parent eba42c9c1e
commit 57795e5da8

View File

@ -2834,6 +2834,10 @@ void DSQL_pretty(const dsql_nod* node, int column)
verb = "with";
break;
case nod_update_or_insert:
verb = "update_or_insert";
break;
default:
sprintf(s, "unknown type %d", node->nod_type);
verb = s;