Skip to content

Commit

Permalink
fix #1799: update INFLUXQL.md for regex changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnorton committed Mar 3, 2015
1 parent 9d6d36f commit 09e1710
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion influxql/INFLUXQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ time_lit = "2006-01-02 15:04:05.999999" | "2006-01-02"
bool_lit = TRUE | FALSE .
```

### Regular Expressions

```
regex_lit = "/" { unicode_char } "/" .
```

## Queries

A query is composed of one or more statements separated by a semicolon.
Expand Down Expand Up @@ -602,7 +608,7 @@ binary_op = "+" | "-" | "*" | "/" | "AND" | "OR" | "=" | "!=" | "<" |
expr = unary_expr { binary_op unary_expr } .
unary_expr = "(" expr ")" | var_ref | time_lit | string_lit |
number_lit | bool_lit | duration_lit .
number_lit | bool_lit | duration_lit | regex_lit .
```

## Other
Expand Down

0 comments on commit 09e1710

Please sign in to comment.