Projects STRLCPY dolt Commits 8e7df34d
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    go/libraries/doltcore/sqle/sqlinsert_test.go
    skipped 315 lines
    316 316   SelectQuery: "select id, first_name, last_name, is_married, age, rating from people where id = 7 ORDER BY id",
    317 317   ExpectedRows: ToSqlRows(
    318 318   CompressSchema(SubsetSchema(PeopleTestSchema, "id", "first_name", "last_name", "is_married", "age", "rating")),
    319  - NewResultSetRow(types.Int(7), types.String("Maggie"), types.String("Simpson"), types.Int(0), types.Int(1), types.Float(5.1)),
     319 + NewResultSetRow(types.Int(7), types.String("Maggie"), types.String("Simpson"), types.Int(1), types.Int(1), types.Float(5.1)),
    320 320   ),
    321 321   ExpectedSchema: CompressSchema(SubsetSchema(PeopleTestSchema, "id", "first_name", "last_name", "is_married", "age", "rating")),
    322 322   },
    skipped 133 lines
Please wait...
Page is in error, reload to recover