FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gomaxcompute/rows.go at develop · sql-machine-learning/gomaxcompute · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sql-machine-learning
/
gomaxcompute
Public
Notifications
You must be signed in to change notification settings
Fork
11
Star
44
Code
Issues
5
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
gomaxcompute
/
rows.go
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (46 loc) · 1.08 KB
Breadcrumbs
gomaxcompute
/
rows.go
Copy path
File metadata and controls
55 lines (46 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
}
Back
|
FazBrowse Home
|
New Git URL