Skip to content

Commit 8aa08a9

Browse files
committed
Merge branch 'master' of https://github.com/joncrlsn/pgdiff
Former-commit-id: 9fdea5a
2 parents 1e95a4c + 1a5fd08 commit 8aa08a9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

bin-linux/pgdiff.REMOVED.git-id

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c40e6235c4802886df73f21cd40389dd1889680b

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)