aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/clickhouse-go/lib/column/int16.go
blob: 0b2d167dadcba56ae6d778ba21fa18cb57ed3701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package column

import (
	"github.com/ClickHouse/clickhouse-go/lib/binary"
)

type Int16 struct{ base }

func (Int16) Read(decoder *binary.Decoder, isNull bool) (interface{}, error) {
	v, err := decoder.Int16()
	if err != nil {
		return int16(0), err
	}
	return v, nil
}

func (i *Int16) Write(encoder *binary.Encoder, v interface{}) error {
	switch v := v.(type) {
	case int16:
		return encoder.Int16(v)
	case int64:
		return encoder.Int16(int16(v))
	case int:
		return encoder.Int16(int16(v))

	// this relies on Nullable never sending nil values through
	case *int16:
		return encoder.Int16(*v)
	case *int64:
		return encoder.Int16(int16(*v))
	case *int:
		return encoder.Int16(int16(*v))
	}

	return &ErrUnexpectedType{
		T:      v,
		Column: i,
	}
}