Quantcast
Channel: Liquibase Forums
Viewing all articles
Browse latest Browse all 2993

Liquibase package compilation when spec and body in same file

$
0
0

I have a directory where the packages are kept in the below format ,both the package specification and body are kept in the same file ,the file name is abc.pkg

create or replace package abc
 IS 
  /* this package is utility to fetch employee related data*/


 END abc;
/
create or replace package body abc
 IS 

 END abc;
/

My changeset is

<changeSet author="curious" id="PKG_1" logicalFilePath= "package/abc.pkg" runOnChange="true">
    <sqlFile path="package/abc.pkg"
            relativeToChangelogFile="true"
            endDelimiter="/"
            splitStatements="true"
            encoding="utf8"
            />
</changeSet>

The build is successful but the package got error because of / , can anyone help me with this fix , as this must be the most common way of checkin the code into version control systems like GIT and SVN


Viewing all articles
Browse latest Browse all 2993

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>