Commit a9f301df authored by Michael Paquier's avatar Michael Paquier

Fix format truncation issue from ECPG test

This fixes one warning generated by GCC and present in the test case
array part of ECPG.  This likely got missed in past fixes like 3a4b8919
because the compilation of those tests is not done by default.

Reported-by: Sergei Kornilov
Discussion: https://postgr.es/m/14951331562847675@sas2-a1efad875d04.qloud-c.yandex.net
parent 6ae4e8ea
......@@ -156,7 +156,7 @@ main (void)
ECPGdebug(1, stderr);
for (j = 0; j < 10; j++) {
char str[20];
char str[28];
numeric *value;
interval *inter;
......
......@@ -34,7 +34,7 @@ EXEC SQL END DECLARE SECTION;
ECPGdebug(1, stderr);
for (j = 0; j < 10; j++) {
char str[20];
char str[28];
numeric *value;
interval *inter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment