Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit 7f4b91d

Browse files
authored
Merge pull request #74 from doitintl/issue-73
Add support for selecting multiple values using SQL IN
2 parents 2088739 + 864ff6f commit 7f4b91d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

dist/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53568,7 +53568,7 @@ function (_super) {
5356853568
return this.$q.when([]);
5356953569

5357053570
case "op":
53571-
return this.$q.when(this.uiSegmentSrv.newOperators(["=", "!=", "<", "<=", ">", ">=", "LIKE", "NOT LIKE"]));
53571+
return this.$q.when(this.uiSegmentSrv.newOperators(["=", "!=", "<", "<=", ">", ">=", "IN", "LIKE", "NOT LIKE"]));
5357253572

5357353573
default:
5357453574
return this.$q.when([]);

dist/module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/query_ctrl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,7 @@ export class BigQueryQueryCtrl extends QueryCtrl {
652652
"<=",
653653
">",
654654
">=",
655+
"IN",
655656
"LIKE",
656657
"NOT LIKE"
657658
])

0 commit comments

Comments
 (0)