Skip to content

Commit

Permalink
include pg13 too
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Jun 14, 2024
1 parent f04d242 commit a378459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/cmd/peer_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (h *FlowRequestHandler) GetTablesInSchema(

relKindFilterClause := "t.relkind IN ('r', 'p')"
// publish_via_partition_root is only available in PG13 and above
if pgVersion <= shared.POSTGRES_13 {
if pgVersion < shared.POSTGRES_13 {
relKindFilterClause = "t.relkind = 'r'"
}

Expand Down

0 comments on commit a378459

Please sign in to comment.