File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121 *
2222 */
2323
24- gc_version constant varchar2(50) := 'v3.1.2.1869 -develop';
24+ gc_version constant varchar2(50) := 'v3.1.2.1880 -develop';
2525
2626 /* Constants: Event names */
2727 subtype t_event_name is varchar2(30);
Original file line number Diff line number Diff line change @@ -132,14 +132,15 @@ create or replace type body ut_compound_data_value as
132132 l_result integer;
133133 --the XML stylesheet is applied on XML representation of data to exclude column names from comparison
134134 --column names and data-types are compared separately
135+ --user CHR(38) instead of ampersand to eliminate define request when installing through some IDEs
135136 l_xml_data_fmt constant xmltype := xmltype(
136137 q'[<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
137138 <xsl:strip-space elements="*" />
138139 <xsl:template match="/child::*">
139140 <xsl:for-each select="child::node()">
140141 <xsl:choose>
141142 <xsl:when test="*[*]"><xsl:copy-of select="node()"/></xsl:when>
142- <xsl:when test="position()=last()"><xsl:value-of select="normalize-space(.)"/><xsl:text>& #xD;</xsl:text></xsl:when>
143+ <xsl:when test="position()=last()"><xsl:value-of select="normalize-space(.)"/><xsl:text>'||CHR(38)||' #xD;</xsl:text></xsl:when>
143144 <xsl:otherwise><xsl:value-of select="normalize-space(.)"/>,</xsl:otherwise>
144145 </xsl:choose>
145146 </xsl:for-each>
Original file line number Diff line number Diff line change @@ -166,7 +166,6 @@ prompt Installing DBMSPLSQL Tables objects into &&ut3_owner schema
166166@@install_component .sql ' expectations/data_values/ut_compound_data_diff_tmp.sql'
167167@@install_component .sql ' expectations/data_values/ut_data_value.tps'
168168@@install_component .sql ' expectations/data_values/ut_compound_data_value.tps'
169- @@install_component .sql ' expectations/data_values/ut_compound_data_helper.pks'
170169@@install_component .sql ' expectations/data_values/ut_data_value_anydata.tps'
171170@@install_component .sql ' expectations/data_values/ut_data_value_collection.tps'
172171@@install_component .sql ' expectations/data_values/ut_data_value_object.tps'
@@ -182,6 +181,7 @@ prompt Installing DBMSPLSQL Tables objects into &&ut3_owner schema
182181@@install_component .sql ' expectations/data_values/ut_data_value_timestamp_ltz.tps'
183182@@install_component .sql ' expectations/data_values/ut_data_value_varchar2.tps'
184183@@install_component .sql ' expectations/data_values/ut_data_value_yminterval.tps'
184+ @@install_component .sql ' expectations/data_values/ut_compound_data_helper.pks'
185185@@install_component .sql ' expectations/matchers/ut_matcher.tps'
186186@@install_component .sql ' expectations/matchers/ut_comparison_matcher.tps'
187187@@install_component .sql ' expectations/matchers/ut_be_false.tps'
Original file line number Diff line number Diff line change @@ -258,8 +258,6 @@ drop type ut_expectation_result force;
258258
259259drop package ut_event_manager;
260260
261- drop type ut_event_listener force;
262-
263261drop type ut_event_item force;
264262
265263drop type ut_key_value_pairs force;
You can’t perform that action at this time.
0 commit comments