Skip to content

Commit f27fcce

Browse files
author
Azure Pipelines Bot
committed
[Linux / Oracle 21c] baselines
1 parent 0b8672c commit f27fcce

10 files changed

+3208
-80
lines changed

Oracle.21.Managed.LinqService/Tests/Linq/PredicateTests/Tests.Linq.PredicateTests.Test_ConditionOptimization(Oracle.21.Managed.LinqService,False).sql

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ SELECT
3636
FROM
3737
"BooleanTable" r
3838
WHERE
39-
(r."Value5" <> 0 OR r."Value5" IS NULL) AND r."Value1" > r."Value4" OR
40-
r."Value1" <= r."Value4" OR r."Value4" IS NULL
39+
r."Value5" <> 0 OR
40+
r."Value5" IS NULL OR
41+
r."Value1" <= r."Value4" OR
42+
r."Value4" IS NULL
4143

4244
BeforeExecute
4345
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -63,8 +65,7 @@ SELECT
6365
FROM
6466
"BooleanTable" r
6567
WHERE
66-
r."Value5" > 0 AND r."Value1" > r."Value4" OR r."Value1" <= r."Value4" OR
67-
r."Value4" IS NULL
68+
r."Value5" > 0 OR r."Value1" <= r."Value4" OR r."Value4" IS NULL
6869

6970
BeforeExecute
7071
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -90,8 +91,7 @@ SELECT
9091
FROM
9192
"BooleanTable" r
9293
WHERE
93-
r."Value5" >= 0 AND r."Value1" > r."Value4" OR r."Value1" <= r."Value4" OR
94-
r."Value4" IS NULL
94+
r."Value5" >= 0 OR r."Value1" <= r."Value4" OR r."Value4" IS NULL
9595

9696
BeforeExecute
9797
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -351,8 +351,10 @@ SELECT
351351
FROM
352352
"BooleanTable" r
353353
WHERE
354-
(r."Value5" <> 0 OR r."Value5" IS NULL) AND r."Value1" > r."Value4" OR
355-
r."Value1" <= r."Value4" OR r."Value4" IS NULL
354+
r."Value5" <> 0 OR
355+
r."Value5" IS NULL OR
356+
r."Value1" <= r."Value4" OR
357+
r."Value4" IS NULL
356358

357359
BeforeExecute
358360
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -826,7 +828,7 @@ SELECT
826828
FROM
827829
"BooleanTable" r
828830
WHERE
829-
r."Value1" > r."Value4" OR (r."Value5" <> 0 OR r."Value5" IS NULL) AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
831+
r."Value1" > r."Value4" OR r."Value5" <> 0 OR r."Value5" IS NULL
830832

831833
BeforeExecute
832834
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -852,7 +854,7 @@ SELECT
852854
FROM
853855
"BooleanTable" r
854856
WHERE
855-
r."Value1" > r."Value4" OR r."Value5" > 0 AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
857+
r."Value1" > r."Value4" OR r."Value5" > 0
856858

857859
BeforeExecute
858860
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -878,7 +880,7 @@ SELECT
878880
FROM
879881
"BooleanTable" r
880882
WHERE
881-
r."Value1" > r."Value4" OR r."Value5" >= 0 AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
883+
r."Value1" > r."Value4" OR r."Value5" >= 0
882884

883885
BeforeExecute
884886
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -1141,7 +1143,7 @@ SELECT
11411143
FROM
11421144
"BooleanTable" r
11431145
WHERE
1144-
r."Value1" > r."Value4" OR (r."Value5" <> 0 OR r."Value5" IS NULL) AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
1146+
r."Value1" > r."Value4" OR r."Value5" <> 0 OR r."Value5" IS NULL
11451147

11461148
BeforeExecute
11471149
-- Oracle.21.Managed Oracle.Managed Oracle12

Oracle.21.Managed.LinqService/Tests/Linq/PredicateTests/Tests.Linq.PredicateTests.Test_ConditionOptimization(Oracle.21.Managed.LinqService,True).sql

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ SELECT
3636
FROM
3737
"BooleanTable" r
3838
WHERE
39-
(r."Value5" <> 0 OR r."Value5" IS NULL) AND r."Value1" > r."Value4" OR
40-
r."Value1" <= r."Value4" OR r."Value4" IS NULL
39+
r."Value5" <> 0 OR
40+
r."Value5" IS NULL OR
41+
r."Value1" <= r."Value4" OR
42+
r."Value4" IS NULL
4143

4244
BeforeExecute
4345
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -63,8 +65,7 @@ SELECT
6365
FROM
6466
"BooleanTable" r
6567
WHERE
66-
r."Value5" > 0 AND r."Value1" > r."Value4" OR r."Value1" <= r."Value4" OR
67-
r."Value4" IS NULL
68+
r."Value5" > 0 OR r."Value1" <= r."Value4" OR r."Value4" IS NULL
6869

6970
BeforeExecute
7071
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -90,8 +91,7 @@ SELECT
9091
FROM
9192
"BooleanTable" r
9293
WHERE
93-
r."Value5" >= 0 AND r."Value1" > r."Value4" OR r."Value1" <= r."Value4" OR
94-
r."Value4" IS NULL
94+
r."Value5" >= 0 OR r."Value1" <= r."Value4" OR r."Value4" IS NULL
9595

9696
BeforeExecute
9797
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -351,8 +351,10 @@ SELECT
351351
FROM
352352
"BooleanTable" r
353353
WHERE
354-
(r."Value5" <> 0 OR r."Value5" IS NULL) AND r."Value1" > r."Value4" OR
355-
r."Value1" <= r."Value4" OR r."Value4" IS NULL
354+
r."Value5" <> 0 OR
355+
r."Value5" IS NULL OR
356+
r."Value1" <= r."Value4" OR
357+
r."Value4" IS NULL
356358

357359
BeforeExecute
358360
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -826,7 +828,7 @@ SELECT
826828
FROM
827829
"BooleanTable" r
828830
WHERE
829-
r."Value1" > r."Value4" OR (r."Value5" <> 0 OR r."Value5" IS NULL) AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
831+
r."Value1" > r."Value4" OR r."Value5" <> 0 OR r."Value5" IS NULL
830832

831833
BeforeExecute
832834
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -852,7 +854,7 @@ SELECT
852854
FROM
853855
"BooleanTable" r
854856
WHERE
855-
r."Value1" > r."Value4" OR r."Value5" > 0 AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
857+
r."Value1" > r."Value4" OR r."Value5" > 0
856858

857859
BeforeExecute
858860
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -878,7 +880,7 @@ SELECT
878880
FROM
879881
"BooleanTable" r
880882
WHERE
881-
r."Value1" > r."Value4" OR r."Value5" >= 0 AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
883+
r."Value1" > r."Value4" OR r."Value5" >= 0
882884

883885
BeforeExecute
884886
-- Oracle.21.Managed Oracle.Managed Oracle12
@@ -1141,7 +1143,7 @@ SELECT
11411143
FROM
11421144
"BooleanTable" r
11431145
WHERE
1144-
r."Value1" > r."Value4" OR (r."Value5" <> 0 OR r."Value5" IS NULL) AND (r."Value1" <= r."Value4" OR r."Value4" IS NULL)
1146+
r."Value1" > r."Value4" OR r."Value5" <> 0 OR r."Value5" IS NULL
11451147

11461148
BeforeExecute
11471149
-- Oracle.21.Managed Oracle.Managed Oracle12

0 commit comments

Comments
 (0)