mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-24 02:00:29 -05:00
Add support for ltree columns. Closes #1383
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
## v0.12.3 [2022-02-01]
|
||||
_Bug fixes_
|
||||
* Ensure SetConnectionConfig is only called once. ([#1368](https://github.com/turbot/steampipe/issues/1368))
|
||||
* Plugin validation error causes buildConnectionUpdateQueries to crash. ([#1387](https://github.com/turbot/steampipe/issues/1387))
|
||||
|
||||
## v0.12.2 [2022-01-27]
|
||||
_Bug fixes_
|
||||
|
||||
@@ -28,7 +28,7 @@ const (
|
||||
// constants for installing db and fdw images
|
||||
const (
|
||||
DatabaseVersion = "12.1.0"
|
||||
FdwVersion = "0.3.3"
|
||||
FdwVersion = "0.4.0-rc.1"
|
||||
|
||||
// PostgresImageRef is the OCI Image ref for the databse binaries
|
||||
// The 12.1.0 image uses the older jar format 12.1.0-v2 is the same version of postgres,
|
||||
|
||||
@@ -485,6 +485,7 @@ func setupLogCollector(postgresCmd *exec.Cmd) (chan string, func(), error) {
|
||||
func ensurePgExtensions(ctx context.Context, rootClient *sql.DB) error {
|
||||
extensions := []string{
|
||||
"tablefunc",
|
||||
"ltree",
|
||||
}
|
||||
|
||||
errors := []error{}
|
||||
|
||||
Reference in New Issue
Block a user