Skip to content

Commit

Permalink
Merge branch 'master' into dependabot-pip-flowapi-pytest-asyncio-0.23.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed May 22, 2024
2 parents 5a2119e + 147e3c4 commit a220ecc
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 22 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Changed
- FlowDB now enables partitionwise aggregation planning by default
- FlowDB now uses a default fillfactor of 100 for cache table indexes

### Fixed
- Queries that have multiple of the same subquery with different parameters no longer cause duplicate scopes in tokens. [#6580](https://github.com/Flowminder/FlowKit/issues/6580)
Expand Down
9 changes: 5 additions & 4 deletions flowapi/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions flowauth/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions flowkit_jwt_generator/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions flowmachine/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flowmachine/flowmachine/core/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def _make_sql(self, name: str, schema: Union[str, None] = None) -> List[str]:
queries.append(f"ALTER TABLE {full_name} OWNER TO flowmachine;")
for ix in self.index_cols:
queries.append(
"CREATE INDEX ON {tbl} ({ixen})".format(
"CREATE INDEX ON {tbl} ({ixen}) WITH (fillfactor = 100)".format(
tbl=full_name, ixen=",".join(ix) if isinstance(ix, list) else ix
)
)
Expand Down

0 comments on commit a220ecc

Please sign in to comment.