- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是ORACLE文档提供的一个PL/SQL基本 block 的定义。
A basic block refers to a single entry single exit block of PL/SQL code
这是网上对基本 block 的定义
Basic block is a set of statements that always executes in a sequence one after the other. The characteristics of basic blocks are- They do not contain any kind of jump statements in them. There is no possibility of branching or getting halted in the middle. All the statements execute in the same order they appear.
我正在尝试使用 DBMS_PLSQL_CODE_COVERAGE 查找 PL/SQL 代码的代码覆盖率包,这个包允许找到 PL/SQL block 级覆盖。这里我对IF-ELSIF-ELSE的代码覆盖率有些疑惑。最主要的是 IF-ELSIF-ELSE 的 ELSE block 不被视为基本 block
。请引用以下代码。
这是我的第一个例子。在第二列中,所有值(0 和 1)代表一个基本 block 。在这里您可以清楚地看到 IF 和 ELSE 条件都算作基本 block ,这对我来说非常公平。
现在,这就是困扰我的地方。请引用以下代码。
在这里你可以看到所有的 IF 和 ELSIF block 都算作基本 block ,这没问题。但是 ELSE block 不被认为是基本 block ,也就是说,根据基本 block 的定义,如果执行到最后一个 ELSIF block ,则无论 ELSE 的哪个部分也被执行。这会影响代码覆盖率。
但在实际执行中,并没有发生这种情况。但是 DBMS_PLSQL_CODE_COVERAGE 包给了我这个输出。有人可以解释为什么会这样吗?我不知道这个包的内部实现。我所知道的是它正在使用 DBMS_PROFILER 来获取代码覆盖率。
如果您对此感到好奇,这里是哪个查询为我提供了上述表格的查询。
SELECT LISTAGG(ccb.col, ',') WITHIN GROUP (ORDER BY ccb.col) AS col,
LISTAGG(ccb.covered, ',') WITHIN GROUP (ORDER BY ccb.col) AS covered,
s.line,
LISTAGG(ccb.not_feasible, ',') WITHIN GROUP (ORDER BY ccb.col) AS not_feasible,
s.text
FROM user_source s
JOIN dbmspcc_units ccu ON s.name = ccu.name AND s.type = ccu.type
LEFT OUTER JOIN dbmspcc_blocks ccb ON ccu.run_id = ccb.run_id AND ccu.object_id = ccb.object_id AND s.line = ccb.line
WHERE s.name = 'DEMO_UTILITY_TST'
AND s.type = 'PACKAGE BODY'
AND ccu.run_id = 248
GROUP BY s.line, s.text
ORDER BY 3;
最佳答案
检查您的 plsql_optimize_level
.当这是 2 或更高时,编译器可以显着重新排列您的代码。作为docs say :
0 Maintains the evaluation order and hence the pattern of sideeffects, exceptions, and package initializations of Oracle9i andearlier releases. Also removes the new semantic identity ofBINARY_INTEGER and PLS_INTEGER and restores the earlier rules for theevaluation of integer expressions. Although code will run somewhatfaster than it did in Oracle9i, use of level 0 will forfeit most ofthe performance gains of PL/SQL in Oracle Database 10g.
1 Applies a wide range of optimizations to PL/SQL programsincluding the elimination of unnecessary computations and exceptions,but generally does not move source code out of its original sourceorder.
2 Applies a wide range of modern optimization techniques beyondthose of level 1 including changes which may move source coderelatively far from its original location.
3 Applies a wide range of optimization techniques beyond those oflevel 2, automatically including techniques not specificallyrequested.
在您的示例中,第一个 if
和 else
分支机构 return -1
.因此,编译器将它们合并到 2 级或更高级别的一个 block 中。
举个极端的例子。 if
和 else
下面函数中的分支 return 0
.函数中没有其他代码。
在 plsql_optimize_level = 1
, block 不变。因此,代码覆盖率报告均已覆盖(假设进行了适当的测试):
alter session set plsql_optimize_level = 1;
create or replace function f ( p int )
return int as
retval int;
begin
if p < 10 then
return 0;
else
return 0;
end if;
end f;
/
declare
run_id pls_integer;
begin
dbms_plsql_code_coverage.create_coverage_tables ( true );
run_id := dbms_plsql_code_coverage.start_coverage('TEST');
dbms_output.put_line ( f ( 9 ) );
dbms_output.put_line ( f ( 99 ) );
dbms_plsql_code_coverage.stop_coverage;
end;
/
select max(ccb.covered) as covered,
s.line,
max(ccb.covered) as not_feasible,
rtrim ( s.text, chr(10) ) text
from user_source s
join dbmspcc_units ccu
on s.name = ccu.name and s.type = ccu.type
left outer join dbmspcc_blocks ccb
on ccu.run_id = ccb.run_id and ccu.object_id = ccb.object_id and s.line = ccb.line
group by s.line, s.text
order by s.line;
COVERED LINE NOT_FEASIBLE TEXT
---------- ---------- ------------ --------------------------------------------------
1 1 1 function f ( p int )
<null> 2 <null> return int as
<null> 3 <null> retval int;
<null> 4 <null> begin
<null> 5 <null> if p < 10 then
1 6 1 return 0;
<null> 7 <null> else
1 8 1 return 0;
<null> 9 <null> end if;
<null> 10 <null> end f;
但是将覆盖率增加到 2,编译器会将它们合并在一起。代码覆盖率报告均未被覆盖!
alter session set plsql_optimize_level = 2;
alter function f compile;
declare
run_id pls_integer;
begin
dbms_plsql_code_coverage.create_coverage_tables ( true );
run_id := dbms_plsql_code_coverage.start_coverage('TEST');
dbms_output.put_line ( f ( 9 ) );
dbms_output.put_line ( f ( 99 ) );
dbms_plsql_code_coverage.stop_coverage;
end;
/
select max(ccb.covered) as covered,
s.line,
max(ccb.covered) as not_feasible,
rtrim ( s.text, chr(10) ) text
from user_source s
join dbmspcc_units ccu
on s.name = ccu.name and s.type = ccu.type
left outer join dbmspcc_blocks ccb
on ccu.run_id = ccb.run_id and ccu.object_id = ccb.object_id and s.line = ccb.line
group by s.line, s.text
order by s.line;
COVERED LINE NOT_FEASIBLE TEXT
---------- ---------- ------------ --------------------------------------------------
1 1 1 function f ( p int )
<null> 2 <null> return int as
<null> 3 <null> retval int;
<null> 4 <null> begin
<null> 5 <null> if p < 10 then
<null> 6 <null> return 0;
<null> 7 <null> else
<null> 8 <null> return 0;
<null> 9 <null> end if;
<null> 10 <null> end f;
TL;DR 集 plsql_optimize_level = 1
在运行代码覆盖率测试之前。
关于sql - PL/SQL : IF-ELSIF-ELSE -> ELSE block is not considered as a basic block,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70105070/
SQL、PL-SQL 和 T-SQL 之间有什么区别? 谁能解释一下这三者之间的区别,并提供每一个的相关使用场景? 最佳答案 SQL 是一种对集合进行操作的查询语言。 它或多或少是标准化的,几乎所有关
这个问题已经有答案了: What is the difference between SQL, PL-SQL and T-SQL? (6 个回答) 已关闭 9 年前。 我对 SQL 的了解足以完成我的
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列有一个默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任
我有一个可能属于以下类型的字符串 string expected result 15-th-rp 15 15/12-rp 12 15-12-th
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 9年前关闭
我有一个存储过程(称为 sprocGetArticles),它从文章表中返回文章列表。这个存储过程没有任何参数。 用户可以对每篇文章发表评论,我将这些评论存储在由文章 ID 链接的评论表中。 有什么方
我目前正在做一个 *cough*Oracle*cough* 数据库主题。讲师介绍embedded SQL作为让其他语言(例如 C、C++)与(Oracle)数据库交互的方式。 我自己做了一些数据库工作
SQL Server 中 SQL 语句的最大长度是多少?这个长度是否取决于 SQL Server 的版本? 例如,在 DECLARE @SQLStatement NVARCHAR(MAX) = N'S
这个问题已经有答案了: Simple way to transpose columns and rows in SQL? (9 个回答) 已关闭 8 年前。 CallType
预先感谢您对此提供的任何帮助。 假设我有一个查询,可以比较跨年的数据,从某个任意年份开始,永无止境(进入 future ),每年同一时期直到最后一个完整的月份(其特点是一月数据永远不会显示至 2 月
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列的默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任何数
下面是我试图用来检查存储过程是否不存在然后创建过程的 sql。它会抛出一个错误:Incorrect syntax near the keyword 'PROCEDURE' IF NOT EXISTS
我有一个同事声称动态 SQL 在许多情况下比静态 SQL 执行得更快,所以我经常看到 DSQL 到处都是。除了明显的缺点,比如在运行之前无法检测到错误并且更难阅读,这是否准确?当我问他为什么一直使用
来自 lobodava 的动态 SQL 查询是: declare @sql nvarchar(4000) = N';with cteColumnts (ORDINAL_POSITION, CO
使用 SQL Server 中的存储过程执行动态 SQL 命令的现实优点和缺点是什么 EXEC (@SQL) 对比 EXEC SP_EXECUTESQL @SQL ? 最佳答案 sp_executes
我有这个有效的 SQL 查询: select sum(dbos.Points) as Points, dboseasons.Year from dbo.StatLines dbos i
我正在调试一些构建成功运行的 SQL 命令的代码。 然而,在查询结束时,查询结果似乎被写入了一个文本文件。 完整的查询如下 echo SELECT DATE,DATETABLE,DATE,APPDAT
我有一些创建表的 .sql 文件(MS SQL 数据库): 表_1.sql: IF OBJECT_ID (N'my_schema.table1', N'U') IS NOT NULL DROP TAB
我写了下面的 SQL 存储过程,它一直给我错误@pid = SELECT MAX(... 整个过程是: Alter PROCEDURE insert_partyco @pname varchar(20
我在 SQL Server 2005 中有包含两列 Fruit 和 Color 的表,如下所示 Fruit Colour Apple Red Orange
我是一名优秀的程序员,十分优秀!