Skip to content

Commit

Permalink
UTF-8 Multibyte (utf8mb4) support
Browse files Browse the repository at this point in the history
Modify the fake JDatabaseDriverNosql driver used in unit tests to conform to the new JDatabaseDriver base class
  • Loading branch information
Nicholas K. Dionysopoulos committed Jun 14, 2015
1 parent 0317281 commit eab66ac
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/unit/suites/libraries/joomla/database/stubs/nosqldriver.php
Expand Up @@ -199,6 +199,17 @@ public function getCollation()
return false;
}

/**
* Method to get the database connection collation, as reported by the driver. If the connector doesn't support
* reporting this value please return an empty string.
*
* @return string
*/
public function getConnectionCollation()
{
return false;
}

/**
* Get the number of returned rows for the previous executed SQL statement.
*
Expand Down

0 comments on commit eab66ac

Please sign in to comment.