File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 441441 @conn . exec "CREATE GLOBAL TEMPORARY TABLE #{ tmp_table } (dummy CHAR(1))"
442442 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . not_to raise_error
443443 @conn . drop_all_ruby_temporary_tables
444+ # ORA-00942 message in Oracle 23c includes schema and table name:
445+ # 'table or view "SCHEMA"."TABLE" does not exist'
444446 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . to raise_error ( /table or view.*does not exist/ )
445447 end
446448
449451 @conn . exec "CREATE GLOBAL TEMPORARY TABLE #{ tmp_table } (dummy CHAR(1))"
450452 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . not_to raise_error
451453 @conn . drop_session_ruby_temporary_tables
454+ # ORA-00942 message in Oracle 23c includes schema and table name
452455 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . to raise_error ( /table or view.*does not exist/ )
453456 end
454457
@@ -483,6 +486,7 @@ def reconnect_connection
483486 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . not_to raise_error
484487 @conn . logoff
485488 reconnect_connection
489+ # ORA-00942 message in Oracle 23c includes schema and table name
486490 expect { @conn . select_first ( "SELECT * FROM #{ tmp_table } " ) } . to raise_error ( /table or view.*does not exist/ )
487491 end
488492
You can’t perform that action at this time.
0 commit comments