Liquibase call procedure without database specification

Looks like this has been answered on the StackOverflow post:

http://stackoverflow.com/questions/35913633/liquibase-call-procedure-without-database-specification

Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/

EXEC procedure_name(‘some_string_value’)

  • EXECUTE procedure_name(‘some_string_value’)
  • PERFORM fun_name(‘some_string_value’)
  • I need avoid database conditions because I call this procedure in different places. Is there a way to achieve this with implementing db condition in one place?