Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/QA_4_5' into QA_4_5
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Sep 3, 2015
2 parents 99c0ace + ae92e02 commit 0123628
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/dbi/DBIDummy.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
array(
'query' => 'SELECT @@collation_server',
'result' => array(
array('collation_server', 'utf8_general_ci'),
array('utf8_general_ci'),
)
),
array(
Expand Down Expand Up @@ -425,9 +425,9 @@
),
array(
'query' => 'SELECT @@collation_database',
'columns' => array('variable_name', 'variable_value'),
'columns' => array('@@collation_database'),
'result' => array(
array('foo', 'bar'),
array('bar'),
)
),
array(
Expand Down Expand Up @@ -611,7 +611,7 @@
),
array(
'query' => 'SELECT @@default_authentication_plugin',
'result' => array(array('Variable_name' => 'mysql_native_password'))
'result' => array(array('@@default_authentication_plugin' => 'mysql_native_password'))
),
array(
'query' => "SELECT TABLE_NAME FROM information_schema.VIEWS WHERE "
Expand Down

0 comments on commit 0123628

Please sign in to comment.