Commit Graph

45214 Commits

Author SHA1 Message Date
Ulf Wendel
12c301e7ec Weaker test: functions are only available if HAVE_EMBEDDED_MYSQLI is set. There is probably no proper way to check this condition in the user land. 2009-05-29 10:25:37 +00:00
Ulf Wendel
05fdee2c65 Skip when using libmysql. Likely a regression bug - http://bugs.mysql.com/bug.php?id=45184 2009-05-29 10:15:32 +00:00
Zoe Slattery
0106b6e2df fixing to work with older levels of libcurl 2009-05-29 09:45:42 +00:00
Andrey Hristov
6b21010022 The option has changed the name, hence we change the test 2009-05-29 08:58:10 +00:00
Pierre Joye
2e41430516 - MFB: #42143, the constant NAN is reported as 0 on Windows 2009-05-29 08:18:42 +00:00
Andrey Hristov
9230362631 Fix a very well hidden error because of not being careful with CPP.
I usually don't make this mistake :)
2009-05-29 08:05:21 +00:00
Zoe Slattery
533c6473f0 Engine execution order tests 2009-05-29 07:51:42 +00:00
Kalle Sommer Nielsen
2ec0e93ae8 If we don't have a comment (for the 3rd argument in ARG_[ENABLE|WITH], then don't print a comment say "undefined" 2009-05-29 07:41:46 +00:00
158d825dea ChangeLog update 2009-05-29 01:32:44 +00:00
Kalle Sommer Nielsen
8a84716527 * Cast long to float in the T1* functions, we don't loose any data here
* Fix min/max redefs
2009-05-29 00:18:53 +00:00
Scott MacVicar
d8d4c1d188 Fix bug #48416 - Force a cache size for ereg to stop it getting out of control. Lazy LRU here. 2009-05-28 21:56:35 +00:00
Kalle Sommer Nielsen
9cc941b31a zstr should be used here, this nukes another compiler warning 2009-05-28 20:53:09 +00:00
Kalle Sommer Nielsen
70f99a9610 Fix compiler warnings introduced by the JIT commit 2009-05-28 20:47:01 +00:00
Kalle Sommer Nielsen
f490cdfae3 % shouldn't be escaped here 2009-05-28 20:46:05 +00:00
Kalle Sommer Nielsen
d1c04314c5 MFB: This should be in HEAD regradless of uint8_t is available or not 2009-05-28 19:40:37 +00:00
Ulf Wendel
8116eeb124 Asynchronous queries are mysqlnd only. If you want them with libmysql, ping JimW who works on Connector/C. 2009-05-28 18:57:14 +00:00
Ulf Wendel
db3f0aa99e Andrey needs to have a look at this one. The bug report itself is bogus. However, the bug report shows a result set and that is wrong. 2009-05-28 18:27:44 +00:00
Andrey Hristov
7b5dcc895a Forgot to commit this one, of the ANSI_QUOTES fame 2009-05-28 18:10:12 +00:00
Andrey Hristov
42495ccdde Fix again the tests for ANSI_QUOTES 2009-05-28 18:00:08 +00:00
Andrey Hristov
86aa4e8035 Fix a valgrind warning as well as more trace log information 2009-05-28 17:49:00 +00:00
Andrey Hristov
09b56ed2a5 Fix a problem with cursors, which did not happen with unbuffered PS for
some reason. Double free of the data, which led to valgrind warnigns.
The fix actually optimizes the code in this cases because the old code
used copy_ctor while the new one skips it because it is not needed.
Transferring data ownership and nulling works best, for PS where we
always copy the string from the result set, unlike the text protocol.
2009-05-28 16:35:16 +00:00
Ulf Wendel
f9fb575cd7 I had accidently removed Andrey's path to work with ANSI QUOTES... fixing what I broke (part 1) 2009-05-28 15:47:08 +00:00
Ulf Wendel
85cb084fc5 1) Changing EXPECT[F] sections to work with PHP 5.3 and PHP 6. 2) Merging a couple of fixes I applied to PHP 5.3 only yesterday. The changes should make it a little easier to do MFH and follow the rules in the future as we will soon have identical tests for PHP 5_3 and HEAD. 2009-05-28 14:11:41 +00:00
Ulf Wendel
ff1535fe73 Fixing test (its OK in 5_3 and needs to be fixed in HEAD) 2009-05-28 13:55:46 +00:00
Pierre Joye
c85b4de5fb #48378, exif_read_data() segfaults on certain corrupted .jpeg files 2009-05-28 13:44:43 +00:00
Arnaud Le Blanc
df4d44d78c New test 2009-05-28 13:22:15 +00:00
Pierre Joye
37eb8162a1 - MFB: fix build 2009-05-28 11:50:15 +00:00
Andrey Hristov
c90b10a290 Fix a bug with mysqlnd_fetch_field(_direct()). With mysqlnd the optimised
function was called, which however, doesn't respect that during store the
raw data is not unpacked, to be lazy. The data is unpacked to zvals later,
during every row fetch. However, this way max_length won't be calculated
correctly. So, if a mysqlnd_fetch_field(_direct) call comes we need to
unpack everything and then calculate max_length...and that is expensive,
defies our lazy unpacking optimisation.
2009-05-28 11:47:15 +00:00
Andrey Hristov
7d2383061c Fix a test, UNSIGNED is expected 2009-05-28 10:16:18 +00:00
Arnaud Le Blanc
5a19216596 New test 2009-05-28 10:15:32 +00:00
Andrey Hristov
2caa76ae62 Fix failures when the server is running with ANSI_QUOTES 2009-05-28 09:57:54 +00:00
Antony Dovgal
006646df9c fix build 2009-05-28 09:45:20 +00:00
Jani Taskinen
91a262adbd - Fix build for winblows 2009-05-28 09:09:02 +00:00
Scott MacVicar
b7728c2622 sync SQLite 3.6.14.2 2009-05-28 03:18:55 +00:00
ffa6025d9a ChangeLog update 2009-05-28 01:32:58 +00:00
Robert Nicholson
3cb550d1cd Language Tests: returnByReference 2009-05-27 22:33:25 +00:00
Andrey Hristov
0168fc5dda Less warnings by usage of proper modifier 2009-05-27 20:04:49 +00:00
Andrey Hristov
0ebb041393 because we use int64_t we need corresponding printf modifiers. the type
can be different on 32 and 64 bit, thus we can't use ld and lld but
C helps us with inttypes.h and PRId64 and PRIu64 modifiers (without the %)
2009-05-27 19:56:47 +00:00
Andrey Hristov
e3456c0460 Fix tests when the server is running with ANSI_QUOTES 2009-05-27 18:13:56 +00:00
Andrey Hristov
8124e94d22 Additional revert 2009-05-27 15:04:55 +00:00
Antony Dovgal
248dc58005 use request encoding when parsing cookies
fixes 14 segfaults in HEAD
2009-05-27 14:53:05 +00:00
Andrey Hristov
77373e8694 Revert previous patch to something that make sense and works in error cases 2009-05-27 14:16:00 +00:00
Pierre Joye
af3ec48bb6 - fix build on unix with bundled gd 2009-05-27 13:56:08 +00:00
Antony Dovgal
4a0523c105 fix compile warnings 2009-05-27 13:42:00 +00:00
David Soria Parra
d482bb692a Remove duplicated code of zend_hash_func and alias it to zend_get_hash_value 2009-05-27 11:58:44 +00:00
Pierre Joye
e6a7960d30 - [DOC] always enable imagecolormatch 2009-05-27 08:12:07 +00:00
Pierre Joye
fd8095a2eb - [DOC] always enable imagerotate (using bundled or system gd) 2009-05-27 07:16:55 +00:00
Kalle Sommer Nielsen
e4e7b6c3ef Lets pass the built php binary to run-tests.php's -p parameter 2009-05-27 01:46:27 +00:00
Kalle Sommer Nielsen
9365e593d1 Added configure.bat to cvsignore 2009-05-27 01:44:48 +00:00
Kalle Sommer Nielsen
cbc025725e Silent dl() if it fails 2009-05-27 01:37:51 +00:00