mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-01 03:14:02 +03:00
bfd5542f75
* Moved query_X_test.go from /drivers to /libsq * Refactor: introduced libsq.QueryContext type
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package libsq_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/neilotoole/sq/testh/sakila"
|
|
|
|
"github.com/neilotoole/sq/drivers/mysql"
|
|
|
|
"github.com/neilotoole/sq/libsq/source"
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
//nolint:exhaustive
|
|
func TestQuery_unique(t *testing.T) {
|
|
testCases := []queryTestCase{
|
|
{
|
|
name: "unique/single-col",
|
|
in: `@sakila | .actor | .first_name | unique`,
|
|
wantSQL: `SELECT DISTINCT "first_name" FROM "actor"`,
|
|
override: map[source.Type]string{mysql.Type: "SELECT DISTINCT `first_name` FROM `actor`"},
|
|
wantRecs: 128,
|
|
},
|
|
{
|
|
name: "unique/no-col",
|
|
in: `@sakila | .actor | unique`,
|
|
wantSQL: `SELECT DISTINCT * FROM "actor"`,
|
|
override: map[source.Type]string{mysql.Type: "SELECT DISTINCT * FROM `actor`"},
|
|
wantRecs: sakila.TblActorCount,
|
|
},
|
|
{
|
|
name: "unique/no-col",
|
|
in: `@sakila | .actor | unique`,
|
|
wantSQL: `SELECT DISTINCT * FROM "actor"`,
|
|
override: map[source.Type]string{mysql.Type: "SELECT DISTINCT * FROM `actor`"},
|
|
wantRecs: sakila.TblActorCount,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
execQueryTestCase(t, tc)
|
|
})
|
|
}
|
|
}
|