Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Sep 25, 2015
2 parents 7aa504e + 299d2e8 commit bab0588
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libraries/dbi/DBIDummy.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@
. "`CREATE_OPTIONS` AS `Create_options`, "
. "`TABLE_COMMENT` AS `Comment` "
. "FROM `information_schema`.`TABLES` t "
. "WHERE BINARY `TABLE_SCHEMA` IN ('db') "
. "WHERE `TABLE_SCHEMA` IN ('db') "
. "AND t.`TABLE_NAME` = 'table' ORDER BY Name ASC",
'result' => array()
),
Expand All @@ -640,6 +640,10 @@
array(
'query' => "SELECT @@have_partitioning;",
'result' => array()
),
array(
'query' => "SELECT @@lower_case_table_names",
'result' => array()
)
);
/**
Expand Down

0 comments on commit bab0588

Please sign in to comment.