소스 검색

Oh Travis, why have you forsaken me (sorry dear watchers)

Arne Hormann 11 년 전
부모
커밋
f1ab27c68c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packets.go

+ 1 - 1
packets.go

@@ -1128,7 +1128,7 @@ func (rows *binaryRows) readRow(dest []driver.Value) error {
 			default:
 				return fmt.Errorf("Invalid TIME-packet length %d", num)
 			}
-			if decimals := rows.columns[i].decimals; decimals > 0 {
+			if decimals := rows.columns[i].decimals; decimals > 0 && decimals <= 6 {
 				result += fmt.Sprintf(".%06d", microsecs)[:1+decimals]
 			}
 			dest[i] = []byte(result)