diff options
author | Nathan Gass | 2023-08-16 17:43:59 +0200 |
---|---|---|
committer | Nathan Gass | 2023-08-16 17:43:59 +0200 |
commit | 56da1be11e400538bc360bece8a0e5a533fff91a (patch) | |
tree | 932492263341cee95baf688b42181dac5030bdc5 /it_dbi_postgres.class | |
parent | 3abdd4daeddd6da684d2731f9780b4aa38b3c280 (diff) | |
download | itools-56da1be11e400538bc360bece8a0e5a533fff91a.tar.gz itools-56da1be11e400538bc360bece8a0e5a533fff91a.tar.bz2 itools-56da1be11e400538bc360bece8a0e5a533fff91a.zip |
fix failing it_dbi tests when using postgresql
Diffstat (limited to 'it_dbi_postgres.class')
-rw-r--r-- | it_dbi_postgres.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_dbi_postgres.class b/it_dbi_postgres.class index 82d57d2..e96a46d 100644 --- a/it_dbi_postgres.class +++ b/it_dbi_postgres.class @@ -56,7 +56,7 @@ function _tables($p = array()) static function _convertbool($v) { - return $v == 't' ? true : false; + return $v == 't' ? 1 : 0; } function _get_field_defs() |