From 732b57d10d0b344510e35d6223f36eecf62c0821 Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Tue, 30 Nov 2010 07:16:24 +0000
Subject: [PATCH] #984896 by Crell: Remove wrong references to 'query ID' in
 DBTNG docs.

---
 includes/database/database.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/includes/database/database.inc b/includes/database/database.inc
index c85e35a10cc0..94517f002286 100644
--- a/includes/database/database.inc
+++ b/includes/database/database.inc
@@ -669,7 +669,7 @@ public function getDriverClass($class, array $files = array(), $use_autoload = F
   }
 
   /**
-   * Prepares and returns a SELECT query object with the specified ID.
+   * Prepares and returns a SELECT query object.
    *
    * @param $table
    *   The base table for this query, that is, the first table in the FROM
@@ -693,7 +693,7 @@ public function select($table, $alias = NULL, array $options = array()) {
   }
 
   /**
-   * Prepares and returns an INSERT query object with the specified ID.
+   * Prepares and returns an INSERT query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -709,7 +709,7 @@ public function insert($table, array $options = array()) {
   }
 
   /**
-   * Prepares and returns a MERGE query object with the specified ID.
+   * Prepares and returns a MERGE query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -726,7 +726,7 @@ public function merge($table, array $options = array()) {
 
 
   /**
-   * Prepares and returns an UPDATE query object with the specified ID.
+   * Prepares and returns an UPDATE query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -742,7 +742,7 @@ public function update($table, array $options = array()) {
   }
 
   /**
-   * Prepares and returns a DELETE query object with the specified ID.
+   * Prepares and returns a DELETE query object.
    *
    * @param $options
    *   An array of options on the query.
-- 
GitLab