Skip to content

Commit

Permalink
include missing indexes
Browse files Browse the repository at this point in the history
Signed-off-by: Pawel Leszczynski <leszczynski.pawel@gmail.com>
  • Loading branch information
pawel-big-lebowski committed Feb 14, 2023
1 parent aa1cfce commit 72665bb
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased](https://github.com/MarquezProject/marquez/compare/0.30.0...HEAD)

### Fixed

* Add missing database indexes [`#???`](https://github.com/MarquezProject/marquez/pull/???) [@pawel-big-lebowski](https://github.com/pawel-big-lebowski)
*Create missing indexes on reference columns.*


## [0.30.0](https://github.com/MarquezProject/marquez/compare/0.29.0...0.30.0) - 2023-01-31

### Added
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
create index column_lineage_output_dataset_version_uuid_index
on column_lineage (output_dataset_version_uuid);

create index column_lineage_output_dataset_field_uuid_index
on column_lineage (output_dataset_field_uuid);

create index column_lineage_input_dataset_version_uuid_index
on column_lineage (input_dataset_version_uuid);

create index column_lineage_input_dataset_field_uuid_index
on column_lineage (input_dataset_field_uuid);
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
create index dataset_facets_dataset_uuid_index
on dataset_facets (dataset_uuid);

create index dataset_facets_dataset_version_uuid_index
on dataset_facets (dataset_version_uuid);

create index dataset_facets_run_uuid_index
on dataset_facets (run_uuid);

create index job_facets_job_uuid_index
on job_facets (job_uuid);

create index job_facets_run_uuid_index
on job_facets (run_uuid);

0 comments on commit 72665bb

Please sign in to comment.