Skip to content

Commit

Permalink
merge main, address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dexamundsen committed Jan 23, 2025
1 parent ed39558 commit 1e28f49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/generated/UNDERLAY_CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ List of attributes grouped together for search optimization.
### SZAttributeSearch.includeEntityMainColumns
**optional** boolean

True if all columns from the EntityMain table should be included in this table.
Whether all columns in the entity main table should also be included in this search table. Improves performance if other attributes are also fetched when performing this search by attributes.

*Default value:* `false`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ public Entity getEntity() {
}

public List<Attribute> getFilterAttributes() {
logger.debug(
"FilterAttributes not supported/implemented for " + this.getClass().getSimpleName());
// not supported or not implemented
return List.of();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ public class SZAttributeSearch {

@AnnotatedField(
name = "SZAttributeSearch.includeEntityMainColumns",
markdown = "True if all columns from the EntityMain table should be included in this table. ",
markdown =
"Whether all columns in the entity main table should also be included "
+ "in this search table. Improves performance if other attributes are also fetched "
+ "when performing this search by attributes.",
optional = true,
defaultValue = "false")
public boolean includeEntityMainColumns;
Expand Down

0 comments on commit 1e28f49

Please sign in to comment.