Skip to content

Commit eec321b

Browse files
committed
#138 apply buffer increase from nabu code
1 parent cf3dcf1 commit eec321b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/millers/graph/bnodefix.go

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ func GlobalUniqueBNodes(nq string) string {
1818
// make a map here to hold our old to new map
1919
m := make(map[string]string)
2020

21+
// need for long lines like in Internet of Water
22+
buf := make([]byte, 0, 64*1024)
23+
scanner.Buffer(buf, 1024*1024)
24+
2125
for scanner.Scan() {
2226
//fmt.Println(scanner.Text())
2327
// parse the line

0 commit comments

Comments
 (0)