Support time durations for simple protocol

Signed-off-by: Michael Darr <michael.e.darr@gmail.com>
pull/1050/head
Michael Darr 2021-07-13 00:24:58 -04:00 committed by Jack Christensen
parent 1470d69c58
commit 59fa1868a7
2 changed files with 15 additions and 0 deletions

View File

@ -1061,3 +1061,16 @@ func TestStmtCacheInvalidationTx(t *testing.T) {
ensureConnValid(t, conn)
}
func TestInsertDurationInterval(t *testing.T) {
testWithAndWithoutPreferSimpleProtocol(t, func(t *testing.T, conn *pgx.Conn) {
_, err := conn.Exec(context.Background(), "create temporary table t(duration INTERVAL(0) NOT NULL)")
require.NoError(t, err)
result, err := conn.Exec(context.Background(), "insert into t(duration) values($1)", time.Minute)
require.NoError(t, err)
n := result.RowsAffected()
require.EqualValues(t, 1, n)
})
}

View File

@ -78,6 +78,8 @@ func convertSimpleArgument(ci *pgtype.ConnInfo, arg interface{}) (interface{}, e
return arg, nil
case bool:
return arg, nil
case time.Duration:
return fmt.Sprintf("%d microsecond", int64(arg)/1000), nil
case time.Time:
return arg, nil
case string: