From bb08914671ae6c0e2d8a60c1b96f6e48ca6f1145 Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Tue, 29 Mar 2016 21:29:49 +0900 Subject: [PATCH] The statement linked list is not properly chained, which throws away some statements. [patch by Tsunakawa, Takayuki] --- convert.c | 1 + 1 file changed, 1 insertion(+) diff --git a/convert.c b/convert.c index 96fe561..368b355 100644 --- a/convert.c +++ b/convert.c @@ -2708,6 +2708,7 @@ inolog("prepareParametersNoDesc\n"); if (!pstmt) goto cleanup; last_pstmt->next = pstmt; + last_pstmt = pstmt; } SC_set_planname(stmt, plan_name); -- 2.39.5