Skip to content

Commit

Permalink
Fixes #189 - Changing back the details of flows.flows
Browse files Browse the repository at this point in the history
  • Loading branch information
TebaleloS committed Apr 30, 2024
1 parent b3fc2bb commit 6edc40a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion database/src/main/postgres/flows/V1.7.1__flows.alter.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
*/

ALTER TABLE flows.flows
ALTER COLUMN fk_primary_partitioning SET NOT NULL;
ADD COLUMN IF NOT EXISTS fk_primary_partitioning BIGINT;

CREATE UNIQUE INDEX IF NOT EXISTS unq_flows ON flows.flows (fk_primary_partitioning);
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class GetPartitioningMeasuresTest extends DBTestSuite {
.execute { queryResult =>
val results = queryResult.next()
assert(results.getInt("status").contains(41))
assert(results.getString("status_text").contains("Partitioning not found"))
assert(results.getString("status_text").contains("The partitioning does not exist."))
assert(!queryResult.hasNext)
}
}
Expand Down

0 comments on commit 6edc40a

Please sign in to comment.