summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving)Matteo Beccati2014-11-061-0/+15
|
* Fixed bug #66584 Segmentation fault on statement deallocationMatteo Beccati2014-11-011-0/+66
|
* Fixed bug #67462 PDO_PGSQL::beginTransaction() wrongly throws exception when ↵Matteo Beccati2014-10-311-0/+34
| | | | not in transaction
* Improved test for bug #62479Matteo Beccati2014-05-211-8/+27
|
* fix test bug62479.phptStanislav Malyshev2014-01-251-2/+2
|
* Fix #62479: Some chars not parsed in passwordsWill Fitch2014-01-181-0/+56
| | | | | This fixes an issue where backslashes and spaces aren't correctly parsed for passwords.
* Fix bug #64953 (Postgres prepared statement positional parameter casting)Michael Wallner2013-08-201-0/+71
|
* non living code related typo fixesVeres Lajos2013-08-041-1/+1
|
* Related to bug #65047 (Test skip on client / server version)Remi Collet2013-06-193-4/+4
| | | | | | | | bug46274.phpt and bug46274_2.phpt Make query silent (when server don't know bytea_output option) bug_49985.phpt Make result "locale" independent
* Fixed bug #65047 (Test skip on client / server version)Matteo Beccati2013-06-192-0/+10
|
* Merge branch 'PHP-5.3' into PHP-5.4Matteo Beccati2013-06-021-3/+5
|\ | | | | | | | | * PHP-5.3: Clean up leftover test files
| * Clean up leftover test filesMatteo Beccati2013-06-021-3/+5
| |
* | Fix PDO::inTransaction() test for pgsqlNikita Popov2013-06-021-4/+4
| | | | | | | | | | | | inTransaction() nowadays casts the in_transaction result to boolean. I'm not sure whether the INERROR state should result in true or false. For now I went with the result that we actually get.
* | Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-10-301-0/+51
|\ \ | |/ | | | | | | | | | | | | | | | | * PHP-5.3: NEWS for bug #62593 Bug #62593 Updated to account for INOUT parameters Bug #62593 Updated test to verify bindParam doesn't change original value Bug #62593 Updated to always treat zval by value Bug #62593 Added test for change Bug #62593 Updated pdo_pgsql driver to convert boolean values to pg native format in emulation mode
| * Bug #62593 Updated test to verify bindParam doesn't change original valueWill Fitch2012-10-301-1/+3
| |
| * Bug #62593 Updated to always treat zval by valueWill Fitch2012-10-301-3/+8
| |
| * Bug #62593 Added test for changeWill Fitch2012-10-301-0/+44
| |
| * - Fixed bug #61267: pdo_pgsql's PDO::exec() returns the number of SELECTedGustavo André dos Santos Lopes2012-03-081-0/+22
| | | | | | | | | | rows on postgresql >= 9
| * Removed test for functionality available in 5.4+Ilia Alshanetsky2011-05-311-66/+0
| |
| * - Fixed tests not passing under windows because of the directory separatorPatrick Allaert2010-11-081-1/+1
| | | | | | | | | | difference (thanks Eyal Teutsch for reporting)
| * Added inTransaction() method to PDO, with specialized support for PostgresIlia Alshanetsky2010-06-101-0/+66
| |
| * Added support for copy to/from array/file for pdo_pgsql extension. Ilia Alshanetsky2010-06-102-0/+515
| | | | | | | | | | | | # original patch by Denis Gasparin
* | - Fixed bug #61267: pdo_pgsql's PDO::exec() returns the number of SELECTedGustavo André dos Santos Lopes2012-03-081-0/+22
| | | | | | | | | | rows on postgresql >= 9
* | - Fixed tests not passing under windows because of the directory separatorPatrick Allaert2010-11-081-1/+1
| | | | | | | | | | difference (thanks Eyal Teutsch for reporting)
* | Added inTransaction() method to PDO, with specialized support for PostgresIlia Alshanetsky2010-06-101-0/+66
| |
* | Added support for copy to/from array/file for pdo_pgsql extension. Ilia Alshanetsky2010-06-102-0/+515
|/ | | | | | # original patch by Denis Gasparin
* - Updated pdo_pgsql tests to be 8.5+ friendlyMatteo Beccati2009-12-252-4/+8
|
* - Properly fixed bug #49985 (pdo_pgsql prepare() re-use previous aborted ↵Matteo Beccati2009-11-041-0/+35
| | | | | | | | transaction). # Removed usage of the memory address when generating prepared statemend names # as uniqueness can't be enforced. Used a statment counter instead.
* - Fixed bug #48764 (PDO_pgsql::query always uses implicit prepared ↵Matteo Beccati2009-10-071-0/+134
| | | | | | | statements if v3 proto available) # original patch by Mark Kirkwood
* MFHMatteo Beccati2009-05-121-86/+0
| | | | | | | | - Moved test for bug #44861 to PDO commons and added support for pdo_oci # This allows scrollable cursors to be tested with all the drivers # that currently support them (pgsql and oci), ensuring a consistent # behaviour. The test is skipped when using other drivers.
* MFHMatteo Beccati2009-05-121-0/+8
| | | | | - Fixed bug #48188
* MFH:Matteo Beccati2009-04-231-6/+10
| | | | | | | | - Reverted previous fix for bug #46274 and properly fixed it - Fixed bug #48060 # Also added tests for pdo_oci as it's the only other driver currently # using streams: no regression found
* - Fixed bug #44861 (scrollable cursor don't work with pgsql)Matteo Beccati2009-03-281-0/+78
|
* MFH: Fixed test bug #47311 (PDO::PARAM_LOB columns need to be bound before ↵Felipe Pena2009-02-111-2/+34
| | | | execute() on PgSQL)
* - MFH: Fixed bug #43925 (Incorrect argument counter in prepared statements ↵Felipe Pena2008-10-231-0/+59
| | | | with pgsql)
* - Complete the fix for #46274, and testsFelipe Pena2008-10-122-0/+172
|
* Fixed testIlia Alshanetsky2007-12-041-1/+1
|
* Fixed bug #43457 (Prepared statement with incorrect parms doens'tIlia Alshanetsky2007-12-021-1/+2
| | | | | throw exception with pdo_pgsql driver)
* fix test namesAntony Dovgal2007-05-071-1/+1
|
* fix #36727 (segfault in pdo_pgsql bindValue() when no parameters are defined)Antony Dovgal2006-03-171-0/+23
|
* - MFH Fix testsMarcus Boerger2005-12-311-0/+1
|
* Added PDO::pgsqlLOBCreate(), PDO::pgsqlLOBOpen() and PDO::pgsqlLOBUnlink().Wez Furlong2005-11-294-0/+77
|
* Fixed test for ZTS buildsIlia Alshanetsky2005-10-181-3/+3
|
* Fixed testIlia Alshanetsky2005-09-221-1/+0
|
* MFH: Make PDO use class constantsIlia Alshanetsky2005-09-201-14/+14
|
* if a php bolean makes it as far as the parameter callback, it must really needWez Furlong2005-09-101-0/+150
| | | | | | | to be boolean; express is as native pgsql 't' or 'f'. Add a test case for Bug #33876, which is a partially bogus bug.
* using new testsWez Furlong2005-07-0729-1746/+0
|
* adopt new testsWez Furlong2005-07-071-0/+23
|
* Fixed test skip conditions.Ilia Alshanetsky2005-06-211-1/+6
| | | | | | # Same needs to be done to odbc, but it seems access is restricted # for "privileged" folks.
* - Need to make PDO::__construct() final to prevent SEGV it isn't called 1stMarcus Boerger2005-05-262-2/+0
|