Fixed test error

This commit is contained in:
Daylon Wilkins
2022-11-23 00:38:29 -08:00
parent 50fd7ee096
commit 8e7df34d77

View File

@@ -316,7 +316,7 @@ var BasicInsertTests = []InsertTest{
SelectQuery: "select id, first_name, last_name, is_married, age, rating from people where id = 7 ORDER BY id",
ExpectedRows: ToSqlRows(
CompressSchema(SubsetSchema(PeopleTestSchema, "id", "first_name", "last_name", "is_married", "age", "rating")),
NewResultSetRow(types.Int(7), types.String("Maggie"), types.String("Simpson"), types.Int(0), types.Int(1), types.Float(5.1)),
NewResultSetRow(types.Int(7), types.String("Maggie"), types.String("Simpson"), types.Int(1), types.Int(1), types.Float(5.1)),
),
ExpectedSchema: CompressSchema(SubsetSchema(PeopleTestSchema, "id", "first_name", "last_name", "is_married", "age", "rating")),
},