From f6b1fa2c7b362e263f945b68e489c739753b51ea Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Thu, 7 Sep 2023 10:46:58 +0000 Subject: [PATCH] wip --- ocesql/ppout.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ocesql/ppout.c b/ocesql/ppout.c index d9ef0a8..a3442be 100644 --- a/ocesql/ppout.c +++ b/ocesql/ppout.c @@ -580,7 +580,7 @@ void ppoutputresgroup(struct cb_field *cf, int lineno, int iteration) { if (type == HVARTYPE_GROUP) { ppoutputresgroup(cf->children, lineno, iteration); } else { - ppoutputresparam(cf->sname, type, digits, scale, iteration); + ppoutputresparambyfield(cf, type, digits, scale, iteration); } if (cf->sister != NULL) { @@ -1695,8 +1695,7 @@ void ppbuff(struct cb_exec_list *list) { printerrormsg(child->sname, wk_res_host->lineno, buff); return; } - ppoutputresparam(child->sname, var_type, var_len, var_scale, - iteration); + ppoutputresparambyfield(child, var_type, var_len, var_scale, iteration); child = child->sister; reshostreferenceCount++; }