=== modified file 'includes/database/select.inc'
--- includes/database/select.inc	2009-12-09 17:23:50 +0000
+++ includes/database/select.inc	2009-12-10 05:47:32 +0000
@@ -1355,6 +1355,10 @@ class SelectQuery extends Query implemen
     }
 
     // RANGE
+    // There is no universal SQL standard for handling range or limit clauses.
+    // Fortunately, all core-supported databases use the same range syntax.
+    // Databases that need a different syntax can override this method and
+    // do whatever alternate logic they need to.
     if (!empty($this->range)) {
       $query .= "\nLIMIT " . $this->range['length'] . " OFFSET " . $this->range['start'];
     }

