diff options
| -rw-r--r-- | docs/changelog.md | 1 | ||||
| -rw-r--r-- | drivers/adodb-postgres64.inc.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/changelog.md b/docs/changelog.md index 124a8d35..bc3fe8a3 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -40,6 +40,7 @@ Older changelogs: - pdo: fix PHP notice. #248 - pdo: ADORecordSet class loading. #250 - pdo/sqlsrv: fix fetchField() method. #251, #234 +- pgsql: add CIDR data type to MetaType(). #281 - sqlite: _createSuffix is now compatible with parent. #178 - sqlite: metaIndexes could not locate indexes on uppercase table name. #176 - sqlite: Fix Metataypes mapping. #177 diff --git a/drivers/adodb-postgres64.inc.php b/drivers/adodb-postgres64.inc.php index 040d819a..66f6daba 100644 --- a/drivers/adodb-postgres64.inc.php +++ b/drivers/adodb-postgres64.inc.php @@ -1063,6 +1063,7 @@ class ADORecordSet_postgres64 extends ADORecordSet{ case 'NAME': case 'BPCHAR': case '_VARCHAR': + case 'CIDR': case 'INET': case 'MACADDR': if ($len <= $this->blobSize) return 'C'; |
