Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed Mar 1, 2023
1 parent 4243190 commit f81c8c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## v1.6.0 [tbd]
_Whats new_
* Add support for dynamic aggregators - pass connection name in ExecuteRequest - used to resolve aggregator config. ([#273](https://github.com/turbot/steampipe-postgres-fdw/issues/273))
* Add support for dynamic aggregators. Pass connection name in `ExecuteRequest`, this is used to resolve aggregator config. ([#273](https://github.com/turbot/steampipe-postgres-fdw/issues/273))

_Bug fixes_
* Limit should not be pushed down if there are unconverted restrictions. ([#291](https://github.com/turbot/steampipe-postgres-fdw/issues/291))

## v1.5.0 [2022-11-30]
_Whats new_
* Update to work with sdk version 5 and dynamic updating of dynamic schemas. ([#259](https://github.com/turbot/steampipe-postgres-fdw/issues/259))
Expand Down
2 changes: 1 addition & 1 deletion hub/hub.go
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ func (h *Hub) startScanForLegacyConnection(connectionName string, table string,
return nil, err
}
// determine whether to include the limit, based on the quals
// we ONLY pushdown the limit is all quals have corresponding key columns,
// we ONLY pushdown the limit if all quals have corresponding key columns,
// and if the qual operator is supported by the key column
if limit != -1 && !h.shouldPushdownLimit(table, qualMap, unhandledRestrictions, connectionSchema) {
limit = -1
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var fdwVersion = "1.6.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var prerelease = "rc.6"
var prerelease = ""

// FdwVersion is an instance of semver.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down

0 comments on commit f81c8c6

Please sign in to comment.