summaryrefslogtreecommitdiff
path: root/ext/pgsql
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Use EXPECT instead of EXPECTF when possibleGabriel Caruso2018-02-203-3/+3
| | | | | | | | | | | | EXPECTF logic in run-tests.php is considerable, so let's avoid it.
* | | Reduce var scopeAnatol Belski2018-02-181-32/+24
| | |
* | | Remove empty sections in testsGabriel Caruso2018-02-141-1/+0
| | |
* | | Fix misspelling vlaues to valuesGabriel Caruso2018-01-281-1/+1
| | |
* | | Merge branch 'PHP-7.2'Xinchen Hui2018-01-181-0/+1
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.2: Updated NEWS Fixed #75838 (Memory leak in pg_escape_bytea())
| * | Merge branch 'PHP-7.1' into PHP-7.2Xinchen Hui2018-01-181-0/+1
| |\ \ | | |/ | | | | | | | | | * PHP-7.1: Fixed #75838 (Memory leak in pg_escape_bytea())
| | * Fixed #75838 (Memory leak in pg_escape_bytea())Xinchen Hui2018-01-181-0/+1
| | |
| | * year++Xinchen Hui2018-01-022-2/+2
| | |
| * | year++Xinchen Hui2018-01-022-2/+2
| | |
* | | Avoid separation and simlifyed conversionDmitry Stogov2018-01-171-25/+12
| | |
* | | year++Xinchen Hui2018-01-022-2/+2
| | |
* | | zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is ↵Dmitry Stogov2017-12-271-1/+0
| | | | | | | | | | | | initialized if zend_fcall_info_cache.function_handler is set).
* | | Merge branch 'PHP-7.2'Anatol Belski2017-12-151-20/+15
|\ \ \ | |/ / | | | | | | | | | * PHP-7.2: Fixed bug #75671 pg_version() crashes when called on a connection to cockroach
| * | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2017-12-151-20/+15
| |\ \ | | |/ | | | | | | | | | * PHP-7.1: Fixed bug #75671 pg_version() crashes when called on a connection to cockroach
| | * Fixed bug #75671 pg_version() crashes when called on a connection to cockroachAnatol Belski2017-12-151-20/+15
| | |
* | | Move constants into read-only data segmentDmitry Stogov2017-12-141-1/+1
| | |
* | | Move constants into read-only data segmentDmitry Stogov2017-12-141-1/+1
| | |
* | | Cleanup type conversionDmitry Stogov2017-12-071-2/+1
| | |
* | | Enable and fix printf() format warningsNikita Popov2017-11-161-1/+1
| | | | | | | | | | | | | | | | | | Add _unchecked() variants of zend_spprintf and zend_strpprintf for cases where we specifically want to disable these checks, such as use of %H.
* | | Fix remaining signedness warningsAnatol Belski2017-11-141-2/+2
| | |
* | | Patch core for PCRE2 supportAnatol Belski2017-11-131-11/+22
| | | | | | | | | | | | RFC https://wiki.php.net/rfc/pcre2-migration
* | | Persistent resources are "thread-local".Dmitry Stogov2017-11-011-5/+1
| | | | | | | | | | | | Register persistent resources through new functions zend_register_persistent_resource()/zend_register_persistent_resource_ex().
* | | Merge branch 'master' into rc_debugDmitry Stogov2017-10-301-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (26 commits) Better fix for bug #75451 (Assertion fails while foreach on empty xpath query) Catch with the latest AppVeyor unzip errors Fixed type inference Fix bug #75453 Incorrect reflection on ibase_connect and ibase_pconnect Fix compiler warnings We don't use a specific model for a MAKERNOTE so remove these checks that doesn't do anything anyway Remove these old comments, as for the TODO, there is already a FR for this Re-enable AppVeyor cache make sure run-tests reports exit status upon prerequisite error Remove implicit constants from test case Fix invalid read in zend_use_undefined_constant() Fix invalid read in mb_ord() Remove --with-libmbfl configure option Fixed bug #75451 (Assertion fails while foreach on empty xpath query) Add tests for UConverter::getStandards() convert spaces to tabs in ext/ftp/tests/server.inc Add tests for ftp_rename Fix bug #75434 Wrong reflection for mysqli_fetch_all function Don't optimize input arrays with suffix holes Fix bug #75307 Wrong reflection for openssl_open function ...
| * \ \ Merge branch 'PHP-7.2'Anatol Belski2017-10-271-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.2: Fix test compat for PostgreSQL 10
| | * | Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2017-10-271-1/+1
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.1: Fix test compat for PostgreSQL 10
| | | * Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-10-271-1/+1
| | | |\ | | | | | | | | | | | | | | | | | | | | * PHP-7.0: Fix test compat for PostgreSQL 10
| | | | * Fix test compat for PostgreSQL 10Anatol Belski2017-10-271-1/+1
| | | | |
* | | | | Encapsulate reference-counting primitives.Dmitry Stogov2017-10-271-2/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | Prohibit direct update of GC_REFCOUNT(), GC_SET_REFCOUNT(), GC_ADDREF() and GC_DELREF() shoukf be instead. Added mactros to validate reference-counting (disabled for now). These macros are going to be used to eliminate race-condintions during reference-counting on data shared between threads.
* | | | Merge branch 'PHP-7.2'Sara Golemon2017-10-241-0/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.2: Decref default_link when clearing
| * | | Merge branch 'PHP-7.1' into PHP-7.2Sara Golemon2017-10-241-0/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.1: Decref default_link when clearing
| | * | Merge branch 'PHP-7.0' into PHP-7.1Sara Golemon2017-10-241-0/+1
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.0: Decref default_link when clearing
| | | * Decref default_link when clearingSara Golemon2017-10-241-0/+1
| | | |
* | | | Merge branch 'PHP-7.2'Sara Golemon2017-10-232-13/+21
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.2: Bugfix#75419 Fix clearing of default link during pg_close()
| * | | Merge branch 'PHP-7.1' into PHP-7.2Sara Golemon2017-10-232-13/+21
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.1: Bugfix#75419 Fix clearing of default link during pg_close()
| | * | Merge branch 'PHP-7.0' into PHP-7.1Sara Golemon2017-10-232-13/+21
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.0: Bugfix#75419 Fix clearing of default link during pg_close()
| | | * Bugfix#75419 Fix clearing of default link during pg_close()Sara Golemon2017-10-232-13/+21
| | | |
* | | | We don't use these makefiles for compiling PHP extensions anymore (PHP4 era)Kalle Sommer Nielsen2017-08-171-170/+0
| | | |
* | | | Implemented FR #74781 (Add the latest PG_DIAG_* const)Kalle Sommer Nielsen2017-08-171-0/+18
|/ / /
* | | Merge branch 'PHP-7.1'Joe Watkins2017-01-261-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.1: Fix 00version.phpt when commit message has multiple lines.
| * | Merge branch 'PHP-7.0' into PHP-7.1Joe Watkins2017-01-261-1/+1
| |\ \ | | |/ | | | | | | | | | * PHP-7.0: Fix 00version.phpt when commit message has multiple lines.
| | * Fix 00version.phpt when commit message has multiple lines.Mitch Hagstrand2017-01-261-1/+1
| | | | | | | | | | | | | | | | | | The environment variable "TRAVIS_COMMIT_MESSAGE" can contain multiple lines. An example can be seen here https://travis-ci.org/php/php-src/jobs/195465293
| | * Update copyright headers to 2017Sammy Kaye Powers2017-01-042-2/+2
| | |
| * | Update copyright headers to 2017Sammy Kaye Powers2017-01-042-2/+2
| | |
* | | Update copyright headers to 2017Sammy Kaye Powers2017-01-022-2/+2
| | |
* | | Merge branch 'PHP-7.1'Anatol Belski2016-12-011-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.1: fix dir separator Update NEWS for the build
| * | fix dir separatorAnatol Belski2016-12-011-1/+1
| | |
* | | further normalizations, uint vs uint32_tAnatol Belski2016-11-261-1/+1
| | | | | | | | | | | | | | | | | | fix merge mistake yet one more replacement run
* | | Merge branch 'PHP-7.1'Anatol Belski2016-11-225-2/+30
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.1: Fix bug #73498 Add a test for bug 73498
| * | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-11-225-2/+30
| |\ \ | | |/ | | | | | | | | | | | | * PHP-7.0: Fix bug #73498 Add a test for bug 73498
| | * Merge branch 'PHP-5.6' into PHP-7.0Anatol Belski2016-11-225-2/+30
| | |\ | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Fix bug #73498 Add a test for bug 73498