Revision: 187
http://informixdb.svn.sourceforge.net/informixdb/?rev=187&view=rev
Author: f-apolloner
Date: 2011-11-06 18:53:24 +0000 (Sun, 06 Nov 2011)
Log Message:
-----------
change !(var->sqltype &SQLNONULL) to ISCOLUMNULLABLE(var->sqlflags).
Modified Paths:
--------------
trunk/informixdb/ext/_informixdb.ec
Modified: trunk/informixdb/ext/_informixdb.ec
===================================================================
--- trunk/informixdb/ext/_informixdb.ec 2008-09-28 02:48:41 UTC (rev 186)
+++ trunk/informixdb/ext/_informixdb.ec 2011-11-06 18:53:24 UTC (rev 187)
@@ -1745,7 +1745,7 @@
var->sqllen,
var->sqllen,
Py_None, Py_None,
- !(var->sqltype & SQLNONULL));
+ ISCOLUMNULLABLE(var->sqlflags));
PyTuple_SET_ITEM(cur->description, pos, new_tuple);
var->sqlind = &cur->indOut[pos];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|