Single line ESQL function found (including CopyEntireMessage)
To improve performance, code that can be inlined (small and not complex) should be considered for in-lining.
For example |
CALL CopyMessageHeaders(); DECLARE unusedVariable CHARACTER = ‘x’; … CREATE PROCEDURE CopyEntireMessage() BEGIN |
Could be refactored to the following |
CALL CopyMessageHeaders(); DECLARE unusedVariable CHARACTER = ‘x’; |