Skip to content

Commit

Permalink
fix sql server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoiron committed Oct 16, 2018
1 parent e5b68e6 commit f7dfd2d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions named_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func TestCompileQuery(t *testing.T) {
R: `SELECT @name := "name", ?, ?, ?`,
D: `SELECT @name := "name", $1, $2, $3`,
N: `SELECT @name := "name", :age, :first, :last`,
T: `SELECT @name := "name", @p1, @p2, @p3`,
V: []string{"age", "first", "last"},
},
/* This unicode awareness test sadly fails, because of our byte-wise worldview.
Expand Down

0 comments on commit f7dfd2d

Please sign in to comment.