Skip to content

Commit 6a97edb

Browse files
committed
Removed the compareRoles call (not implemented yet)
1 parent 5e7dfb1 commit 6a97edb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pgdiff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func main() {
6262
compareColumns(conn1, conn2)
6363
compareIndexes(conn1, conn2) // includes PK and Unique indexes
6464
compareForeignKeys(conn1, conn2)
65-
compareRoles(conn1, conn2)
65+
//compareRoles(conn1, conn2)
6666
} else if schemaType == "SEQUENCE" {
6767
compareSequences(conn1, conn2)
6868
} else if schemaType == "TABLE" {
@@ -74,7 +74,7 @@ func main() {
7474
} else if schemaType == "FOREIGN_KEY" {
7575
compareForeignKeys(conn1, conn2)
7676
} else if schemaType == "ROLE" {
77-
compareRoles(conn1, conn2)
77+
//compareRoles(conn1, conn2)
7878
} else {
7979
fmt.Println("Not yet handled:", schemaType)
8080
}

0 commit comments

Comments
 (0)