Skip to content

Commit

Permalink
version 0.1.5 update (#38)
Browse files Browse the repository at this point in the history
* updating version number

* changed error fmt
  • Loading branch information
huebnerr authored Oct 3, 2019
1 parent dc08546 commit c51df91
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ package vertigo
import (
"database/sql"
"database/sql/driver"
"fmt"
"os"
"strconv"

Expand All @@ -47,7 +46,7 @@ type Driver struct{}

const (
driverName string = "vertica-sql-go"
driverVersion string = "0.1.4"
driverVersion string = "0.1.5"
protocolVersion uint32 = 0x00030008
)

Expand All @@ -58,7 +57,7 @@ var driverLogger = logger.New("driver")
func (d *Driver) Open(connString string) (driver.Conn, error) {
conn, err := newConnection(connString)
if err != nil {
driverLogger.Error(fmt.Sprint(err))
driverLogger.Error(err.Error())
}
return conn, err
}
Expand Down

0 comments on commit c51df91

Please sign in to comment.