parent
d933348e8d
commit
305e77c23a
|
@ -1,4 +1,4 @@
|
||||||
# 3.0.2 / 2018-06-21
|
# 3.0.3 / 2018-06-21
|
||||||
* 修复filter解析空条件异常的bug;
|
* 修复filter解析空条件异常的bug;
|
||||||
* table方法支持 AS 别名。
|
* table方法支持 AS 别名。
|
||||||
|
|
||||||
|
|
|
@ -154,7 +154,7 @@ const parser = {
|
||||||
|
|
||||||
filter(opt) {
|
filter(opt) {
|
||||||
let sql = ''
|
let sql = ''
|
||||||
if (!sql) {
|
if (!opt) {
|
||||||
return ' '
|
return ' '
|
||||||
}
|
}
|
||||||
if (typeof opt === 'string') {
|
if (typeof opt === 'string') {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mysqli",
|
"name": "mysqli",
|
||||||
"version": "3.0.2",
|
"version": "3.0.3",
|
||||||
"description": "MySQL tool",
|
"description": "MySQL tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in New Issue