summaryrefslogtreecommitdiff
path: root/includes/database/database.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/database/database.inc')
-rw-r--r--includes/database/database.inc17
1 files changed, 0 insertions, 17 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc
index 45f4d748c..7ac323a37 100644
--- a/includes/database/database.inc
+++ b/includes/database/database.inc
@@ -2022,23 +2022,6 @@ function update_sql($sql) {
}
/**
- * Generate placeholders for an array of query arguments of a single type.
- *
- * Given a Schema API field type, return correct %-placeholders to
- * embed in a query
- *
- * @todo This may be possible to remove in favor of db_select().
- * @param $arguments
- * An array with at least one element.
- * @param $type
- * The Schema API type of a field (e.g. 'int', 'text', or 'varchar').
- */
-function db_placeholders($arguments, $type = 'int') {
- $placeholder = db_type_placeholder($type);
- return implode(',', array_fill(0, count($arguments), $placeholder));
-}
-
-/**
* Wraps the given table.field entry with a DISTINCT(). The wrapper is added to
* the SELECT list entry of the given query and the resulting query is returned.
* This function only applies the wrapper if a DISTINCT doesn't already exist in