diff options
| author | Tom Lane | 2018-05-18 23:03:32 +0000 |
|---|---|---|
| committer | Tom Lane | 2018-05-18 23:04:16 +0000 |
| commit | d73857d5719e10bc7ed8aabdf66daf03b1db7ddd (patch) | |
| tree | b95960b9e77c399cd98870d37073b1c27ff6075d /src | |
| parent | d9cbe9c9fce95807d08fb23f420b0a39a1e93483 (diff) | |
Hot-fix ecpg regression test for missing ecpg_config.h inclusion.
I don't think this is really the best long-term answer, and in
particular it doesn't fix the pre-existing hazard in sqltypes.h.
But for the moment let's just try to make the buildfarm green again.
Discussion: https://postgr.es/m/151935568942.1461.14623890240535309745@wrigleys.postgresql.org
Diffstat (limited to 'src')
| -rw-r--r-- | src/interfaces/ecpg/test/expected/sql-sqlda.c | 4 | ||||
| -rw-r--r-- | src/interfaces/ecpg/test/sql/sqlda.pgc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/test/expected/sql-sqlda.c b/src/interfaces/ecpg/test/expected/sql-sqlda.c index 9b2d8877fa..d9c192ef4a 100644 --- a/src/interfaces/ecpg/test/expected/sql-sqlda.c +++ b/src/interfaces/ecpg/test/expected/sql-sqlda.c @@ -10,6 +10,7 @@ #include <stdlib.h> #include <string.h> #include <limits.h> +#include "ecpg_config.h" #line 1 "regression.h" @@ -19,8 +20,7 @@ -#line 5 "sqlda.pgc" - +#line 6 "sqlda.pgc" #line 1 "sqlda.h" diff --git a/src/interfaces/ecpg/test/sql/sqlda.pgc b/src/interfaces/ecpg/test/sql/sqlda.pgc index f2c839fc08..d99f7f7e96 100644 --- a/src/interfaces/ecpg/test/sql/sqlda.pgc +++ b/src/interfaces/ecpg/test/sql/sqlda.pgc @@ -1,9 +1,9 @@ #include <stdlib.h> #include <string.h> #include <limits.h> +#include "ecpg_config.h" exec sql include ../regression; - exec sql include sqlda.h; exec sql include pgtypes_numeric.h; |
