Skip to content

Commit 1dcd729

Browse files
yahondaclaude
andcommitted
Remove XMLType test skip for Oracle 12c+
The skip was added for issue rsim#114 investigation. Remove it to run these tests on Oracle 23c. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5230d25 commit 1dcd729

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

spec/plsql/procedure_spec.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,6 @@
238238
describe "Function or procedure with XMLType parameters" do
239239
before(:all) do
240240
plsql.connect! CONNECTION_PARAMS
241-
@oracle12c_or_higher = !! plsql.connection.select_all(
242-
"select * from product_component_version where product like 'Oracle%' and to_number(substr(version,1,2)) >= 12")
243-
skip "Skip until furtuer investigation for #114" if @oracle12c_or_higher
244241
plsql.execute <<-SQL
245242
CREATE OR REPLACE FUNCTION test_xmltype
246243
( p_xml XMLTYPE )
@@ -261,8 +258,8 @@
261258
end
262259

263260
after(:all) do
264-
plsql.execute "DROP FUNCTION test_xmltype" unless @oracle12c_or_higher
265-
plsql.execute "DROP PROCEDURE test_xmltype2" unless @oracle12c_or_higher
261+
plsql.execute "DROP FUNCTION test_xmltype"
262+
plsql.execute "DROP PROCEDURE test_xmltype2"
266263
plsql.logoff
267264
end
268265

0 commit comments

Comments
 (0)