Skip to content

Commit

Permalink
feat: add RLIKE operators
Browse files Browse the repository at this point in the history
  • Loading branch information
Kav91 committed Jul 9, 2020
1 parent c58c090 commit e3ee16f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nerdlets/event-stream/lib/metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export const stringOptions = [
{ key: 'e', text: '=', value: '=' },
{ key: 'ne', text: '!=', value: '!=' },
{ key: 'l', text: 'LIKE', value: 'LIKE' },
{ key: 'rl', text: 'RLIKE', value: 'RLIKE' },
{ key: 'nl', text: 'NOT LIKE', value: 'NOT LIKE' },
{ key: 'nrl', text: 'NOT RLIKE', value: 'NOT RLIKE' },
{ key: 'in', text: 'IS NULL', value: 'IS NULL' },
{ key: 'inn', text: 'IS NOT NULL', value: 'IS NOT NULL' },
];
Expand Down

0 comments on commit e3ee16f

Please sign in to comment.