aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/ecpglib/execute.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-06-27 12:28:42 +0000
committerMichael Meskes <meskes@postgresql.org>2004-06-27 12:28:42 +0000
commit03ad5da8f89d7bc199a711e1c49b64c2b2832154 (patch)
tree830ee40d7f91a744419b6b3f49a3b130037515fc /src/interfaces/ecpg/ecpglib/execute.c
parent4eb5f0a8e2a8ef37751ad6086714afed9da31b48 (diff)
downloadpostgresql-03ad5da8f89d7bc199a711e1c49b64c2b2832154.tar.gz
postgresql-03ad5da8f89d7bc199a711e1c49b64c2b2832154.zip
- Only use typedefs inside their scope.
- Variables that are out of scope, were not removed all the time. - Make a varchar NULL set everything to 0 when not using indicators. - Synced parser.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/execute.c')
-rw-r--r--src/interfaces/ecpg/ecpglib/execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c
index 2cee7c70c9c..c91e96d3a1a 100644
--- a/src/interfaces/ecpg/ecpglib/execute.c
+++ b/src/interfaces/ecpg/ecpglib/execute.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.33 2004/05/05 15:03:04 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.34 2004/06/27 12:28:40 meskes Exp $ */
/*
* The aim is to get a simpler inteface to the database routines.
@@ -532,7 +532,7 @@ ECPGstore_input(const struct statement * stmt, const struct variable * var,
case ECPGt_NO_INDICATOR:
if (stmt->force_indicator == false)
{
- if (ECPGis_informix_null(var->type, var->value))
+ if (ECPGis_noind_null(var->type, var->value))
*tobeinserted_p = "null";
}
break;