浏览代码

added keyword

Nicolas Cannasse 17 年之前
父节点
当前提交
0937cefa9d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/neko/db/Manager.hx

+ 1 - 1
std/neko/db/Manager.hx

@@ -325,7 +325,7 @@ class Manager<T : Object> {
 
 
 	function quoteField(f : String) {
 	function quoteField(f : String) {
 		var fsmall = f.toLowerCase();
 		var fsmall = f.toLowerCase();
-		if( fsmall == "read" || fsmall == "desc" || fsmall == "out" || fsmall == "group" || fsmall == "version" )
+		if( fsmall == "read" || fsmall == "desc" || fsmall == "out" || fsmall == "group" || fsmall == "version" || fsmall == "option" )
 			return "`"+f+"`";
 			return "`"+f+"`";
 		return f;
 		return f;
 	}
 	}