Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/scripts/create_test_users.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ PROMPT Creating UT3_TESTER - Power-user for testing internal framework code
create user UT3_TESTER identified by "ut3" default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE;
grant create session, create procedure, create type, create table to UT3_TESTER;

# Editioning is enable on test users to validate that utPLSQL works well with editioned schema
alter user UT3_TESTER enable editions;

grant execute on dbms_lock to UT3_TESTER;

PROMPT Granting $UT3_DEVELOP_SCHEMA code to UT3_TESTER
Expand Down Expand Up @@ -52,6 +55,9 @@ PROMPT Creating UT3_USER - minimal privileges user for API testing
create user UT3_USER identified by "ut3" default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE;
grant create session, create procedure, create type, create table to UT3_USER;

# Editioning is enable on test users to validate that utPLSQL works well with editioned schema
alter user UT3_USER enable editions;

PROMPT Grants for starting a debugging session from UT3_USER
grant debug connect session to UT3_USER;
grant debug any procedure to UT3_USER;
Expand Down
10 changes: 10 additions & 0 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ set verify off
alter session set plsql_optimize_level=0;
@${INSTALL_FILE} $UT3_DEVELOP_SCHEMA $UT3_DEVELOP_SCHEMA_PASSWORD
SQL

#Enable editioning on the UT3_DEVELOP schema
time "$SQLCLI" sys/$ORACLE_PWD@//$CONNECTION_STR AS SYSDBA <<-SQL
whenever sqlerror exit failure rollback
set feedback off
set verify off

alter user $UT3_DEVELOP_SCHEMA enable editions;
exit
SQL
2 changes: 1 addition & 1 deletion source/api/be_between.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_between for ut_be_between;
create noneditionable synonym be_between for ut_be_between;
2 changes: 1 addition & 1 deletion source/api/be_empty.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_empty for ut_be_empty;
create noneditionable synonym be_empty for ut_be_empty;
2 changes: 1 addition & 1 deletion source/api/be_false.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_false for ut_be_false;
create noneditionable synonym be_false for ut_be_false;
2 changes: 1 addition & 1 deletion source/api/be_greater_or_equal.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_greater_or_equal for ut_be_greater_or_equal;
create noneditionable synonym be_greater_or_equal for ut_be_greater_or_equal;
2 changes: 1 addition & 1 deletion source/api/be_greater_than.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_greater_than for ut_be_greater_than;
create noneditionable synonym be_greater_than for ut_be_greater_than;
2 changes: 1 addition & 1 deletion source/api/be_less_or_equal.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_less_or_equal for ut_be_less_or_equal;
create noneditionable synonym be_less_or_equal for ut_be_less_or_equal;
2 changes: 1 addition & 1 deletion source/api/be_less_than.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_less_than for ut_be_less_than;
create noneditionable synonym be_less_than for ut_be_less_than;
2 changes: 1 addition & 1 deletion source/api/be_like.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_like for ut_be_like;
create noneditionable synonym be_like for ut_be_like;
2 changes: 1 addition & 1 deletion source/api/be_not_null.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_not_null for ut_be_not_null;
create noneditionable synonym be_not_null for ut_be_not_null;
2 changes: 1 addition & 1 deletion source/api/be_null.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_null for ut_be_null;
create noneditionable synonym be_null for ut_be_null;
2 changes: 1 addition & 1 deletion source/api/be_true.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_true for ut_be_true;
create noneditionable synonym be_true for ut_be_true;
2 changes: 1 addition & 1 deletion source/api/be_within.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_within for ut_be_within;
create noneditionable synonym be_within for ut_be_within;
2 changes: 1 addition & 1 deletion source/api/be_within_pct.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym be_within_pct for ut_be_within_pct;
create noneditionable synonym be_within_pct for ut_be_within_pct;
2 changes: 1 addition & 1 deletion source/api/contain.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym contain for ut_contain;
create noneditionable synonym contain for ut_contain;
2 changes: 1 addition & 1 deletion source/api/equal.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym equal for ut_equal;
create noneditionable synonym equal for ut_equal;
2 changes: 1 addition & 1 deletion source/api/have_count.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym have_count for ut_have_count;
create noneditionable synonym have_count for ut_have_count;
2 changes: 1 addition & 1 deletion source/api/match.syn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create synonym match for ut_match;
create noneditionable synonym match for ut_match;
2 changes: 1 addition & 1 deletion source/api/ut.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut is
create or replace noneditionable package body ut is

/*
utPLSQL - Version 3
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut authid current_user as
create or replace noneditionable package ut authid current_user as

/*
utPLSQL - Version 3
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut_runner.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_runner is
create or replace noneditionable package body ut_runner is

/*
utPLSQL - Version 3
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut_runner.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_runner authid current_user is
create or replace noneditionable package ut_runner authid current_user is

/*
utPLSQL - Version 3
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut_suite_item_info.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_suite_item_info is
create or replace noneditionable type body ut_suite_item_info is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut_suite_item_info.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_suite_item_info as object (
create or replace noneditionable type ut_suite_item_info as object (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/api/ut_suite_items_info.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_suite_items_info as
create or replace noneditionable type ut_suite_items_info as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotated_object.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotated_object as object(
create or replace noneditionable type ut_annotated_object as object(
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotated_objects.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotated_objects as
create or replace noneditionable type ut_annotated_objects as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotation as object(
create or replace noneditionable type ut_annotation as object(
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_cache_manager.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_annotation_cache_manager as
create or replace noneditionable package body ut_annotation_cache_manager as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_cache_manager.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_annotation_cache_manager authid definer as
create or replace noneditionable package ut_annotation_cache_manager authid definer as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_manager.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_annotation_manager as
create or replace noneditionable package body ut_annotation_manager as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_manager.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_annotation_manager authid current_user as
create or replace noneditionable package ut_annotation_manager authid current_user as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_obj_cache_info.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotation_obj_cache_info as object(
create or replace noneditionable type ut_annotation_obj_cache_info as object(
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_objs_cache_info.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotation_objs_cache_info as
create or replace noneditionable type ut_annotation_objs_cache_info as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_parser.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_annotation_parser as
create or replace noneditionable package body ut_annotation_parser as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotation_parser.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_annotation_parser authid current_user as
create or replace noneditionable package ut_annotation_parser authid current_user as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_annotations.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create type ut_annotations
create or replace noneditionable type ut_annotations
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
4 changes: 2 additions & 2 deletions source/core/annotations/ut_trigger_check.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_trigger_check is
create or replace noneditionable package body ut_trigger_check is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand All @@ -22,7 +22,7 @@ create or replace package body ut_trigger_check is
function is_alive return boolean is
pragma autonomous_transaction;
begin
execute immediate 'create or replace synonym '||ut_utils.ut_owner||'.'||gc_check_object_name||' for no_object';
execute immediate 'create or replace noneditionable synonym '||ut_utils.ut_owner||'.'||gc_check_object_name||' for no_object';
return g_is_trigger_live;
end;

Expand Down
2 changes: 1 addition & 1 deletion source/core/annotations/ut_trigger_check.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_trigger_check authid definer is
create or replace noneditionable package ut_trigger_check authid definer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage is
create or replace noneditionable package body ut_coverage is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage authid current_user is
create or replace noneditionable package ut_coverage authid current_user is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_block.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage_block is
create or replace noneditionable package body ut_coverage_block is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_block.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage_block authid current_user is
create or replace noneditionable package ut_coverage_block authid current_user is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage_helper is
create or replace noneditionable package body ut_coverage_helper is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage_helper authid definer is
create or replace noneditionable package ut_coverage_helper authid definer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper_block.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage_helper_block is
create or replace noneditionable package body ut_coverage_helper_block is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper_block.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage_helper_block authid current_user is
create or replace noneditionable package ut_coverage_helper_block authid current_user is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper_profiler.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage_helper_profiler is
create or replace noneditionable package body ut_coverage_helper_profiler is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_helper_profiler.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage_helper_profiler authid definer is
create or replace noneditionable package ut_coverage_helper_profiler authid definer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_profiler.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_coverage_profiler is
create or replace noneditionable package body ut_coverage_profiler is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_profiler.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_coverage_profiler authid current_user is
create or replace noneditionable package ut_coverage_profiler authid current_user is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_reporter_base.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_coverage_reporter_base is
create or replace noneditionable type body ut_coverage_reporter_base is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/coverage/ut_coverage_reporter_base.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_coverage_reporter_base under ut_output_reporter_base(
create or replace noneditionable type ut_coverage_reporter_base under ut_output_reporter_base(
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/events/ut_event_item.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_event_item authid current_user as object (
create or replace noneditionable type ut_event_item authid current_user as object (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/events/ut_event_listener.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_event_listener authid current_user as object (
create or replace noneditionable type ut_event_listener authid current_user as object (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/events/ut_event_manager.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_event_manager as
create or replace noneditionable package body ut_event_manager as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/events/ut_event_manager.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_event_manager authid current_user as
create or replace noneditionable package ut_event_manager authid current_user as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_buffer_base.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_output_buffer_base is
create or replace noneditionable type body ut_output_buffer_base is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_buffer_base.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_buffer_base force authid definer as object(
create or replace noneditionable type ut_output_buffer_base force authid definer as object(
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_bulk_buffer.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_output_bulk_buffer is
create or replace noneditionable type body ut_output_bulk_buffer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_bulk_buffer.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_bulk_buffer under ut_output_buffer_base (
create or replace noneditionable type ut_output_bulk_buffer under ut_output_buffer_base (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_clob_table_buffer.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_output_clob_table_buffer is
create or replace noneditionable type body ut_output_clob_table_buffer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_clob_table_buffer.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_clob_table_buffer under ut_output_buffer_base (
create or replace noneditionable type ut_output_clob_table_buffer under ut_output_buffer_base (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_data_row.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_data_row as object (
create or replace noneditionable type ut_output_data_row as object (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_data_rows.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_data_rows as
create or replace noneditionable type ut_output_data_rows as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_table_buffer.tpb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type body ut_output_table_buffer is
create or replace noneditionable type body ut_output_table_buffer is
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/output_buffers/ut_output_table_buffer.tps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace type ut_output_table_buffer under ut_output_buffer_base (
create or replace noneditionable type ut_output_table_buffer under ut_output_buffer_base (
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/session_context/ut_session_context.pkb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package body ut_session_context as
create or replace noneditionable package body ut_session_context as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
2 changes: 1 addition & 1 deletion source/core/session_context/ut_session_context.pks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create or replace package ut_session_context as
create or replace noneditionable package ut_session_context as
/*
utPLSQL - Version 3
Copyright 2016 - 2026 utPLSQL Project
Expand Down
Loading
Loading