We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3dcf1 commit eec321bCopy full SHA for eec321b
internal/millers/graph/bnodefix.go
@@ -18,6 +18,10 @@ func GlobalUniqueBNodes(nq string) string {
18
// make a map here to hold our old to new map
19
m := make(map[string]string)
20
21
+ // need for long lines like in Internet of Water
22
+ buf := make([]byte, 0, 64*1024)
23
+ scanner.Buffer(buf, 1024*1024)
24
+
25
for scanner.Scan() {
26
//fmt.Println(scanner.Text())
27
// parse the line
0 commit comments