Skip to content

Commit

Permalink
Merge pull request #4 from keploy/Sarthak160-patch-1
Browse files Browse the repository at this point in the history
Update data_row.go
  • Loading branch information
Sarthak160 authored Mar 2, 2024
2 parents 51d7ac4 + 94ba2fe commit c8cd0d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions data_row.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"encoding/binary"
"encoding/hex"
"encoding/json"
"fmt"
"unicode"

"github.com/jackc/pgio"
Expand Down Expand Up @@ -136,7 +135,7 @@ func stringsToBytesArray(strArray []string) [][]byte {

for i, str := range strArray {
if str == "NIL" {
fmt.Println("NIL AHHAHAHAHAHHAHAHAHAH")

byteArray[i] = []byte{255, 255, 255, 255}
continue
}
Expand Down Expand Up @@ -166,7 +165,7 @@ func isValidBase64(s string) ([]byte, bool) {
if err != nil {
return nil, false
}
fmt.Println("VALUEEEEE", val, "HURRAY", s)

return val, true
}

Expand Down

0 comments on commit c8cd0d8

Please sign in to comment.