Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.0.xsd">

<changeSet id="2025-05-02--11-00-create-index-external-id-covering" author="viachaslau_khandramai">
<changeSet id="2025-05-02--11-00-create-index-external-id-covering" author="viachaslau_khandramai" runOnChange="true">
<sql>
CREATE INDEX idx_records_lb_external_id_covering ON ${database.defaultSchemaName}.records_lb (external_id, record_type, state, suppress_discovery, leader_record_status, id, generation);
DROP INDEX IF EXISTS idx_records_lb_external_id_covering;
CREATE INDEX IF NOT EXISTS idx_records_lb_external_id_covering ON ${database.defaultSchemaName}.records_lb (external_id, record_type, state, suppress_discovery, leader_record_status, id, generation);
</sql>
</changeSet>

Expand Down
Loading