-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed advanced test failure for postgres 17
- Loading branch information
1 parent
59eca43
commit 38838a9
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/main/resources/liquibase/harness/snapshot/expectedSnapshot/postgresql/17/createView.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"snapshot": { | ||
"objects": { | ||
"liquibase.structure.core.Table": [ | ||
{ | ||
"table": { | ||
"name": "view_table" | ||
} | ||
} | ||
], | ||
"liquibase.structure.core.View": [ | ||
{ | ||
"view": { | ||
"definition": "SELECT test_column\n FROM view_table;", | ||
"name": "test_view" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |