The default schema is being used which that should be avoided (WMB)
ESQL/Msgflows should be organised into some structure. Using the default SCHEMA is discouraged as it does not add an contextual meaning for those reading the code.
| For example – using the default schema |
CREATE FUNCTION CalculateTaxRate(IN amount INTEGER) RETURNS INTEGER |
| Preferred – with schema |
BROKER SCHEMA au.com.some.company.taxrates
CREATE FUNCTION CalculateTaxRate(IN amount INTEGER) RETURNS INTEGER |
