diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-06 20:27:01 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-06 20:27:01 +0200 |
commit | cd50592b26a26a2e55fc193529a2463d9a465378 (patch) | |
tree | 2a3f842171809bad6fb3e7c13796da6c7cd5f036 /system/database/drivers/odbc/odbc_driver.php | |
parent | 956631d2b8f0f1173f55134b8465b41d2018edfa (diff) |
Fix issue #1257
Diffstat (limited to 'system/database/drivers/odbc/odbc_driver.php')
-rw-r--r-- | system/database/drivers/odbc/odbc_driver.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php index fbf6a4cb1..c1f6ccfe2 100644 --- a/system/database/drivers/odbc/odbc_driver.php +++ b/system/database/drivers/odbc/odbc_driver.php @@ -289,22 +289,6 @@ class CI_DB_odbc_driver extends CI_DB { // -------------------------------------------------------------------- /** - * From Tables - * - * This function implicitly groups FROM tables so there is no confusion - * about operator precedence in harmony with SQL standards - * - * @param array - * @return string - */ - protected function _from_tables($tables) - { - return is_array($tables) ? implode(', ', $tables) : $tables; - } - - // -------------------------------------------------------------------- - - /** * Truncate statement * * Generates a platform-specific truncate string from the supplied data |