Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Oct 7, 2023
1 parent 82baa64 commit b4fef5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,12 @@ func (s *DatabendTestSuite) TestExec() {
}{
{
fmt.Sprintf("INSERT INTO %s (i64) VALUES (?)", s.table),
fmt.Sprintf("SELECT i64 FROM %s WHERE i64=?", s.table),
"",
[]interface{}{int64(1)},
},
{
fmt.Sprintf("INSERT INTO %s (i64, u64) VALUES (?, ?)", s.table),
fmt.Sprintf("SELECT i64, u64 FROM %s WHERE i64=? AND u64=?", s.table),
"",
[]interface{}{int64(2), uint64(12)},
},
{
Expand Down

0 comments on commit b4fef5e

Please sign in to comment.