Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MODSOURMAN-1204: Using a partitioned journal_records table #920

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ea3b065
MODSOURMAN-1204: Using a partitioned journal_records table
Aliaksandr-Fedasiuk Aug 23, 2024
4ecccaa
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
bb321c8
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
d9cfc1d
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
b05d820
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
56c5f77
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
6d16b55
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 23, 2024
ea67071
MODSOURMAN-1204: fixing names
Aliaksandr-Fedasiuk Aug 26, 2024
7c56c38
MODSOURMAN-1204: change the way of index creation
Aliaksandr-Fedasiuk Aug 27, 2024
bbd43de
MODSOURMAN-1204: change the way of index creation
Aliaksandr-Fedasiuk Aug 28, 2024
7fa361b
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Aug 28, 2024
78e7da0
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Aug 28, 2024
cc340a2
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Aug 28, 2024
239de7a
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Sep 11, 2024
f596431
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 12, 2024
35b35af
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Sep 15, 2024
1af20c6
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 16, 2024
79f5bdc
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Sep 16, 2024
f7444cf
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 16, 2024
0a164dc
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 19, 2024
fa5091f
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Sep 19, 2024
a27bb0a
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Sep 23, 2024
f7cbbc0
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 23, 2024
06d094c
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 23, 2024
dcfe55b
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 23, 2024
64925e7
MODSOURMAN-1204: fix tests
Aliaksandr-Fedasiuk Sep 23, 2024
f21b19e
MODSOURMAN-1204: code review
Aliaksandr-Fedasiuk Sep 23, 2024
ebaaf5f
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Oct 8, 2024
2b8e7c6
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Oct 8, 2024
abd10f3
Merge branch 'master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Oct 14, 2024
7bf8e39
Merge remote-tracking branch 'origin/master' into MODSOURMAN-1204
Aliaksandr-Fedasiuk Dec 17, 2024
aac34f3
Merge branch 'MODSOURMAN-1204' of github.com:folio-org/mod-source-rec…
Aliaksandr-Fedasiuk Dec 17, 2024
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
2 changes: 1 addition & 1 deletion mod-source-record-manager-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<sonar.exclusions>**/org/folio/rest/impl/ModTenantAPI.java</sonar.exclusions>
<sonar.coverage.exclusions>**/services/JournalRecordService.java</sonar.coverage.exclusions>
<aspectj.version>1.9.19</aspectj.version>
<lombok.version>1.18.30</lombok.version>
<lombok.version>1.18.34</lombok.version>
<testcontainers.version>1.16.0</testcontainers.version>
<kafkaclients.version>3.6.0</kafkaclients.version>
<kafkajunit.version>3.5.1</kafkajunit.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ FROM (
FROM journal_records
WHERE journal_records.job_execution_id = ''%1$s'' and entity_type = ''INVOICE'' and title != ''INVOICE''
GROUP BY journal_records.source_id, journal_records.source_record_order, journal_records.job_execution_id,
entity_hrid, title, error, id
entity_hrid, title, error, tenant_id, id
HAVING count(journal_records.source_id) FILTER (WHERE (%3$L IN (''ALL'', ''INVOICE'')) AND (NOT %2$L or journal_records.error <> '''')) > 0
) AS records_actions

Expand Down
Loading