fix the escape sequence.

pull/17/head
John Shahid 2013-10-18 13:17:17 -04:00
parent a1444b57b4
commit e4b60654a7
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ int main(int argc, char **argv) {
q = parse_query("select value from cpu.idle where value > 90 and (time > now() - 1d or value > 80) and time < now() - 1w last 10;");
close_query(&q);
q = parse_query("select email from users.events where email ~= /gmail\\.com/i and time>now()-2d;");
q = parse_query("select email from users.events where email ~= /gmail\\\\.com/i and time>now()-2d;");
close_query(&q);
return 0;