diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-25 02:03:55 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-25 02:03:55 +0000 |
commit | 47949ad142a6c7637d56c3d3d9faeb5db4445059 (patch) | |
tree | 2963cb2e65118da882fd3912bf4506a74f6fdbc0 /includes/database/database.inc | |
parent | 63e8d1e3d322fc15024b50fdabc060333420ed9d (diff) | |
download | brdo-47949ad142a6c7637d56c3d3d9faeb5db4445059.tar.gz brdo-47949ad142a6c7637d56c3d3d9faeb5db4445059.tar.bz2 |
#325895 by chx: Fix queryTemporary, which was missing a required argument.
Diffstat (limited to 'includes/database/database.inc')
-rw-r--r-- | includes/database/database.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index e5fafd16e..7b66f2441 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -631,11 +631,14 @@ abstract class DatabaseConnection extends PDO { * @param $tablename * The name of the temporary table to select into. This name will not be * prefixed as there is no risk of collision. + * @param $options + * An associative array of options to control how the query is run. See + * the documentation for DatabaseConnection::defaultOptions() for details. * @return * A database query result resource, or FALSE if the query was not executed * correctly. */ - abstract function queryTemporary($query, Array $args, $tablename); + abstract function queryTemporary($query, Array $args, $tablename, $options = array()); /** * Returns the type of database driver. |