Skip to content

Commit

Permalink
Fixes issue liquibase#4413: Undocumented IT requirement: Username "li…
Browse files Browse the repository at this point in the history
…quibase"

Despite the title and description of issue liquibase#4413, the actual cause of
the failing IT was *not* an undocumented IT requirement, but the fact
that the author of the IT (unintentionally) used the static prefix
"liquibase" instead of the dynamic prefix provided by the test driver.

The solution hence is to replace the static prefix by the dynamic
prefix. Hence, there is nothing wrong with the test documentation.
  • Loading branch information
mkarg committed Jun 21, 2023
1 parent deceeb6 commit a8e7b89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@

<changeSet id="16" author="nvoxland">
<createView viewName="personView">
select * from liquibase.person
select * from ${loginUser}.person
</createView>
</changeSet>

Expand Down

0 comments on commit a8e7b89

Please sign in to comment.