2
0

More docs and make ValueTranscoder visible.

This commit is contained in:
Jack Christensen
2013-07-15 17:45:20 -05:00
parent 462df934ab
commit 1af652ce07
4 changed files with 36 additions and 24 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ func (r *DataRowReader) ReadValue() interface{} {
size := r.mr.ReadInt32()
if size > -1 {
if vt, present := valueTranscoders[fieldDescription.DataType]; present {
if vt, present := ValueTranscoders[fieldDescription.DataType]; present {
switch fieldDescription.FormatCode {
case 0:
return vt.DecodeText(r.mr, size)