pg: support host:port for backwards-compatibility

This commit is contained in:
Alex Suraci
2018-11-20 10:22:39 -05:00
parent b1fd2fa8b1
commit 0b856d1a75
2 changed files with 24 additions and 4 deletions

View File

@@ -119,6 +119,13 @@ func TestCreateDataSourceName(t *testing.T) {
},
expected: "connect_timeout=0 host='coreos.com' sslmode='disable'",
},
{
description: "with tcp host:port",
input: &Postgres{
Host: "coreos.com:6543",
},
expected: "connect_timeout=0 host='coreos.com' port=6543 sslmode='verify-full'",
},
{
description: "with tcp host and port",
input: &Postgres{