Skip to content

Commit f81c8c6

Browse files
committed
v1.6.0
1 parent 4243190 commit f81c8c6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
## v1.6.0 [tbd]
22
_Whats new_
3-
* 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))
3+
* 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))
44

5+
_Bug fixes_
6+
* Limit should not be pushed down if there are unconverted restrictions. ([#291](https://github.com/turbot/steampipe-postgres-fdw/issues/291))
7+
58
## v1.5.0 [2022-11-30]
69
_Whats new_
710
* Update to work with sdk version 5 and dynamic updating of dynamic schemas. ([#259](https://github.com/turbot/steampipe-postgres-fdw/issues/259))

hub/hub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ func (h *Hub) startScanForLegacyConnection(connectionName string, table string,
574574
return nil, err
575575
}
576576
// determine whether to include the limit, based on the quals
577-
// we ONLY pushdown the limit is all quals have corresponding key columns,
577+
// we ONLY pushdown the limit if all quals have corresponding key columns,
578578
// and if the qual operator is supported by the key column
579579
if limit != -1 && !h.shouldPushdownLimit(table, qualMap, unhandledRestrictions, connectionSchema) {
580580
limit = -1

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var fdwVersion = "1.6.0"
1616
// A pre-release marker for the version. If this is "" (empty string)
1717
// then it means that it is a final release. Otherwise, this is a pre-release
1818
// such as "dev" (in development), "beta", "rc1", etc.
19-
var prerelease = "rc.6"
19+
var prerelease = ""
2020

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

0 commit comments

Comments
 (0)