[-]
[+]
|
Changed |
php5-mysqlnd_ms.changes
|
|
[-]
[+]
|
Changed |
php5-mysqlnd_ms.spec
^
|
|
[-]
[+]
|
Deleted |
mysqlnd_ms-1.5.1.tgz/mysqlnd_ms-1.5.1/CHANGES
^
|
@@ -1,295 +0,0 @@
-1.5.0 alpha
-
- Motto/theme: Sharding support, improved transaction support
- Release date: 03/2013
-
- * BC break and bug fix: SQL hints enforcing the use of a specific server
- are ignored for the duration of a transaction, given a transaction
- has been properly detected. Please note, other than intended
- SQL hints did not overrule all other rules in prior versions
- in all cases (bug). For example, the QoS filter did ignore the SQL hints
- MYSQLND_MS_USE_SLAVE, MYSQLND_MS_USE_MASTER, MYSQLND_MS_USE_LAST_USED
- already in prior versions whereas transaction stickiness could
- be overruled using the SQL hints if, and only if, transaction
- stickiness was not used with a QoS filter. The new behaviour
- differs from the previous but its consistent: neither transaction
- stickiness nor QoS can be overruled by SQL hints. It is no longer
- possible to send a query to a slave using MYSQLND_MS_USE_SLAVE hint
- when in a transaction that is to be executed on the master. This is
- most likely what you expect anyway.
-
- * BC break and bug fix: Calls to mysqlnd_ms_set_qos() are blocked
- in the middle of a transaction if transaction stickiness is
- set and transaction boundaries are detected properly. Switching
- servers is forbidden in the middle of a transaction, thus
- changes to quality of service resulting in different servers
- being used are blocked. However, if autocommit is disabled one
- can still change QoS in between transactions like so:
- autocommit(false); mysqlnd_ms_set_qos(); begin(); ... ; commit(); mysqlnd_ms_set_qos(); begin();
- This is no longer allowed:
- autocommit(false); query()|begin(): mysqlnd_ms_set_qos();
-
- * Fixed #60605 PHP segmentation fault when mysqlnd_ms is enabled
- The bug was caused by using an uninitialized handle. Implicit
- connect as part of lazy connections have been extended to cover
- (hopefully) all situations in which the status of a connection
- is read before a connection has been established, for example,
- situations in which get_server_version() is called prior
- to connecting to any server. The implicit connect added
- will establish a connection to the first configured
- master.
-
- The extended implicit connect also means less warnings,
- for example, when calling more_results() on a connection
- handle on which no query has been run so far.
-
- * New filter: node_groups
-
- The filter lets you organize servers (master and slaves)
- in groups. Queries can be directed to a certain group of servers
- by prefixing the query statement with a SQL hint/comment, e.g.:
-
- /*group_name*/SELECT ...
- /*group_name*/INSERT ...
-
- Directing a query to a fixed and predefined subset of cluster
- nodes may be desired for cache locality optimizations (keep
- certain server caches hot with certain queries) or to build
- shard/partitioning groups. In the latter case the group_name
- can be considered a shard key. Note, however, this is only
- the client part, which is the easiest. Do not confuse the
- feature with the table filter (experimental) which supports
- schema based partitioning (do-replicate-* server config).
-
- * examples/ contents clearned up
-
- * Extended warnings during RINIT about faulty configuration file
-
- PHP warnings are thrown is the configuration file cannot be read,
- is empty or contains no valid JSON.
-
- Distributions that aim to provide a pre-configured setup including a
- configuration file stub are asked to put <literal>{}</literal> into
- the configuration file to prevent any warnings about an invalid
- configuration.
-
- * Fixed: Setting transaction stickiness disables all load balancing,
- including automatic failover, for the duration of a transaction.
- So far connection switches could have happened in the middle of a
- transaction in multi-master configurations and during automatic
- failover although transaction monitoring had detected
- transaction boundaries properly.
-
- * Added transaction monitoring based on mysqlnd tx_begin()
- (user space call: mysqli_begin(), mysqli_rollback(), ...)
- NOTE: PDO_MySQL has not yet been modified to use the appropriate
- mysqlnd library calls. Improved trx monitoring works
- with mysqli only.
-
- * Added new transaction stickiness setting trx_stickiness=on
- which allows the use of slaves for read only transactions.
-
- * Removed experimental feature notes for remember_failed
- failover setting from documentation. remember_failed is
- very useful together with the improved trx_stickiness=on
- setting.
-
- * Marked query cache support as beta for mysqli in config.m4.
- It should work fine for primary copy based clusters.
- NOTE: PDO is a different story, still experimental.
-
-
-1.4.2 stable
-
- Release date: 08/2012
-
-1.4.1 beta
-
- Release date: 08/2012
-
- * Fixed compatibility with PHP 5.5
-
-1.4.0 alpha
-
- Motto/theme: Tweaking based on user feedback
- Release date: 07/2012
-
- * BC break: renamed ini setting "ini_file" to "config_file".
- Earlier versions have been configured through an ini style file
- and its name was set with the ini setting "ini_file". The ini
- style soon got replaced with JSON. We are now updating the file name
- to config_file to leave the past behing and avoid confusion with
- the PHP configuration file
-
- * New config setting: "server_charset". Allows setting of charset
- to be used for string encoding before connections have been opened.
- Most useful with lazy connections.
-
- * Improved error messages if opening and/or parsing of plugin
- configuration file fails.
-
- * Added "wait_for_gtid_timeout" for throttling of read-your-write SELECTs
-
- * Weighted load balancing. Servers can have a weight. Before picking a server, the
- load balancing logic sorts the server list by weight and picks the one with the
- highest weight. Then, the weight counter is decremented and the same logic is
- applied for the next request.
-
- * New failover strategy "loop_before_master". If connecting to a slave
- fails the plugin can either return an error to the caller
- (strategy "disabled", default), fall back to the master (stategy "master") or
- try to connect to any of the other slaves before connecting to the master
- (stategy "loop_before_master").
-
- * New "max_retries" setting to be used with fail over strategy "loop_before_master".
- If "max_retries" is set to 0 (default), all alternatives will be tested
- and the search is unlimited. Set max_retries to n to limit slave connection attempts
- to n attempts before falling back to master. If, multiple master are configured
- and max_retries = n != 0, then n masters are tested. No matter whether there
- was a slave loop before or not. This means that there can be update 2 * n
- connection attempts before the plugin gives up. Experimental: stable but syntax
- may change and QoS may not support it.
-
- * New "remember_failed" setting to remember hosts that have failed and skip
- them for the rest of the the web request instead of attempting to connect
- again. Experimental: stable with roundrobin and random but not supported
- with QoS - syntax is likely to change due to refactoring.
-
-
-1.3.2 stable
-
- Release date: 04/2012
-
- * Fixed problem with multi-master where although in a transaction
- the queries to the master weren't sticky and were spread all
- over the masters (RR). Still not sticky for Random. Random_once
- is not affected.
-
-
-1.3.1 beta
-
- Release date: 04/2012
-
- * Fixed problem with building together with QC.
-
-
-1.3.0 alpha
-
- Motto/theme: Query caching through quality-of-service concept
- Release date: 04/2012
-
- * Added support for MySQL 5.6.5-m8+ global transaction ID feature
- - GTID is string if using server-side feature
- - GTID continues to be a long if using client-side emulation
-
- * Added query cache support to quality-of-service filter
- - new compile option --enable-mysqlnd-ms-cache-support
- - new constant MYSQLND_MS_QOS_OPTION_CACHE to be used with mysqlnd_ms_set_qos()
- - new constant MYSQLND_MS_HAVE_CACHE_SUPPORT set if cache support is compiled in
-
-
-1.2.1 beta
-
- Motto/theme: Global Transaction ID injection and quality-of-service concept
- Release date: 01/2012
-
- * No major changes
-
-
-1.2.0 alpha
-
- Motto/theme: Global Transaction ID injection and quality-of-service concept
- Release date: 12/2011
-
- * Introduced quality-of-service (QoS) filter
- * Added mysqlnd_ms_set_qos() function to set required connection quality at runtime
- * New constants related to mysqlnd_ms_set_qos()
- - MYSQLND_MS_QOS_CONSISTENCY_STRONG
- - MYSQLND_MS_QOS_CONSISTENCY_SESSION
- - MYSQLND_MS_QOS_CONSISTENCY_EVENTUAL
- - MYSQLND_MS_QOS_OPTION_GTID
- - MYSQLND_MS_QOS_OPTION_AGE
- * Service levels provided by QoS filter
- * eventual consistency, optional option slave lag
- * session consistency, optional option GTID
- * strong consistency
-
- * Added global transaction ID injection (GTID)
- * Added mysqlnd_ms_get_last_gtid() to fetch last transaction id
- * Enabled support for multi master with or without slaves
- * New statistics related to GTID:
- - gtid_autocommit_injections_success
- - gtid_autocommit_injections_failure
- - gtid_commit_injections_success
- - gtid_commit_injections_failure
- - gtid_implicit_commit_injections_success
- - gtid_implicit_commit_injections_failure
-
-
-1.1.2 stable / production ready
-
- Motto/theme : Cover replication basics with production quality
- Release date: 11/2011
-
- * Introduced mysqlnd_ms.disable_rw_split ini setting
- * Fixed Bug #60119 - host="localhost" lost in mysqlnd_ms_get_last_used_connection()
-
-
-1.1.1 beta
-
- Motto/theme : Cover replication basics with production quality
- Release date: 10/2011
-
- * NOTE: 1.1.0 alpha (PECL version) has reported itself as "1.1.0-beta"
- * Fixed PECL #59982 - Unusable extension with --enable-mysqlnd-ms-table-filter
- Use of the option is NOT supported. You must not used it. Added note to m4.
-
-
-1.1.0 alpha
-
- Motto/theme : Cover replication basics with production quality
- Release date: 09/2011
-
- * Code base refactored to prepare for future releases
- * Introduction of (chainable) filter concept
- * New powerful JSON based configuration syntax
- * Lazy connections improved: security relevant, state changing commands covered
- * Support for (native) prepared statements
- * Added new function - mysqlnd_ms_get_last_used_connection($obj_or_res)
- * Replaced mysqlnd_ms_set_user_pick_server() with "user" filter
- * New statistics: use_slave_guess, use_master_guess
- * Change of semantics of statistics: use_slave, use_master
- * List of broadcasted messages extended: ssl_set
- * Commands monitored to remember settings for lazy connections: change_user,
- select_db, set_charset, set_autocommit.
- * The plugin configuration file must contain a slave list. Failing to provide
- will cause an E_ERROR level error (fatal). The slave list may be empty.
-
- * MySQL replication filter (client-side partitioning) support prepared
- * Multi-master configuration support prepared (ini setting: mysqlnd_ms.multi_master)
-
- * Almost 5x more tests, code coverage through tests 75-90% for core files
- * Fixed PECL #22724 - Server switching (mysqlnd_ms_query_is_select case sensitive)
- * Fixed PECL #22784 - Using mysql_connect and mysql_select_db() won't work
-
-
-1.0 alpha
-
- Release date: 04/2011
- Motto/theme : Cover replication basics to test user feeedback
-
- * Basic automatic read-write split (read: slave, write: master)
- * SQL hints to overrule automatic R/W split
- * Load balancing of slave requests
-
-
-1.0 pre-alpha
-
- Release date: 09/2010
- Motto/theme : Proof-of-concept
-
- * Initial check-in
- * Hardly more than a demo of the mysqlnd
- * Hardly of any practial use.
-
-
|
[-]
[+]
|
Deleted |
mysqlnd_ms-1.5.1.tgz/mysqlnd_ms-1.5.1/mysqlnd_ms.h
^
|
@@ -1,165 +0,0 @@
-/*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2008 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_01.txt |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Author: Andrey Hristov <andrey@php.net> |
- | Ulf Wendel <uw@php.net> |
- | Johannes Schlueter <johannes@php.net> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id: mysqlnd_ms.h 329460 2013-02-11 13:16:00Z uw $ */
-#ifndef MYSQLND_MS_H
-#define MYSQLND_MS_H
-
-#ifndef SMART_STR_START_SIZE
-#define SMART_STR_START_SIZE 1024
-#endif
-#ifndef SMART_STR_PREALLOC
-#define SMART_STR_PREALLOC 256
-#endif
-#include "ext/standard/php_smart_str.h"
-
-#include "ext/mysqlnd/mysqlnd.h"
-#include "ext/mysqlnd/mysqlnd_statistics.h"
-#include "ext/mysqlnd/mysqlnd_debug.h"
-#include "ext/mysqlnd/mysqlnd_priv.h"
-#include "mysqlnd_ms_enum_n_def.h"
-
-#if MYSQLND_VERSION_ID > 50009
-#include "ext/mysqlnd/mysqlnd_reverse_api.h"
-#endif
-
-
-#ifdef ZTS
-#include "TSRM.h"
-#endif
-
-#define MYSQLND_MS_CONFIG_FORMAT "json"
-
-ZEND_BEGIN_MODULE_GLOBALS(mysqlnd_ms)
- zend_bool enable;
- zend_bool force_config_usage;
- const char * config_file;
- zval * user_pick_server;
- zend_bool collect_statistics;
- zend_bool multi_master;
- zend_bool disable_rw_split;
- char * config_startup_error;
-ZEND_END_MODULE_GLOBALS(mysqlnd_ms)
-
-
-#ifdef ZTS
-#define MYSQLND_MS_G(v) TSRMG(mysqlnd_ms_globals_id, zend_mysqlnd_ms_globals *, v)
-#else
-#define MYSQLND_MS_G(v) (mysqlnd_ms_globals.v)
-#endif
-
-#define MYSQLND_MS_VERSION "1.5.0-alpha"
-#define MYSQLND_MS_VERSION_ID 10500
-
-#define MYSQLND_MS_ERROR_PREFIX "(mysqlnd_ms)"
-
-extern MYSQLND_STATS * mysqlnd_ms_stats;
-
-
-/*
- ALREADY FIXED:
- Keep it false for now or we will have races in connect,
- where multiple instance can read the slave[] values and so
- move the pointer of each other. Need to find better implementation of
- hotloading.
- Maybe not use `hotloading? FALSE:TRUE` but an expclicit lock around
- the array extraction of master[] and slave[] and pass FALSE to
- mysqlnd_ms_json_config_string(), meaning it should not try to get a lock.
-*/
-#define MYSLQND_MS_HOTLOADING FALSE
-
-extern unsigned int mysqlnd_ms_plugin_id;
-extern struct st_mysqlnd_ms_json_config * mysqlnd_ms_json_config;
-ZEND_EXTERN_MODULE_GLOBALS(mysqlnd_ms)
-
-
-void mysqlnd_ms_register_hooks();
-void mysqlnd_ms_conn_list_dtor(void * pDest);
-PHPAPI zend_bool mysqlnd_ms_match_wild(const char * const str, const char * const wildstr TSRMLS_DC);
-struct st_mysqlnd_ms_list_data;
-enum_func_status mysqlnd_ms_lazy_connect(struct st_mysqlnd_ms_list_data * element, zend_bool master TSRMLS_DC);
-
-void mysqlnd_ms_client_n_php_error(MYSQLND_ERROR_INFO * error_info,
- unsigned int client_error_code,
- const char * const client_error_state,
- unsigned int php_error_level TSRMLS_DC,
- const char * const format, ...);
-
-struct st_ms_token_and_value
-{
- unsigned int token;
- zval value;
-};
-
-
-struct st_mysqlnd_query_scanner
-{
- void * scanner;
- zval * token_value;
-};
-
-struct st_mysqlnd_ms_table_info
-{
- char * db;
- char * table;
- char * org_table;
- zend_bool persistent;
-};
-
-struct st_mysqlnd_ms_field_info
-{
- char * db;
- char * table;
- char * name;
- char * org_name;
- void * custom_data;
- zend_bool free_custom_data;
- zend_bool persistent;
-};
-
-struct st_mysqlnd_parse_info
-{
- zend_llist table_list;
- zend_llist select_field_list;
- zend_llist where_field_list;
- zend_llist * active_field_list;
- zend_bool parse_where;
- enum_mysql_statement_type statement;
- zend_bool persistent;
-};
-
-struct st_mysqlnd_query_parser
-{
- struct st_mysqlnd_query_scanner * scanner;
- struct st_mysqlnd_parse_info parse_info;
-};
-
-
-#endif /* MYSQLND_MS_H */
-
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: noet sw=4 ts=4 fdm=marker
- * vim<600: noet sw=4 ts=4
- */
|
[-]
[+]
|
Deleted |
mysqlnd_ms-1.5.1.tgz/mysqlnd_ms-1.5.1/tests/mysqlnd_ms_constants.phpt
^
|
@@ -1,69 +0,0 @@
---TEST--
-Constants
---SKIPIF--
-<?php
-require_once('skipif.inc');
-?>
---FILE--
-<?php
- $expected = array(
- "MYSQLND_MS_VERSION" => true,
- "MYSQLND_MS_VERSION_ID" => true,
-
- /* SQL hints */
- "MYSQLND_MS_MASTER_SWITCH" => true,
- "MYSQLND_MS_SLAVE_SWITCH" => true,
- "MYSQLND_MS_LAST_USED_SWITCH" => true,
-
- /* Return values of mysqlnd_ms_is_select() */
- "MYSQLND_MS_QUERY_USE_LAST_USED" => true,
- "MYSQLND_MS_QUERY_USE_MASTER" => true,
- "MYSQLND_MS_QUERY_USE_SLAVE" => true,
- );
-
- if (defined("MYSQLND_MS_HAVE_FILTER_TABLE_PARTITION")) {
- $expected["MYSQLND_MS_HAVE_FILTER_TABLE_PARTITION"] = false;
- }
-
- if (defined("MYSQLND_MS_HAVE_CACHE_SUPPORT")) {
- $expected["MYSQLND_MS_HAVE_CACHE_SUPPORT"] = false;
- }
-
- if (version_compare(PHP_VERSION, '5.3.99', ">")) {
- $expected["MYSQLND_MS_QOS_CONSISTENCY_STRONG"] = false;
- $expected["MYSQLND_MS_QOS_CONSISTENCY_SESSION"] = false;
- $expected["MYSQLND_MS_QOS_CONSISTENCY_EVENTUAL"] = false;
- $expected["MYSQLND_MS_QOS_OPTION_GTID"] = false;
- $expected["MYSQLND_MS_QOS_OPTION_AGE"] = false;
- $expected["MYSQLND_MS_QOS_OPTION_CACHE"] = false;
- }
-
- $constants = get_defined_constants(true);
- $constants = (isset($constants['mysqlnd_ms'])) ? $constants['mysqlnd_ms'] : array();
- ksort($constants);
- foreach ($constants as $name => $value) {
- if (!isset($expected[$name])) {
- printf("[001] Unexpected constants: %s/%s\n", $name, $value);
- } else {
- if ($expected[$name])
- printf("%s = '%s'\n", $name, $value);
- unset($expected[$name]);
- }
- }
- if (!empty($expected)) {
- printf("[002] Dumping list of missing constants\n");
- var_dump($expected);
- }
-
- print "done!";
-?>
---EXPECTF--
-MYSQLND_MS_LAST_USED_SWITCH = 'ms=last_used'
-MYSQLND_MS_MASTER_SWITCH = 'ms=master'
-MYSQLND_MS_QUERY_USE_LAST_USED = '2'
-MYSQLND_MS_QUERY_USE_MASTER = '0'
-MYSQLND_MS_QUERY_USE_SLAVE = '1'
-MYSQLND_MS_SLAVE_SWITCH = 'ms=slave'
-MYSQLND_MS_VERSION = '1.5.0-alpha'
-MYSQLND_MS_VERSION_ID = '10500'
-done!
\ No newline at end of file
|
[-]
[+]
|
Deleted |
mysqlnd_ms-1.5.1.tgz/mysqlnd_ms-1.5.1/tests/mysqlnd_ms_reflection_extension.phpt
^
|
@@ -1,86 +0,0 @@
---TEST--
-ReflectionExtension basics to check API
---SKIPIF--
-<?php
-require_once('skipif.inc');
-if (version_compare(PHP_VERSION, '5.3.99', "<")) {
- die("SKIP Test expects PHP 5.4 only functions");
-}
-?>
---FILE--
-<?php
- $r = new ReflectionExtension("mysqlnd_ms");
-
- printf("Name: %s\n", $r->name);
-
- printf("Version: %s\n", $r->getVersion());
- if ($r->getVersion() != MYSQLND_MS_VERSION) {
- printf("[001] Expecting version '%s' got '%s'\n", MYSQLND_MS_VERSION, $r->getVersion());
- }
-
- $classes = $r->getClasses();
- if (!empty($classes)) {
- printf("[002] Expecting no class\n");
- asort($classes);
- var_dump($classes);
- }
-
- $expected = array(
- 'json' => true,
- 'standard' => true,
- 'mysqlnd' => true,
- 'mysqlnd_qc'=> true,
- );
-
- $dependencies = $r->getDependencies();
- asort($dependencies);
- printf("Dependencies:\n");
- foreach ($dependencies as $what => $how) {
- printf(" %s - %s, ", $what, $how);
- if (isset($expected[$what])) {
- unset($expected[$what]);
- } else {
- printf("Unexpected extension dependency with %s - %s\n", $what, $how);
- }
- }
- if (!empty($expected)) {
- printf("Dumping list of missing extension dependencies\n");
- var_dump($expected);
- }
- printf("\n");
-
- $ignore = array();
- if (version_compare(PHP_VERSION, '5.3.99', ">")) {
- $ignore['mysqlnd_ms_set_qos'] = true;
- $ignore['mysqlnd_ms_get_last_gtid'] = true;
- }
-
- $functions = $r->getFunctions();
- asort($functions);
- printf("Functions:\n");
- foreach ($functions as $func) {
- if (isset($ignore[$func->name])) {
- unset($ignore[$func->name]);
- } else {
- printf(" %s\n", $func->name);
- }
- }
- if (!empty($ignore)) {
- printf("Dumping version dependent and missing functions\n");
- var_dump($ignore);
- }
-
-
- print "done!";
-?>
---EXPECTF--
-Name: mysqlnd_ms
-Version: 1.5.0-alpha
-Dependencies:
-%s
-Functions:
- mysqlnd_ms_get_last_used_connection
- mysqlnd_ms_get_stats
- mysqlnd_ms_match_wild
- mysqlnd_ms_query_is_select
-done!
\ No newline at end of file
|
[-]
[+]
|
Added |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/CHANGES
^
|
@@ -0,0 +1,309 @@
+1.4.2 stable
+
+ Release date: 06/2013
+
+ Fixed problems with versions
+
+
+1.4.1 stable
+
+ Release date: 06/2013
+
+ Release as stable
+
+
+1.5.0 alpha
+
+ Motto/theme: Sharding support, improved transaction support
+ Release date: 03/2013
+
+ * BC break and bug fix: SQL hints enforcing the use of a specific server
+ are ignored for the duration of a transaction, given a transaction
+ has been properly detected. Please note, other than intended
+ SQL hints did not overrule all other rules in prior versions
+ in all cases (bug). For example, the QoS filter did ignore the SQL hints
+ MYSQLND_MS_USE_SLAVE, MYSQLND_MS_USE_MASTER, MYSQLND_MS_USE_LAST_USED
+ already in prior versions whereas transaction stickiness could
+ be overruled using the SQL hints if, and only if, transaction
+ stickiness was not used with a QoS filter. The new behaviour
+ differs from the previous but its consistent: neither transaction
+ stickiness nor QoS can be overruled by SQL hints. It is no longer
+ possible to send a query to a slave using MYSQLND_MS_USE_SLAVE hint
+ when in a transaction that is to be executed on the master. This is
+ most likely what you expect anyway.
+
+ * BC break and bug fix: Calls to mysqlnd_ms_set_qos() are blocked
+ in the middle of a transaction if transaction stickiness is
+ set and transaction boundaries are detected properly. Switching
+ servers is forbidden in the middle of a transaction, thus
+ changes to quality of service resulting in different servers
+ being used are blocked. However, if autocommit is disabled one
+ can still change QoS in between transactions like so:
+ autocommit(false); mysqlnd_ms_set_qos(); begin(); ... ; commit(); mysqlnd_ms_set_qos(); begin();
+ This is no longer allowed:
+ autocommit(false); query()|begin(): mysqlnd_ms_set_qos();
+
+ * Fixed #60605 PHP segmentation fault when mysqlnd_ms is enabled
+ The bug was caused by using an uninitialized handle. Implicit
+ connect as part of lazy connections have been extended to cover
+ (hopefully) all situations in which the status of a connection
+ is read before a connection has been established, for example,
+ situations in which get_server_version() is called prior
+ to connecting to any server. The implicit connect added
+ will establish a connection to the first configured
+ master.
+
+ The extended implicit connect also means less warnings,
+ for example, when calling more_results() on a connection
+ handle on which no query has been run so far.
+
+ * New filter: node_groups
+
+ The filter lets you organize servers (master and slaves)
+ in groups. Queries can be directed to a certain group of servers
+ by prefixing the query statement with a SQL hint/comment, e.g.:
+
+ /*group_name*/SELECT ...
+ /*group_name*/INSERT ...
+
+ Directing a query to a fixed and predefined subset of cluster
+ nodes may be desired for cache locality optimizations (keep
+ certain server caches hot with certain queries) or to build
+ shard/partitioning groups. In the latter case the group_name
+ can be considered a shard key. Note, however, this is only
+ the client part, which is the easiest. Do not confuse the
+ feature with the table filter (experimental) which supports
+ schema based partitioning (do-replicate-* server config).
+
+ * examples/ contents clearned up
+
+ * Extended warnings during RINIT about faulty configuration file
+
+ PHP warnings are thrown is the configuration file cannot be read,
+ is empty or contains no valid JSON.
+
+ Distributions that aim to provide a pre-configured setup including a
+ configuration file stub are asked to put <literal>{}</literal> into
+ the configuration file to prevent any warnings about an invalid
+ configuration.
+
+ * Fixed: Setting transaction stickiness disables all load balancing,
+ including automatic failover, for the duration of a transaction.
+ So far connection switches could have happened in the middle of a
+ transaction in multi-master configurations and during automatic
+ failover although transaction monitoring had detected
+ transaction boundaries properly.
+
+ * Added transaction monitoring based on mysqlnd tx_begin()
+ (user space call: mysqli_begin(), mysqli_rollback(), ...)
+ NOTE: PDO_MySQL has not yet been modified to use the appropriate
+ mysqlnd library calls. Improved trx monitoring works
+ with mysqli only.
+
+ * Added new transaction stickiness setting trx_stickiness=on
+ which allows the use of slaves for read only transactions.
+
+ * Removed experimental feature notes for remember_failed
+ failover setting from documentation. remember_failed is
+ very useful together with the improved trx_stickiness=on
+ setting.
+
+ * Marked query cache support as beta for mysqli in config.m4.
+ It should work fine for primary copy based clusters.
+ NOTE: PDO is a different story, still experimental.
+
+
+1.4.2 stable
+
+ Release date: 08/2012
+
+1.4.1 beta
+
+ Release date: 08/2012
+
+ * Fixed compatibility with PHP 5.5
+
+1.4.0 alpha
+
+ Motto/theme: Tweaking based on user feedback
+ Release date: 07/2012
+
+ * BC break: renamed ini setting "ini_file" to "config_file".
+ Earlier versions have been configured through an ini style file
+ and its name was set with the ini setting "ini_file". The ini
+ style soon got replaced with JSON. We are now updating the file name
+ to config_file to leave the past behing and avoid confusion with
+ the PHP configuration file
+
+ * New config setting: "server_charset". Allows setting of charset
+ to be used for string encoding before connections have been opened.
+ Most useful with lazy connections.
+
+ * Improved error messages if opening and/or parsing of plugin
+ configuration file fails.
+
+ * Added "wait_for_gtid_timeout" for throttling of read-your-write SELECTs
+
+ * Weighted load balancing. Servers can have a weight. Before picking a server, the
+ load balancing logic sorts the server list by weight and picks the one with the
+ highest weight. Then, the weight counter is decremented and the same logic is
+ applied for the next request.
+
+ * New failover strategy "loop_before_master". If connecting to a slave
+ fails the plugin can either return an error to the caller
+ (strategy "disabled", default), fall back to the master (stategy "master") or
+ try to connect to any of the other slaves before connecting to the master
+ (stategy "loop_before_master").
+
+ * New "max_retries" setting to be used with fail over strategy "loop_before_master".
+ If "max_retries" is set to 0 (default), all alternatives will be tested
+ and the search is unlimited. Set max_retries to n to limit slave connection attempts
+ to n attempts before falling back to master. If, multiple master are configured
+ and max_retries = n != 0, then n masters are tested. No matter whether there
+ was a slave loop before or not. This means that there can be update 2 * n
+ connection attempts before the plugin gives up. Experimental: stable but syntax
+ may change and QoS may not support it.
+
+ * New "remember_failed" setting to remember hosts that have failed and skip
+ them for the rest of the the web request instead of attempting to connect
+ again. Experimental: stable with roundrobin and random but not supported
+ with QoS - syntax is likely to change due to refactoring.
+
+
+1.3.2 stable
+
+ Release date: 04/2012
+
+ * Fixed problem with multi-master where although in a transaction
+ the queries to the master weren't sticky and were spread all
+ over the masters (RR). Still not sticky for Random. Random_once
+ is not affected.
+
+
+1.3.1 beta
+
+ Release date: 04/2012
+
+ * Fixed problem with building together with QC.
+
+
+1.3.0 alpha
+
+ Motto/theme: Query caching through quality-of-service concept
+ Release date: 04/2012
+
+ * Added support for MySQL 5.6.5-m8+ global transaction ID feature
+ - GTID is string if using server-side feature
+ - GTID continues to be a long if using client-side emulation
+
+ * Added query cache support to quality-of-service filter
+ - new compile option --enable-mysqlnd-ms-cache-support
+ - new constant MYSQLND_MS_QOS_OPTION_CACHE to be used with mysqlnd_ms_set_qos()
+ - new constant MYSQLND_MS_HAVE_CACHE_SUPPORT set if cache support is compiled in
+
+
+1.2.1 beta
+
+ Motto/theme: Global Transaction ID injection and quality-of-service concept
+ Release date: 01/2012
+
+ * No major changes
+
+
+1.2.0 alpha
+
+ Motto/theme: Global Transaction ID injection and quality-of-service concept
+ Release date: 12/2011
+
+ * Introduced quality-of-service (QoS) filter
+ * Added mysqlnd_ms_set_qos() function to set required connection quality at runtime
+ * New constants related to mysqlnd_ms_set_qos()
+ - MYSQLND_MS_QOS_CONSISTENCY_STRONG
+ - MYSQLND_MS_QOS_CONSISTENCY_SESSION
+ - MYSQLND_MS_QOS_CONSISTENCY_EVENTUAL
+ - MYSQLND_MS_QOS_OPTION_GTID
+ - MYSQLND_MS_QOS_OPTION_AGE
+ * Service levels provided by QoS filter
+ * eventual consistency, optional option slave lag
+ * session consistency, optional option GTID
+ * strong consistency
+
+ * Added global transaction ID injection (GTID)
+ * Added mysqlnd_ms_get_last_gtid() to fetch last transaction id
+ * Enabled support for multi master with or without slaves
+ * New statistics related to GTID:
+ - gtid_autocommit_injections_success
+ - gtid_autocommit_injections_failure
+ - gtid_commit_injections_success
+ - gtid_commit_injections_failure
+ - gtid_implicit_commit_injections_success
+ - gtid_implicit_commit_injections_failure
+
+
+1.1.2 stable / production ready
+
+ Motto/theme : Cover replication basics with production quality
+ Release date: 11/2011
+
+ * Introduced mysqlnd_ms.disable_rw_split ini setting
+ * Fixed Bug #60119 - host="localhost" lost in mysqlnd_ms_get_last_used_connection()
+
+
+1.1.1 beta
+
+ Motto/theme : Cover replication basics with production quality
+ Release date: 10/2011
+
+ * NOTE: 1.1.0 alpha (PECL version) has reported itself as "1.1.0-beta"
+ * Fixed PECL #59982 - Unusable extension with --enable-mysqlnd-ms-table-filter
+ Use of the option is NOT supported. You must not used it. Added note to m4.
+
+
+1.1.0 alpha
+
+ Motto/theme : Cover replication basics with production quality
+ Release date: 09/2011
+
+ * Code base refactored to prepare for future releases
+ * Introduction of (chainable) filter concept
+ * New powerful JSON based configuration syntax
+ * Lazy connections improved: security relevant, state changing commands covered
+ * Support for (native) prepared statements
+ * Added new function - mysqlnd_ms_get_last_used_connection($obj_or_res)
+ * Replaced mysqlnd_ms_set_user_pick_server() with "user" filter
+ * New statistics: use_slave_guess, use_master_guess
+ * Change of semantics of statistics: use_slave, use_master
+ * List of broadcasted messages extended: ssl_set
+ * Commands monitored to remember settings for lazy connections: change_user,
+ select_db, set_charset, set_autocommit.
+ * The plugin configuration file must contain a slave list. Failing to provide
+ will cause an E_ERROR level error (fatal). The slave list may be empty.
+
+ * MySQL replication filter (client-side partitioning) support prepared
+ * Multi-master configuration support prepared (ini setting: mysqlnd_ms.multi_master)
+
+ * Almost 5x more tests, code coverage through tests 75-90% for core files
+ * Fixed PECL #22724 - Server switching (mysqlnd_ms_query_is_select case sensitive)
+ * Fixed PECL #22784 - Using mysql_connect and mysql_select_db() won't work
+
+
+1.0 alpha
+
+ Release date: 04/2011
+ Motto/theme : Cover replication basics to test user feeedback
+
+ * Basic automatic read-write split (read: slave, write: master)
+ * SQL hints to overrule automatic R/W split
+ * Load balancing of slave requests
+
+
+1.0 pre-alpha
+
+ Release date: 09/2010
+ Motto/theme : Proof-of-concept
+
+ * Initial check-in
+ * Hardly more than a demo of the mysqlnd
+ * Hardly of any practial use.
+
+
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/CREDITS
^
|
(renamed from mysqlnd_ms-1.5.1/CREDITS)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/CREDITS
^
|
(renamed from mysqlnd_ms-1.5.1/CREDITS)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/LICENSE
^
|
(renamed from mysqlnd_ms-1.5.1/LICENSE)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/LICENSE
^
|
(renamed from mysqlnd_ms-1.5.1/LICENSE)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/README
^
|
(renamed from mysqlnd_ms-1.5.1/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/README
^
|
(renamed from mysqlnd_ms-1.5.1/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/config.m4
^
|
(renamed from mysqlnd_ms-1.5.1/config.m4)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/config.m4
^
|
(renamed from mysqlnd_ms-1.5.1/config.m4)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/config.w32
^
|
(renamed from mysqlnd_ms-1.5.1/config.w32)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/config.w32
^
|
(renamed from mysqlnd_ms-1.5.1/config.w32)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/README
^
|
(renamed from mysqlnd_ms-1.5.1/examples/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/README
^
|
(renamed from mysqlnd_ms-1.5.1/examples/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/config.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/config.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/config.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/config.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/failover.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/failover.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/failover.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/failover.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/multi_master.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/multi_master.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/multi_master.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/multi_master.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_multi_master_config.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_multi_master_config.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_multi_master_config.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_multi_master_config.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config_failover.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config_failover.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config_failover.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config_failover.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config_sharding.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config_sharding.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/mysqlnd_ms_single_master_config_sharding.json
^
|
(renamed from mysqlnd_ms-1.5.1/examples/mysqlnd_ms_single_master_config_sharding.json)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/rw_split.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/rw_split.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/rw_split.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/rw_split.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/sharding.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/sharding.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/examples/sharding.php
^
|
(renamed from mysqlnd_ms-1.5.1/examples/sharding.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mf_wcomp.c
^
|
(renamed from mysqlnd_ms-1.5.1/mf_wcomp.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mf_wcomp.c
^
|
(renamed from mysqlnd_ms-1.5.1/mf_wcomp.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms.c)
|
[-]
[+]
|
Added |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms.h
^
|
@@ -0,0 +1,165 @@
+/*
+ +----------------------------------------------------------------------+
+ | PHP Version 5 |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1997-2008 The PHP Group |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.01 of the PHP license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.php.net/license/3_01.txt |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@php.net so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Author: Andrey Hristov <andrey@php.net> |
+ | Ulf Wendel <uw@php.net> |
+ | Johannes Schlueter <johannes@php.net> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id: mysqlnd_ms.h 330598 2013-06-21 08:25:22Z andrey $ */
+#ifndef MYSQLND_MS_H
+#define MYSQLND_MS_H
+
+#ifndef SMART_STR_START_SIZE
+#define SMART_STR_START_SIZE 1024
+#endif
+#ifndef SMART_STR_PREALLOC
+#define SMART_STR_PREALLOC 256
+#endif
+#include "ext/standard/php_smart_str.h"
+
+#include "ext/mysqlnd/mysqlnd.h"
+#include "ext/mysqlnd/mysqlnd_statistics.h"
+#include "ext/mysqlnd/mysqlnd_debug.h"
+#include "ext/mysqlnd/mysqlnd_priv.h"
+#include "mysqlnd_ms_enum_n_def.h"
+
+#if MYSQLND_VERSION_ID > 50009
+#include "ext/mysqlnd/mysqlnd_reverse_api.h"
+#endif
+
+
+#ifdef ZTS
+#include "TSRM.h"
+#endif
+
+#define MYSQLND_MS_CONFIG_FORMAT "json"
+
+ZEND_BEGIN_MODULE_GLOBALS(mysqlnd_ms)
+ zend_bool enable;
+ zend_bool force_config_usage;
+ const char * config_file;
+ zval * user_pick_server;
+ zend_bool collect_statistics;
+ zend_bool multi_master;
+ zend_bool disable_rw_split;
+ char * config_startup_error;
+ZEND_END_MODULE_GLOBALS(mysqlnd_ms)
+
+
+#ifdef ZTS
+#define MYSQLND_MS_G(v) TSRMG(mysqlnd_ms_globals_id, zend_mysqlnd_ms_globals *, v)
+#else
+#define MYSQLND_MS_G(v) (mysqlnd_ms_globals.v)
+#endif
+
+#define MYSQLND_MS_VERSION "1.5.2"
+#define MYSQLND_MS_VERSION_ID 10502
+
+#define MYSQLND_MS_ERROR_PREFIX "(mysqlnd_ms)"
+
+extern MYSQLND_STATS * mysqlnd_ms_stats;
+
+
+/*
+ ALREADY FIXED:
+ Keep it false for now or we will have races in connect,
+ where multiple instance can read the slave[] values and so
+ move the pointer of each other. Need to find better implementation of
+ hotloading.
+ Maybe not use `hotloading? FALSE:TRUE` but an expclicit lock around
+ the array extraction of master[] and slave[] and pass FALSE to
+ mysqlnd_ms_json_config_string(), meaning it should not try to get a lock.
+*/
+#define MYSLQND_MS_HOTLOADING FALSE
+
+extern unsigned int mysqlnd_ms_plugin_id;
+extern struct st_mysqlnd_ms_json_config * mysqlnd_ms_json_config;
+ZEND_EXTERN_MODULE_GLOBALS(mysqlnd_ms)
+
+
+void mysqlnd_ms_register_hooks();
+void mysqlnd_ms_conn_list_dtor(void * pDest);
+PHPAPI zend_bool mysqlnd_ms_match_wild(const char * const str, const char * const wildstr TSRMLS_DC);
+struct st_mysqlnd_ms_list_data;
+enum_func_status mysqlnd_ms_lazy_connect(struct st_mysqlnd_ms_list_data * element, zend_bool master TSRMLS_DC);
+
+void mysqlnd_ms_client_n_php_error(MYSQLND_ERROR_INFO * error_info,
+ unsigned int client_error_code,
+ const char * const client_error_state,
+ unsigned int php_error_level TSRMLS_DC,
+ const char * const format, ...);
+
+struct st_ms_token_and_value
+{
+ unsigned int token;
+ zval value;
+};
+
+
+struct st_mysqlnd_query_scanner
+{
+ void * scanner;
+ zval * token_value;
+};
+
+struct st_mysqlnd_ms_table_info
+{
+ char * db;
+ char * table;
+ char * org_table;
+ zend_bool persistent;
+};
+
+struct st_mysqlnd_ms_field_info
+{
+ char * db;
+ char * table;
+ char * name;
+ char * org_name;
+ void * custom_data;
+ zend_bool free_custom_data;
+ zend_bool persistent;
+};
+
+struct st_mysqlnd_parse_info
+{
+ zend_llist table_list;
+ zend_llist select_field_list;
+ zend_llist where_field_list;
+ zend_llist * active_field_list;
+ zend_bool parse_where;
+ enum_mysql_statement_type statement;
+ zend_bool persistent;
+};
+
+struct st_mysqlnd_query_parser
+{
+ struct st_mysqlnd_query_scanner * scanner;
+ struct st_mysqlnd_parse_info parse_info;
+};
+
+
+#endif /* MYSQLND_MS_H */
+
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_config_json.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_config_json.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_config_json.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_config_json.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_config_json.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_config_json.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_config_json.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_config_json.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_enum_n_def.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_enum_n_def.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_enum_n_def.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_enum_n_def.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_groups.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_groups.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_groups.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_groups.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_groups.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_groups.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_groups.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_groups.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_qos.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_qos.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_qos.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_qos.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_qos.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_qos.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_qos.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_qos.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_random.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_random.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_random.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_random.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_random.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_random.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_random.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_random.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_round_robin.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_round_robin.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_round_robin.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_round_robin.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_round_robin.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_round_robin.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_round_robin.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_round_robin.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_table_partition.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_table_partition.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_table_partition.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_table_partition.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_table_partition.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_table_partition.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_table_partition.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_table_partition.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_user.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_user.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_user.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_user.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_user.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_user.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_filter_user.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_filter_user.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_lb_weights.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_lb_weights.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_lb_weights.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_lb_weights.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_lb_weights.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_lb_weights.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_lb_weights.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_lb_weights.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_switch.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_switch.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_switch.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_switch.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_switch.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_switch.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_ms_switch.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_ms_switch.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_qp.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_qp.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_qp.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_qp.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.flex
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.flex)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.flex
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.flex)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.lex.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.lex.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_lexer.lex.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_lexer.lex.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.c
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.grammar
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.grammar)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.grammar
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.grammar)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/mysqlnd_query_parser.h
^
|
(renamed from mysqlnd_ms-1.5.1/mysqlnd_query_parser.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/php_mysqlnd_ms.c
^
|
(renamed from mysqlnd_ms-1.5.1/php_mysqlnd_ms.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/php_mysqlnd_ms.c
^
|
(renamed from mysqlnd_ms-1.5.1/php_mysqlnd_ms.c)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/php_mysqlnd_ms.h
^
|
(renamed from mysqlnd_ms-1.5.1/php_mysqlnd_ms.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/php_mysqlnd_ms.h
^
|
(renamed from mysqlnd_ms-1.5.1/php_mysqlnd_ms.h)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/README
^
|
(renamed from mysqlnd_ms-1.5.1/tests/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/README
^
|
(renamed from mysqlnd_ms-1.5.1/tests/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/README
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/README
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/README)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/abstract.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/abstract.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/abstract.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/abstract.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/config.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/config.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/config.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/config.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/main.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/main.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/main.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/main.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_main.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_main.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_main.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_main.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_renderer_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_renderer_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_renderer_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_renderer_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_storage_db_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_storage_db_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_storage_db_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_storage_db_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_testrunner_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_testrunner_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/rb_testrunner_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/rb_testrunner_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/web/rb_create_csv.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/web/rb_create_csv.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/framework/web/rb_create_csv.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/framework/web/rb_create_csv.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt1.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt1.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt1.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt1.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt1_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt1_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt1_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt1_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt2.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt2.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/andrey_stmt2.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/andrey_stmt2.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/georg_bench1.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/georg_bench1.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/georg_bench1.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/georg_bench1.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/georg_bench2.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/georg_bench2.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/georg_bench2.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/georg_bench2.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_affected_rows.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_affected_rows.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_affected_rows.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_affected_rows.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_connect.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_connect.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_connect.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_connect.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_connect_and_close.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_connect_and_close.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_connect_and_close.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_connect_and_close.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_random.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_random.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_random.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_random.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_random_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_random_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_random_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_random_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_sequential.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_sequential.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_data_seek_sequential.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_data_seek_sequential.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_all_vs_fetch_array.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_all_vs_fetch_array.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_all_vs_fetch_array.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_all_vs_fetch_array.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_field_direct.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_field_direct.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_field_direct.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_field_direct.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_buffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_buffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_buffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_buffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_unbuffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_unbuffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_unbuffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_unbuffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_unbuffered_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_unbuffered_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_fetch_long_unbuffered_php_run_normal.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_fetch_long_unbuffered_php_run_normal.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_insert_id.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_insert_id.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_insert_id.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_insert_id.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_many_cols_buf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_many_cols_buf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_many_cols_buf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_many_cols_buf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_many_cols_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_many_cols_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_many_cols_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_many_cols_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_query_insert_varchar.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_query_insert_varchar.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_query_insert_varchar.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_query_insert_varchar.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_query_update_varchar.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_query_update_varchar.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_query_update_varchar.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_query_update_varchar.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_real_connect_and_close.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_real_connect_and_close.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_real_connect_and_close.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_real_connect_and_close.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_real_query.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_real_query.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_real_query.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_real_query.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_sel_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_sel_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_sel_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_sel_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_select_varchar_buffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_select_varchar_buffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_select_varchar_buffered.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_select_varchar_buffered.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_skeleton.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_skeleton.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_skeleton.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_skeleton.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_data_seek_random.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_data_seek_random.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_data_seek_random.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_data_seek_random.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_execute.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_execute.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_execute.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_execute.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_insert.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_insert.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_insert.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_insert.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_many_col.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_many_col.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_many_col.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_many_col.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_seek_seq.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_seek_seq.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_seek_seq.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_seek_seq.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_sel_buf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_sel_buf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_sel_buf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_sel_buf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_sel_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_sel_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_stmt_sel_unbuf.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_stmt_sel_unbuf.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_variable_command_size.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_variable_command_size.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqli_variable_command_size.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqli_variable_command_size.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqlnd_ms_php.ini
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqlnd_ms_php.ini)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqlnd_ms_php.ini
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqlnd_ms_php.ini)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqlnd_ms_slave_hint.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqlnd_ms_slave_hint.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bench/micro_benches/mysqlnd_ms_slave_hint.php
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bench/micro_benches/mysqlnd_ms_slave_hint.php)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bug_60605.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bug_60605.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bug_60605.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bug_60605.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bug_pecl_22784.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bug_pecl_22784.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/bug_pecl_22784.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/bug_pecl_22784.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/config.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/config.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/config.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/config.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/connect.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/connect.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/connect.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/connect.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_autocommit_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_autocommit_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_autocommit_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_autocommit_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_mysqli_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_mysqli_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_pdo_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_pdo_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_begin_pdo_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_begin_pdo_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_change_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_change_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_change_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_change_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_change_user_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_change_user_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_change_user_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_change_user_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_pdo_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_pdo_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_charsets_pdo_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_charsets_pdo_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_config_access.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_config_access.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_config_access.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_config_access.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_connection_references.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_connection_references.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_connection_references.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_connection_references.phpt)
|
[-]
[+]
|
Added |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_constants.phpt
^
|
@@ -0,0 +1,69 @@
+--TEST--
+Constants
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+?>
+--FILE--
+<?php
+ $expected = array(
+ "MYSQLND_MS_VERSION" => true,
+ "MYSQLND_MS_VERSION_ID" => true,
+
+ /* SQL hints */
+ "MYSQLND_MS_MASTER_SWITCH" => true,
+ "MYSQLND_MS_SLAVE_SWITCH" => true,
+ "MYSQLND_MS_LAST_USED_SWITCH" => true,
+
+ /* Return values of mysqlnd_ms_is_select() */
+ "MYSQLND_MS_QUERY_USE_LAST_USED" => true,
+ "MYSQLND_MS_QUERY_USE_MASTER" => true,
+ "MYSQLND_MS_QUERY_USE_SLAVE" => true,
+ );
+
+ if (defined("MYSQLND_MS_HAVE_FILTER_TABLE_PARTITION")) {
+ $expected["MYSQLND_MS_HAVE_FILTER_TABLE_PARTITION"] = false;
+ }
+
+ if (defined("MYSQLND_MS_HAVE_CACHE_SUPPORT")) {
+ $expected["MYSQLND_MS_HAVE_CACHE_SUPPORT"] = false;
+ }
+
+ if (version_compare(PHP_VERSION, '5.3.99', ">")) {
+ $expected["MYSQLND_MS_QOS_CONSISTENCY_STRONG"] = false;
+ $expected["MYSQLND_MS_QOS_CONSISTENCY_SESSION"] = false;
+ $expected["MYSQLND_MS_QOS_CONSISTENCY_EVENTUAL"] = false;
+ $expected["MYSQLND_MS_QOS_OPTION_GTID"] = false;
+ $expected["MYSQLND_MS_QOS_OPTION_AGE"] = false;
+ $expected["MYSQLND_MS_QOS_OPTION_CACHE"] = false;
+ }
+
+ $constants = get_defined_constants(true);
+ $constants = (isset($constants['mysqlnd_ms'])) ? $constants['mysqlnd_ms'] : array();
+ ksort($constants);
+ foreach ($constants as $name => $value) {
+ if (!isset($expected[$name])) {
+ printf("[001] Unexpected constants: %s/%s\n", $name, $value);
+ } else {
+ if ($expected[$name])
+ printf("%s = '%s'\n", $name, $value);
+ unset($expected[$name]);
+ }
+ }
+ if (!empty($expected)) {
+ printf("[002] Dumping list of missing constants\n");
+ var_dump($expected);
+ }
+
+ print "done!";
+?>
+--EXPECTF--
+MYSQLND_MS_LAST_USED_SWITCH = 'ms=last_used'
+MYSQLND_MS_MASTER_SWITCH = 'ms=master'
+MYSQLND_MS_QUERY_USE_LAST_USED = '2'
+MYSQLND_MS_QUERY_USE_MASTER = '0'
+MYSQLND_MS_QUERY_USE_SLAVE = '1'
+MYSQLND_MS_SLAVE_SWITCH = 'ms=slave'
+MYSQLND_MS_VERSION = '1.5.2'
+MYSQLND_MS_VERSION_ID = '10502'
+done!
\ No newline at end of file
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_disable_rw_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_disable_rw_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_disable_rw_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_disable_rw_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_empty_slave_list.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_empty_slave_list.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_empty_slave_list.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_empty_slave_list.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_enable_rw_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_enable_rw_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_enable_rw_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_enable_rw_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_enable_rw_rr_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_enable_rw_rr_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_enable_rw_rr_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_enable_rw_rr_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_error_errno_sqlstate.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_error_errno_sqlstate.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_error_errno_sqlstate.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_error_errno_sqlstate.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_error_message.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_error_message.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_error_message.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_error_message.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_default.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_default.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_default.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_default.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_failover_old_syntax_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_failover_old_syntax_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_field_count.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_field_count.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_field_count.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_field_count.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_empty_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_empty_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_empty_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_empty_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_empty_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_empty_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_empty_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_empty_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_qos_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_qos_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_qos_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_qos_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_setup_mess.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_setup_mess.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_setup_mess.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_setup_mess.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_unknown_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_unknown_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_unknown_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_unknown_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_unknown_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_unknown_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_groups_unknown_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_groups_unknown_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_multi_last.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_multi_last.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_multi_last.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_multi_last.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict1.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict1.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict1.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict1.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_config_conflict4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_config_conflict4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_age.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_age.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_age.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_age.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_cache.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_cache.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_cache.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_cache.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_cache_conflict.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_cache_conflict.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_cache_conflict.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_cache_conflict.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_consistency_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_consistency_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_consistency_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_consistency_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_disable_rw_split.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_disable_rw_split.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_disable_rw_split.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_disable_rw_split.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_eventual_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master_strong_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master_strong_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master_strong_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master_strong_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master_strong_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master_strong_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_multi_master_strong_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_multi_master_strong_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_master_on_write.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_master_on_write.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_master_on_write.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_master_on_write.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_trx_stickiness_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_rt_gtid_wait_for_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_runtime.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_runtime.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_runtime.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_runtime.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_mm_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_mm_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_mm_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_mm_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_session_consistency_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_strong_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_strong_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_strong_consistency.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_strong_consistency.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_qos_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_qos_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_ro_partitioning_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_ro_partitioning_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_ro_partitioning_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_ro_partitioning_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_filter_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_filter_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_connection_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_connection_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_connection_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_connection_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_params.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_params.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_params.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_params.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_sql_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_sql_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_gtid_sql_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_gtid_sql_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_used_connection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_used_connection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_used_connection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_used_connection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_used_connection_switches.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_used_connection_switches.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_last_used_connection_switches.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_last_used_connection_switches.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats_register_shutdown.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats_register_shutdown.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_get_stats_register_shutdown.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_get_stats_register_shutdown.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_autocommit_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_autocommit_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_autocommit_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_autocommit_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_r_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_r_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_r_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_r_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_rr_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_rr_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_begin_mysqli_rr_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_begin_mysqli_rr_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_commit_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_commit_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_commit_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_commit_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_commit_stats_ps.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_commit_stats_ps.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_commit_stats_ps.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_commit_stats_ps.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_implicit_commit_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_implicit_commit_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_implicit_commit_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_implicit_commit_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_check_for_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_check_for_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_check_for_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_check_for_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_fetch_last_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_fetch_last_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_fetch_last_gtid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_fetch_last_gtid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_on_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_on_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_invalid_on_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_invalid_on_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_get_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_get_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_get_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_get_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_get_result_mq.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_get_result_mq.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_get_result_mq.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_get_result_mq.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_no_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_no_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_no_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_no_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_report_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_report_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_report_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_report_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_report_error_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_report_error_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_report_error_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_report_error_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_store_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_store_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_store_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_store_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_use_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_use_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_autocommit_use_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_autocommit_use_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_report_errors_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_report_errors_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_ps_report_errors_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_ps_report_errors_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_off_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_off_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_off_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_off_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_on_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_on_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_report_errors_on_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_report_errors_on_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_serverside_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_serverside_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_serverside_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_serverside_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_serverside_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_serverside_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_serverside_stats.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_serverside_stats.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_tx_non_ms.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_tx_non_ms.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_gtid_tx_non_ms.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_gtid_tx_non_ms.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_host_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_host_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_host_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_host_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ini_settings.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ini_settings.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ini_settings.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ini_settings.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_insert_affected.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_insert_affected.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_insert_affected.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_insert_affected.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_insert_affected_pdo.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_insert_affected_pdo.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_insert_affected_pdo.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_insert_affected_pdo.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_last_used_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_last_used_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_autocommit_switches.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_autocommit_switches.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_autocommit_switches.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_autocommit_switches.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_change_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_change_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_change_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_change_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_charsets.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_charsets.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_charsets.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_charsets.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_master_only_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_master_only_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_master_only_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_master_only_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random_default_strategy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random_default_strategy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random_default_strategy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random_default_strategy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_rr_default_strategy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_rr_default_strategy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_failure_failover_remember_rr_default_strategy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_failure_failover_remember_rr_default_strategy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_get_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_get_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_get_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_get_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_failover_loop_max_retries_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_master_failure_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_master_failure_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_more_results.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_more_results.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_more_results.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_more_results.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_multi_master_failure_failover_loop_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_next_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_next_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_next_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_next_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_other_commands.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_other_commands.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_other_commands.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_other_commands.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_other_commands_old.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_other_commands_old.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_other_commands_old.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_other_commands_old.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_prepared_statements.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_prepared_statements.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_prepared_statements.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_prepared_statements.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_real_escape_set_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_real_escape_set_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_real_escape_set_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_real_escape_set_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_rollback.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_rollback.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_rollback.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_rollback.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_select_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_select_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_select_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_select_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_set_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_set_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_set_charset.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_set_charset.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure2_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure2_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure2_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure2_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure2_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure2_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure2_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure2_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_range.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_range.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_range.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_range.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_max_retries_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_multi_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master2_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_no_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_loop_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_slave_failure_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_slave_failure_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_stmt_init.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_stmt_init.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lazy_stmt_init.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lazy_stmt_init.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lb_filter_twice_ro_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lb_filter_twice_ro_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lb_filter_twice_ro_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lb_filter_twice_ro_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lb_filter_twice_rr_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lb_filter_twice_rr_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_lb_filter_twice_rr_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_lb_filter_twice_rr_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_async.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_async.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_async.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_async.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_async_cont.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_async_cont.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_async_cont.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_async_cont.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_connection_options.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_connection_options.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_connection_options.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_connection_options.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_multi_query_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_multi_query_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_multi_query_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_multi_query_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_poll.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_poll.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_poll.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_poll.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_calc_found_rows.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_calc_found_rows.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_calc_found_rows.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_calc_found_rows.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_prepare.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_prepare.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_prepare.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_prepare.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_transactions.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_transactions.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_sql_transactions.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_sql_transactions.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_use_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_use_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_limits_use_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_limits_use_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_manual_failover_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_manual_failover_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_manual_failover_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_manual_failover_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_manual_failover_unknown.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_manual_failover_unknown.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_manual_failover_unknown.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_manual_failover_unknown.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write_round_robin.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write_round_robin.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_on_write_round_robin.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_on_write_round_robin.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_master_unreachable_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_master_unreachable_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_match_wild.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_match_wild.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_match_wild.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_match_wild.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_rr_nf.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_rr_nf.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_no_slaves_rr_nf.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_no_slaves_rr_nf.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_master_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_master_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_query.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_query.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_query.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_query.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_query_no_ms.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_query_no_ms.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_multi_query_no_ms.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_multi_query_no_ms.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_no_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_no_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_autocommit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_autocommit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_begin_trx.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_begin_trx.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pdo_begin_trx.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pdo_begin_trx.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_phpinfo.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_phpinfo.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_phpinfo.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_phpinfo.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_once2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_once2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_once2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_once2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_slave_err.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_slave_err.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_user_multi_slave_err.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_user_multi_slave_err.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_list_length_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_list_length_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_list_length_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_list_length_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_list_length_error2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_list_length_error2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_list_length_error2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_list_length_error2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_master_fail_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_master_fail_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_master_fail_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_master_fail_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_range.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_range.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_random_weight_range.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_random_weight_range.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_slave_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_slave_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_slave_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_slave_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_slave_removed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_slave_removed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_ro_user_multi_slave_removed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_ro_user_multi_slave_removed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight_loop.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight_loop.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_round_robin_weight_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_round_robin_weight_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_master_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_master_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_rr_user_multi_no_slave_non_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_rr_user_multi_no_slave_non_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_unknown_policy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_unknown_policy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_unknown_policy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_unknown_policy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_complex.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_complex.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_complex.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_complex.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_function.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_function.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_function.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_function.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_multi_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_multi_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_multi_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_multi_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_multi_slaves.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_multi_slaves.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_big_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_big_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_big_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_big_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_bogus_list.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_bogus_list.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_bogus_list.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_bogus_list.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_negative_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_negative_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_negative_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_negative_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_slave_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_slave_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_slave_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_slave_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_void.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_void.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_return_void.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_return_void.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_multi_trx_stickiness.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_multi_trx_stickiness.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_no_callback.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_no_callback.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_no_callback.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_no_callback.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_return_void.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_return_void.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_return_void.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_return_void.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_unknown_function.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_unknown_function.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_unknown_function.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_unknown_function.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_unknown_server.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_unknown_server.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_pick_user_unknown_server.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_pick_user_unknown_server.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ping.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ping.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ping.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ping.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_prepare_switch.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_prepare_switch.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_prepare_switch.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_prepare_switch.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_prepared_statements.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_prepared_statements.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_prepared_statements.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_prepared_statements.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_proto_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_proto_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_proto_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_proto_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ps_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ps_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_ps_commit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_ps_commit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_slave_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_slave_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_qc_failed_slave_failover.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_qc_failed_slave_failover.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_query_is_select.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_query_is_select.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_query_is_select.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_query_is_select.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_query_is_select_rw_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_query_is_select_rw_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_query_is_select_rw_disabled.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_query_is_select_rw_disabled.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_random_once_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_random_once_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_random_once_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_random_once_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_random_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_random_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_random_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_random_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_real_query.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_real_query.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_real_query.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_real_query.phpt)
|
[-]
[+]
|
Added |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_reflection_extension.phpt
^
|
@@ -0,0 +1,86 @@
+--TEST--
+ReflectionExtension basics to check API
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+if (version_compare(PHP_VERSION, '5.3.99', "<")) {
+ die("SKIP Test expects PHP 5.4 only functions");
+}
+?>
+--FILE--
+<?php
+ $r = new ReflectionExtension("mysqlnd_ms");
+
+ printf("Name: %s\n", $r->name);
+
+ printf("Version: %s\n", $r->getVersion());
+ if ($r->getVersion() != MYSQLND_MS_VERSION) {
+ printf("[001] Expecting version '%s' got '%s'\n", MYSQLND_MS_VERSION, $r->getVersion());
+ }
+
+ $classes = $r->getClasses();
+ if (!empty($classes)) {
+ printf("[002] Expecting no class\n");
+ asort($classes);
+ var_dump($classes);
+ }
+
+ $expected = array(
+ 'json' => true,
+ 'standard' => true,
+ 'mysqlnd' => true,
+ 'mysqlnd_qc'=> true,
+ );
+
+ $dependencies = $r->getDependencies();
+ asort($dependencies);
+ printf("Dependencies:\n");
+ foreach ($dependencies as $what => $how) {
+ printf(" %s - %s, ", $what, $how);
+ if (isset($expected[$what])) {
+ unset($expected[$what]);
+ } else {
+ printf("Unexpected extension dependency with %s - %s\n", $what, $how);
+ }
+ }
+ if (!empty($expected)) {
+ printf("Dumping list of missing extension dependencies\n");
+ var_dump($expected);
+ }
+ printf("\n");
+
+ $ignore = array();
+ if (version_compare(PHP_VERSION, '5.3.99', ">")) {
+ $ignore['mysqlnd_ms_set_qos'] = true;
+ $ignore['mysqlnd_ms_get_last_gtid'] = true;
+ }
+
+ $functions = $r->getFunctions();
+ asort($functions);
+ printf("Functions:\n");
+ foreach ($functions as $func) {
+ if (isset($ignore[$func->name])) {
+ unset($ignore[$func->name]);
+ } else {
+ printf(" %s\n", $func->name);
+ }
+ }
+ if (!empty($ignore)) {
+ printf("Dumping version dependent and missing functions\n");
+ var_dump($ignore);
+ }
+
+
+ print "done!";
+?>
+--EXPECTF--
+Name: mysqlnd_ms
+Version: 1.5.2
+Dependencies:
+%s
+Functions:
+ mysqlnd_ms_get_last_used_connection
+ mysqlnd_ms_get_stats
+ mysqlnd_ms_match_wild
+ mysqlnd_ms_query_is_select
+done!
\ No newline at end of file
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_reflection_functions.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_reflection_functions.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_reflection_functions.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_reflection_functions.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_rr_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_rr_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_rr_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_rr_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db_fail.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db_fail.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_select_db_kill.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_select_db_kill.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change_back.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change_back.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change_back.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change_back.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change_later.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change_later.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_charset_real_escape_change_later.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_charset_real_escape_change_later.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_info.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_info.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_version.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_version.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_server_version.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_server_version.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age_killed.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age_killed.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age_no_value.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age_no_value.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_age_no_value.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_age_no_value.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_cache.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_cache.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_cache.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_cache.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_lost_connection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_lost_connection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_lost_connection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_lost_connection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_error2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_error2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_error2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_error2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_parsing.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_parsing.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_parsing.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_parsing.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_parsing2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_parsing2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_gtid_sql_parsing2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_gtid_sql_parsing2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_params.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_params.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_params.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_params.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_on.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_on.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_set_qos_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_set_qos_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_connect_flags.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_connect_flags.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_connect_flags.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_connect_flags.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_connect_flags_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_connect_flags_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_connect_flags_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_connect_flags_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_db_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_db_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_db_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_db_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_default_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_default_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_default_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_default_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_force_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_force_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_force_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_force_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_inherit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_inherit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_inherit.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_inherit.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_types.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_types.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_host_credentials_types.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_host_credentials_types.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_aus.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_aus.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_aus.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_aus.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_false.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_false.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_false.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_false.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_zero.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_zero.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_false_zero.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_false_zero.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_true.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_true.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_bool_true.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_bool_true.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_faulty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_faulty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_faulty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_faulty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_json_empty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_json_empty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_json_empty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_json_empty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_json_stub.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_json_stub.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_ini_file_json_stub.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_ini_file_json_stub.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_no_host.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_no_host.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_no_host.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_no_host.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_no_json.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_no_json.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_no_json.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_no_json.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_password_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_password_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_password_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_password_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_aus.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_aus.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_aus.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_aus.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_false.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_false.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_false.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_false.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_off.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_off.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_zero.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_zero.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_false_zero.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_false_zero.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_true_empty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_true_empty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_plugin_conf_true_empty.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_plugin_conf_true_empty.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_invalid2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_invalid2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_invalid2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_invalid2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_wrong_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_wrong_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_wrong_master.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_wrong_master.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_wrong_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_wrong_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_port_wrong_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_port_wrong_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_server_charset_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_server_charset_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_server_charset_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_server_charset_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_socket_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_socket_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_socket_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_socket_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_unknown_section.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_unknown_section.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_unknown_section.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_unknown_section.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_unknown_section_force_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_unknown_section_force_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_unknown_section_force_config.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_unknown_section_force_config.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_user_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_user_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_settings_user_invalid.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_settings_user_invalid.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_simple.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_simple.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_simple.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_simple.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_slave_unreachable_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_slave_unreachable_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_sql_hints.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_sql_hints.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_sql_hints.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_sql_hints.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_sql_hints_space.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_sql_hints_space.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_sql_hints_space.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_sql_hints_space.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_stat.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_stat.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_stat.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_stat.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_assorted_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_assorted_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_assorted_slave.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_assorted_slave.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_basics.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_basics.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_db_detection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_db_detection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_db_detection.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_db_detection.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_dual.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_dual.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_dual.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_dual.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_evaluation_order.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_evaluation_order.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_evaluation_order.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_evaluation_order.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_evaluation_order_qualified_first.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_evaluation_order_qualified_first.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_evaluation_order_qualified_first.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_evaluation_order_qualified_first.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_no_match_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_no_match_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_ref_slave_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_ref_slave_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_master_ref_slave_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_master_ref_slave_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser1.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser1.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser1.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser1.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser10.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser10.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser10.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser10.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser11.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser11.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser11.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser11.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser12.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser12.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser12.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser12.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser13.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser13.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser13.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser13.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser14.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser14.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser14.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser14.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser15.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser15.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser15.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser15.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser16.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser16.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser16.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser16.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser17.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser17.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser17.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser17.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser18.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser18.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser18.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser18.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser19.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser19.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser19.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser19.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser20.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser20.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser20.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser20.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser21.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser21.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser21.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser21.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser22.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser22.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser22.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser22.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser23.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser23.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser23.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser23.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser24.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser24.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser24.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser24.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser25.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser25.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser25.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser25.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser26.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser26.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser26.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser26.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser27.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser27.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser27.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser27.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser28.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser28.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser28.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser28.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser29.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser29.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser29.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser29.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser5.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser5.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser5.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser5.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser6.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser6.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser6.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser6.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser7.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser7.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser7.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser7.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser8.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser8.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser8.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser8.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser9.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser9.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_parser9.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_parser9.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_pattern_cont_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_pattern_cont_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_master_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_master_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_numeric.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_numeric.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_numeric.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_numeric.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_slave_empty_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_slave_empty_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_twice.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_twice.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_twice2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_twice2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_twice2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_twice2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_rule_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_rule_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_no_match_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_no_match_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_ref_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_ref_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_ref_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_ref_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_slave_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_slave_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_sql_hint.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_sql_hint.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_sql_hint.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_sql_hint.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_master_in_rule.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_master_in_rule.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_master_in_rule.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_master_in_rule.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_master_in_rule_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_master_in_rule_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_master_in_rule_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_master_in_rule_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_slave_in_rule.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_slave_in_rule.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_slave_in_rule.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_slave_in_rule.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_slave_in_rule_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_slave_in_rule_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_undefined_slave_in_rule_lazy.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_undefined_slave_in_rule_lazy.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_unknown_parameter3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_unknown_parameter3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_write_non_unique.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_write_non_unique.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_table_write_non_unique.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_table_write_non_unique.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_thread_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_thread_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_thread_id.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_thread_id.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_tmp_double_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_tmp_double_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_tmp_double_error.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_tmp_double_error.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_random_once.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_random_once.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_master_user.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_master_user.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_no_slave_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_begin_name_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_begin_name_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_begin_name_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_begin_name_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_mor_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_ro_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_ro_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_on_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_on_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_slave_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_slave_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_slave_failover_random.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_slave_failover_random.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_slave_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_slave_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_trx_stickiness_slave_failover_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_trx_stickiness_slave_failover_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter3.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter3.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter4.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter4.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter5.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter5.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter5.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter5.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter6.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter6.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter6.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter6.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_r.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_r.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_ro.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_ro.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_unknown_filter_cont_rr.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_unknown_filter_cont_rr.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_use_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_use_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_use_result.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_use_result.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_use_result2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_use_result2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_use_result2.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_use_result2.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_warning_count.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_warning_count.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/mysqlnd_ms_warning_count.phpt
^
|
(renamed from mysqlnd_ms-1.5.1/tests/mysqlnd_ms_warning_count.phpt)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/skipif.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/skipif.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/skipif.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/skipif.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/util.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/util.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/mysqlnd_ms-1.5.2/tests/util.inc
^
|
(renamed from mysqlnd_ms-1.5.1/tests/util.inc)
|
[-]
[+]
|
Changed |
mysqlnd_ms-1.5.2.tgz/package.xml
^
|
@@ -22,10 +22,10 @@
<email>johannes@php.net</email>
<active>yes</active>
</lead>
- <date>2013-06-19</date>
- <time>10:29:43</time>
+ <date>2013-06-21</date>
+ <time>08:30:38</time>
<version>
- <release>1.5.1</release>
+ <release>1.5.2</release>
<api>1.5.0</api>
</version>
<stability>
@@ -34,7 +34,7 @@
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
-GA release
+Fix hardcoded version number
</notes>
<contents>
<dir name="/">
@@ -110,7 +110,7 @@
<file md5sum="0670f4a22e62fbe77622168773ef5ba3" name="tests/mysqlnd_ms_commit.phpt" role="test" />
<file md5sum="9f1bf7d912459dbfe6e1278f64f891a3" name="tests/mysqlnd_ms_config_access.phpt" role="test" />
<file md5sum="3aee0f0d4e95b55719229858e33133ea" name="tests/mysqlnd_ms_connection_references.phpt" role="test" />
- <file md5sum="b01207378bbde2c9a0797b6899daa5af" name="tests/mysqlnd_ms_constants.phpt" role="test" />
+ <file md5sum="bda394e7965f02b3b7598dc73584709a" name="tests/mysqlnd_ms_constants.phpt" role="test" />
<file md5sum="db036b24e64c931ad06473cd75b44b69" name="tests/mysqlnd_ms_disable_rw_rr.phpt" role="test" />
<file md5sum="59607b9d26e1652ca1c01d336807af15" name="tests/mysqlnd_ms_empty_slave_list.phpt" role="test" />
<file md5sum="4a514a3559b7246f43a2017bf38cc011" name="tests/mysqlnd_ms_enable_rw_rr_failover.phpt" role="test" />
@@ -369,7 +369,7 @@
<file md5sum="03ad40fdfd1df78e9739d78caaf21745" name="tests/mysqlnd_ms_random_unknown_parameter.phpt" role="test" />
<file md5sum="b3b6c4b7c762904b0686a0dc7501bc63" name="tests/mysqlnd_ms_real_escape.phpt" role="test" />
<file md5sum="20d12dc91322d728e894155ff424877c" name="tests/mysqlnd_ms_real_query.phpt" role="test" />
- <file md5sum="96266b819af06991d76f6e90f3fa9585" name="tests/mysqlnd_ms_reflection_extension.phpt" role="test" />
+ <file md5sum="826d547cc256e16c83b5d40859f75326" name="tests/mysqlnd_ms_reflection_extension.phpt" role="test" />
<file md5sum="8634712500f06306ffb9df6ef25b9a66" name="tests/mysqlnd_ms_reflection_functions.phpt" role="test" />
<file md5sum="afb5fdc5eba8b915d5809dc7cacecc9c" name="tests/mysqlnd_ms_rr_unknown_parameter.phpt" role="test" />
<file md5sum="c31b11b6d8a396dda91ff4075c3f736a" name="tests/mysqlnd_ms_select_db_fail.phpt" role="test" />
@@ -544,7 +544,7 @@
<file md5sum="a097f9b2a01d3a5f7dbbc6c923496c05" name="tests/util.inc" role="test" />
<file md5sum="c0e270bf7040edfde88475c68d0421e8" name="tests/config.inc" role="test" />
<file md5sum="2e026b589721e435f4a52caaf5250b9a" name="tests/connect.inc" role="test" />
- <file md5sum="33057b5f1542465f8a5d210b3afafe40" name="CHANGES" role="src" />
+ <file md5sum="052a15e73851cc6308f96316af377709" name="CHANGES" role="src" />
<file md5sum="3bd74bb0fe2edf3e142e13282fe6f9ba" name="config.m4" role="src" />
<file md5sum="ed2d29429a1b26f68f94fb6a9f7e3f1c" name="config.w32" role="src" />
<file md5sum="a7558b9d7b44323ebeecf42e0c190822" name="CREDITS" role="src" />
@@ -566,7 +566,7 @@
<file md5sum="e007cc580c1ba59e0ef0fde697f8a327" name="mysqlnd_ms_filter_table_partition.h" role="src" />
<file md5sum="f50ef293c42587abaab692e6f124a1cd" name="mysqlnd_ms_filter_user.c" role="src" />
<file md5sum="7fccc5e3ea7a46b36beb43a7a9a468b7" name="mysqlnd_ms_filter_user.h" role="src" />
- <file md5sum="0b35848211513f0dd9c27d2d36c16999" name="mysqlnd_ms.h" role="src" />
+ <file md5sum="b4af72891c5d0d4202e7c208122b9c0f" name="mysqlnd_ms.h" role="src" />
<file md5sum="d18d8774732d564198d6ff1aeba4390f" name="mysqlnd_ms_lb_weights.c" role="src" />
<file md5sum="c316ad8d5ce283444ff75b7c96ef3f34" name="mysqlnd_ms_lb_weights.h" role="src" />
<file md5sum="ff1fe193768d8b1af4d70a04587d726d" name="mysqlnd_ms_switch.c" role="src" />
@@ -598,6 +598,21 @@
<changelog>
<release>
<version>
+ <release>1.5.2</release>
+ <api>1.5.0</api>
+ </version>
+ <stability>
+ <release>GA</release>
+ <api>GA</api>
+ </stability>
+ <date>2013-06-21</date>
+ <license uri="http://www.php.net/license">PHP License</license>
+ <notes>
+Fix hardcoded version number
+ </notes>
+ </release>
+ <release>
+ <version>
<release>1.5.1</release>
<api>1.5.0</api>
</version>
|