| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Seed data for exercising diff functionality across connectors. All files create a customers table (key column id) with the same base dataset, adapted per engine's SQL dialect and type system.
Diffing Postgres against any one of them (with id as the key) produces the same result:
| ids | Postgres | Other side | Expected RowStatus |
|---|---|---|---|
| 1-7 | ✓ | ✓ | MATCHED |
| 8, 11 | ✓ | — | DELETED |
| 9, 12 | — | ✓ | ADDED |
| 10 | amount=220.00, status='active' | amount=275.50, status='inactive' | MODIFIED |
Expected summary: 7 matched, 2 added, 2 deleted, 1 modified (mismatched columns on row 10: amount, status).
Diffing any two non-Postgres sides against each other (e.g. MySQL vs. Snowflake) should report a full match (0 differences) since they all share the identical "source B" dataset — useful as a sanity check that the connector/algorithm pairing itself introduces no false positives.
Cockroach DB and YugabyteDB are PostgreSQL wire-compatible and TiDB is MySQL wire-compatible, so their fixtures reuse the same DDL/data as Postgres/MySQL — only the CLI/tooling used to apply them and the connection env vars differ.
| Back | FazBrowse Home | New Git URL |