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

Pull upstream changes #1

Open
wants to merge 50 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
cf63f84
Fix mocking of entity.build_entity_query
amCap1712 May 26, 2022
166ba52
Setup real database for tests
amCap1712 May 7, 2022
fc5cf88
Fix SQLAlchemy warning to use text directly
amCap1712 May 7, 2022
b73e209
Remove volume mount from docker-compose.test.yml
amCap1712 May 18, 2022
55c5560
Optionally accept a session parameter in indexing functions
amCap1712 May 31, 2022
ce8bf44
Add indexing tests for entities using actual data
amCap1712 May 7, 2022
dff0a11
Improve test script
yvanzo May 31, 2022
bd99fd4
Upgrade SQLAlchemy (1/3) from 1.0.19 to 1.1.18
yvanzo Jan 23, 2020
7a2d2ad
Fix column type check in last_model_in_path
mwiencek Jan 23, 2020
f53b8b7
Fix debug message by creating list from generator
yvanzo Feb 3, 2020
129b2d4
Update psycopg requirement to -binary
reosarevok Aug 26, 2021
631b7ec
Update to 1.4, fix missing text() error
reosarevok Aug 30, 2021
8b16c86
Use load_only rather than many defer calls
reosarevok Aug 31, 2021
fce9789
Change relationship.table to relationship.mapper
amCap1712 Aug 31, 2021
e96bb3b
Document filter_valid_annotations
reosarevok Aug 31, 2021
34139b1
remove __tablename__ from column list
amCap1712 Sep 1, 2021
615ce79
Do not use @hybrid_property in paths
amCap1712 Sep 6, 2021
e668d96
Update SQLAlchemy documentation link
amCap1712 Sep 16, 2021
62b786e
Try fixing AttributeError for session
amCap1712 Jun 23, 2022
5d86c7a
Accept session attribute in index_entity and live_index_entity
amCap1712 Jun 23, 2022
73e2528
Document requiring MBDB materialized tables
yvanzo Oct 15, 2022
cef9055
Merge pull request #111 from yvanzo/sqlalchemy13
yvanzo Oct 15, 2022
2bbacca
SEARCH-675: Document using RabbitMQ (#139)
yvanzo Oct 15, 2022
2789d18
Fix deprecation warnings in SIR (#140)
amCap1712 Oct 17, 2022
2f8862c
Fix overlapping relationship SAWarning in custom models
amCap1712 Oct 16, 2022
9cb44fa
Fix implicitly coercing SELECT object warning
amCap1712 Oct 16, 2022
63aa1cb
Remove unused import
amCap1712 Oct 25, 2022
cc3edad
Revert "Use load_only rather than many defer calls"
amCap1712 Oct 25, 2022
6599b4c
Do not defer CompositeProperty
amCap1712 Oct 25, 2022
05c277d
Upgrade SQLAlchemy to latest version
amCap1712 Oct 27, 2022
99b3208
Eagerly load area fields
amCap1712 Oct 28, 2022
dd87d0d
Eagerly load artist.sort_name in event indexing
amCap1712 Oct 31, 2022
45085da
Use mapper attribute instead of hybrid property
amCap1712 Oct 31, 2022
da0da07
Use mapper attribute instead of hybrid property
amCap1712 Oct 31, 2022
16577db
Eagerly load artist_alias.gid in release group indexing (#148)
amCap1712 Nov 4, 2022
89ef1ab
Eagerly load artist.comment in release indexing
amCap1712 Nov 1, 2022
80954d6
Eagerly load packaging.gid in release indexing
amCap1712 Nov 1, 2022
a062672
Use mapper attribute instead of hybrid property
amCap1712 Nov 7, 2022
a596aa6
Eagerly load area0.type.name and area0.ended
amCap1712 Nov 7, 2022
ade0073
Eagerly load area attributes in place indexing
amCap1712 Nov 7, 2022
c93c640
Fix loading of release-group first_release_date
amCap1712 Nov 7, 2022
4b0cab7
Fix loading of recording first_release_date
amCap1712 Nov 7, 2022
a39d968
Fix loading of release amazon asin
amCap1712 Nov 7, 2022
17a8340
Eagerly load area_type related attributes for artist core
amCap1712 Nov 7, 2022
e9f6181
Eagerly load area attributes in label indexing
amCap1712 Nov 7, 2022
ee18b5a
Add test case for work that includes recording links
amCap1712 Nov 14, 2022
d322f80
Update extrapaths fields indexed for work
amCap1712 Nov 8, 2022
dc96c30
Avoid doing recording count in sql query for work
amCap1712 Nov 14, 2022
e9e6364
Amend 2bbacca6: Declare exchanges/queues on move (#159)
yvanzo May 31, 2023
51ca22a
Document releasing a new version, step-by-step (#143)
yvanzo Mar 20, 2025
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
Prev Previous commit
Next Next commit
Eagerly load area attributes in place indexing
convert_place used as wscompat converter for place core calls
convert_area_inner as well which accesses area.type.gid, area.type.name,
area.begin_date, area.end_date, area.ended so eagerly load it.
amCap1712 committed Nov 7, 2022
commit ade0073ddd450e641599d56af1a1ca4762aef83c
4 changes: 3 additions & 1 deletion sir/schema/__init__.py
Original file line number Diff line number Diff line change
@@ -286,7 +286,9 @@
"aliases.type.gid", "aliases.sort_name",
"aliases.locale", "aliases.primary_for_locale",
"aliases.begin_date", "aliases.end_date",
"area.gid", "type.gid"]
"area.gid", "area.type.gid", "area.type.name",
"area.begin_date", "area.end_date", "area.ended",
"type.gid"]
)