Nathaniel Sabanski

Results 124 comments of Nathaniel Sabanski

@dantownsend Any advice on how to handle the default type checks tests in `tests/apps/migrations/auto/integration/test_migrations.py` ? Example failed test: ```python def test_bigint_column(self): self._test_migrations( table_snapshots=[ [self.table(column)] for column in [ BigInt(), BigInt(default=1),...

Very elegant. Thank you! Also I keep bumping up into `ALTER COLUMN TYPE is not supported inside a transaction` https://github.com/cockroachdb/cockroach/issues/49351 Apparently there's work being done on this at Cockroach HQ...

`ALTER COLUMN TYPE` is generally something one wants to avoid in CockroachDB anyway, as it's terrible for performance across a cluster, so perhaps disabling those for Cockroach is the way...

Thank you for the refinements and guidance so far @dantownsend !

@themanifold The one way I've found to do this, which I use quite extensively at this time is `host.fact.command()` Example for adding stuff to PATH. ```python from pyinfra import host,...

WOW! nice work @cshum :crown:

really nice to have an example of such a major imagor extension too!

You're absolutely correct and agreed- an addition about this to the documentation would help.

> there another extension `https://github.com/gonzaarcr/Fildem` using `appmenu-gtk-module` to show global menu Frustratingly, although Fildem's fork does work, it suffers from two major issues: 1. Only works on single-monitor setups. :frowning_face:...

@tomchristie `execute` does not return feedback when deleting rows. Returning rows affected would be the standard MySQL way. https://github.com/encode/databases/blob/88b381ae33bcb417b76b8df9149742cbbcc253b5/databases/backends/mysql.py#L134 Always returns 0 because the row no longer exists. Is there...