summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/idiorm.php b/idiorm.php
index 48f5ccc..4d454cb 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -903,6 +903,9 @@
* character specified in the config (or autodetected).
*/
protected function _quote_identifier_part($part) {
+ if ($part === '*') {
+ return $part;
+ }
$quote_character = self::$_config['identifier_quote_character'];
return $quote_character . $part . $quote_character;
}