Skip to content

Commit cd41130

Browse files
committed
New version 2.7.1
* `NOT IN` and `NOT STRICT IN` * Way to bind pluggable data transfors
1 parent a83e395 commit cd41130

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## `v2.7.0` (2017-02-08)
2+
3+
* `NOT IN` and `NOT STRICT IN`
4+
* Way to bind pluggable data transfors
5+
6+
17
## `v2.6.0` (2017-01-27)
28

39
* Multiline JSON objects are supported

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jl-sql-api",
33
"description": "SQL stream manipulating for JS",
4-
"version": "2.6.3",
4+
"version": "2.7.1",
55
"keywords": [
66
"sql",
77
"stream"

src/dataSource/DataSourceAnalyzer.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ class DataSourceAnalyzer
7070
throw new SqlLogicError('Invalid argument of read function ' + desc.name);
7171
}
7272

73-
return this.createRead(desc.name, expression.source.fragments, options);
73+
const p = expression.source ? expression.source.fragments : null;
74+
75+
return this.createRead(desc.name, p, options);
7476

7577
} else if (desc.isTransform()) {
7678
if (!expression.source) {

0 commit comments

Comments
 (0)