Skip to content

Commit e4b292d

Browse files
Fix merge issues
Signed-off-by: Rohit Nayak <[email protected]>
1 parent f427fd6 commit e4b292d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go/summarize/reading.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"sort"
2323
"strconv"
2424

25+
"github.com/vitessio/vt/go/dbinfo"
2526
"github.com/vitessio/vt/go/keys"
26-
"github.com/vitessio/vt/go/schema"
2727
"github.com/vitessio/vt/go/transactions"
2828
)
2929

@@ -103,7 +103,7 @@ func readKeysFile(fileName string) func(s *Summary) error {
103103
}
104104

105105
func readDBInfoFile(fileName string) func(s *Summary) error {
106-
schemaInfo, err := schema.Load(fileName)
106+
schemaInfo, err := dbinfo.Load(fileName)
107107
if err != nil {
108108
panic(err)
109109
}

0 commit comments

Comments
 (0)