mirror of
https://github.com/chaisql/chai.git
synced 2025-10-05 07:36:56 +08:00
use single quotes for text
This commit is contained in:
@@ -32,7 +32,7 @@ func TestParserExpr(t *testing.T) {
|
||||
{"-float64", "-10.0", testutil.DoubleValue(-10), false},
|
||||
|
||||
// strings
|
||||
{"double quoted string", `"10.0"`, testutil.TextValue("10.0"), false},
|
||||
{"double quoted string", `'10.0'`, testutil.TextValue("10.0"), false},
|
||||
{"single quoted string", "'-10.0'", testutil.TextValue("-10.0"), false},
|
||||
|
||||
// byteas
|
||||
|
Reference in New Issue
Block a user