2
0

Removed unused rxDataRowFirstValue

This commit is contained in:
Jack Christensen
2013-06-29 13:24:28 -05:00
parent 08801c2fe4
commit 3acfffc142
-11
View File
@@ -370,17 +370,6 @@ func (c *Connection) rxDataRow(r *DataRowReader) (row map[string]interface{}) {
return
}
func (c *Connection) rxDataRowFirstValue(r *MessageReader) (s string, null bool) {
size := r.ReadInt32()
if size > -1 {
s = r.ReadByteString(size)
} else {
null = true
}
return
}
func (c *Connection) rxCommandComplete(r *MessageReader) string {
return r.ReadString()
}