We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e7dfb1 commit 6a97edbCopy full SHA for 6a97edb
1 file changed
pgdiff.go
@@ -62,7 +62,7 @@ func main() {
62
compareColumns(conn1, conn2)
63
compareIndexes(conn1, conn2) // includes PK and Unique indexes
64
compareForeignKeys(conn1, conn2)
65
- compareRoles(conn1, conn2)
+ //compareRoles(conn1, conn2)
66
} else if schemaType == "SEQUENCE" {
67
compareSequences(conn1, conn2)
68
} else if schemaType == "TABLE" {
@@ -74,7 +74,7 @@ func main() {
74
} else if schemaType == "FOREIGN_KEY" {
75
76
} else if schemaType == "ROLE" {
77
78
} else {
79
fmt.Println("Not yet handled:", schemaType)
80
}
0 commit comments