diff options
author | Andrey Andreev <narf@devilix.net> | 2016-02-04 23:58:20 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-02-04 23:58:20 +0100 |
commit | 7a4c44c3df834446151f4e8730aac94cee5b665a (patch) | |
tree | 1a4dcec2a6a36a4f2d8e7ad3749381bd7283a11d | |
parent | e54c461d77ffce9f10999ca51bb2e3932304639b (diff) | |
parent | b864ece65755e91e28a802824da7e4beebab3a9c (diff) |
Merge pull request #4434 from galdiolo/patch-14
[ci skip] Fix a comment
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index e565f0fd1..1b52bf3b8 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -1731,7 +1731,7 @@ abstract class CI_DB_driver { * the table prefix onto it. Some logic is necessary in order to deal with * column names that include the path. Consider a query like this: * - * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table + * SELECT hostname.database.table.column AS c FROM hostname.database.table * * Or a query with aliasing: * |