diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d471500..37d75e02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/hub/hub.go b/hub/hub.go index 186ef402..0566901c 100644 --- a/hub/hub.go +++ b/hub/hub.go @@ -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 diff --git a/version/version.go b/version/version.go index fb785b22..a5b5a0f0 100644 --- a/version/version.go +++ b/version/version.go @@ -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