sqlalchemy-diff icon indicating copy to clipboard operation
sqlalchemy-diff copied to clipboard

Results 10 sqlalchemy-diff issues
Sort by recently updated
recently updated
newest added

Adding the ability to select which schemas are being compared

Hi , I was wondering if it is possible to only exclude default value for a given column for comparing, for instance i want to ignore server_default and default attribute...

Postgres has table types `.relkind` in `pg_tables` that are necessary to identify whether the difference is in a table or in the partitions (as the query lists all tables and...

on Line `29` in file: `util.py` location: https://github.com/gianchub/sqlalchemy-diff/blob/master/sqlalchemydiff/util.py Should allow passing parameters like SSL like ```python connection = create_engine( 'mysql://{user}:{password}@{host}/{database}', connect_args={'ssl': {'ssl-mode': 'preferred'}} ) ```

Previously, this codepath would report that the 'name' of anonymous foreign keys was `None`. While strictly correct, this caused false reports of schema differences when comparing identical tables with multiple...

The latest version on PyPI is v0.1.3, which is missing features like constraint diffing. Would it be possible to release v0.1.4 to PyPI?

We're using `alembic-verify` and `sqlalchemy-diff` to verify the correctness of our migrations on a PostgreSQL database, but every now and then the `destroy_database(temporary_uri)` call in the test's teardown fails with...

Hi, I'm using sqlalchemy-diff with pybigquery, and it seems sqlalchemy-diff is having issues when attempting to process custom types, like an array, I get this error: ``` File "/env/lib/python3.7/site-packages/sqlalchemydiff/comparer.py", line...

Currently, foreign keys are diffed by sticking all foreign keys into a dict indexed by name. However, there may be multiple foreign keys with no name, in which case only...

It would be nice to have the output in result.errors have aliases substituted for 'left' and 'right' Something like, ``` result = compare(left_uri, right_uri, left_alias='alpha_db', right_alias='omega_db') ``` This would be...