瀏覽代碼

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)