Alyx

Results 453 comments of Alyx

> Would you happen to be able to provide any? Not really, in my opinion we can do the change, and see where tests break :)

@evanrittenhouse If you have docker installed (recommended), you can run `yarn start-mysql` to have a mysql instance ready to go :)

Checking the contents returned by `sequelize.queryRaw` inside `bulkInsert`: without `returning: true`: - postgres: `[ [], 2 ]` - mssql: `[ [], 2 ]` - db2: `[ [], 0 ]` -...

Unfortunately just like with https://github.com/sequelize/sequelize/issues/14329, I've ran a few different tests around 100k times each, and I'm completely unable to reproduce this issue :( Each enum in postgres is its...

That would make sense as the list of OIDs would not match the database anymore I guess that could also be true if the user attempts to connect to multiple...

Note for when someone starts working on this task: there are some information about this in #17256

`sync` cannot delete anything unless `force` is specified, in which case it deletes everything

To explain what I meant in my previous comment: removing constraints is a destructive operation, and the base `sync` does not do that. I see that in your initial comment...

Fixed by https://github.com/sequelize/sequelize/pull/15685

That sounds interesting! Would also integrate nicely with features like https://github.com/sequelize/sequelize/issues/14914