RESOLVED - Stored Procedure escape characters?

I have a few stored procedures that include less than and greater than characters which is causing:


liquibase.exception.ChangeLogParseException: Error parsing line 966 column 33 of C:/projects/development/bin/DBLiquibase/initial.xml: The content of elements must consist of well-formed character data or markup. 


which is ‘IF @Quantity < @TempQty’  Is there a way to escape these symbols?

Thank you!  I’ll give that a shot.

Use CDATA blocks in the XML to allow those types of symbols ( http://www.w3schools.com/xml/xml_cdata.asp)


Nathan