-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrows.go
55 lines (46 loc) · 1.08 KB
/
rows.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package gomaxcompute
import (
"bytes"
"database/sql/driver"
"encoding/csv"
"reflect"
)
var builtinString = reflect.TypeOf(string(""))
type odpsRows struct {
meta *resultMeta
reader *csv.Reader
header []string
headerLen int
}
func (rs *odpsRows) Close() error {
return nil
}
func (rs *odpsRows) Columns() []string {
return rs.header
}
// Notice: odps using `\N` to denote nil, even for not-string field
func (rs *odpsRows) Next(dst []driver.Value) error {
records, err := rs.reader.Read()
if err != nil {
return err
}
for i := 0; i < rs.headerLen; i++ {
dst[i] = records[i]
}
return nil
}
func (rs *odpsRows) ColumnTypeScanType(i int) reflect.Type {
return builtinString
}
func (rs *odpsRows) ColumnTypeDatabaseTypeName(i int) string {
return rs.meta.Schema.Columns[i].Type
}
func newRows(m *resultMeta, res string) (*odpsRows, error) {
rd := csv.NewReader(bytes.NewBufferString(res))
// hr equas to [m.Schema.Columns.Name]
hr, err := rd.Read()
if err != nil {
return nil, err
}
return &odpsRows{meta: m, reader: rd, header: hr, headerLen: len(hr)}, nil
}