Augusts Bautra
Augusts Bautra
I could use comments also. Rails5 supports adding comments about fields in the DB itself, and annotate will show those. https://bigbinary.com/blog/rails-5-supports-adding-comments-migrations Unfortunately, ad-hoc comments for existing fields are not supported...
Who can say about all. MySQL and PSQL definitely have the same behavior. Which ones do we seek to support?
@luisdavim It was the case for MySQL at the moment of writing back in 2020 and I doubt anything's changed. Here's the [relevant part from MySQL v8 docs](https://dev.mysql.com/doc/refman/8.0/en/mysql-indexes.html#:~:text=If%20there%20is%20a%20choice,optimizer%20to%20look%20up%20rows.). Are you...
Sorry for taking so long to get back to you on this topic, @plentz. I believe the order of index is as relevant as ever and will probably never be...
To be clear, I'm arguing that an index of order `[:poly_type, :poly_id]` is better than `[:poly_id, :poly_type]` because it supports an efficient `WHERE poly_type = 'MyModel'`, which is a common...
I am getting this also when trying to run FF8. GeDoSaTo.dll v0.21.2310, win7.
We're calling `Dentaku::Calculator.new.solve(a: "sqrt()")`
@leoplct Regex can be obtuse, but it's powerful and likely not going away. The problem with your particular regex is in the question mark. For some reason `Regexp.new` drops the...
There should be an option to stub globally by disabling `WebMock.reset!` conditionally. That way the preferred "each example in a clean state with its own setup" approach is the default,...
Now that I think about it, the functionality could work like this: 1. Allow stubs to have optional metadata (maybe they already support something like that), 2. Have a before(:all)...