Skip to content

Commit

Permalink
built-in/pow add test in parser
Browse files Browse the repository at this point in the history
  • Loading branch information
sllt committed Dec 21, 2015
1 parent 33d71ad commit 186f0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ func (s *testParserSuite) TestBuiltin(c *C) {
table := []testCase{
// For buildin functions
{"SELECT DAYOFMONTH('2007-02-03');", true},
{"SELECT POW(1,2)", true},
{"SELECT POW(1, 2)", true},
{"SELECT POW(1, 0.5)", true},
{"SELECT POW(1, -1)", true},
{"SELECT POW(-1, 1)", true},
Expand Down

0 comments on commit 186f0cb

Please sign in to comment.