Skip to content

Commit 206297e

Browse files
linq2dbotAzure Pipelines BotMaceWindu
authored
Baselines for linq2db/linq2db#5101 (#1528)
* [Windows / SQLite (specialized tests)] baselines * [Windows / SQL Server 2017] baselines * [Windows / SQL Server 2008] baselines * [Windows / SQL Server 2014] baselines * [Windows / SQL Server 2012] baselines * [Windows / SQLite (both providers)] baselines * [Linux / Oracle 11g XE] baselines * [Windows / SQL Server 2019] baselines * [Windows / SQL Server 2016] baselines * [Windows / SQL Server 2022] baselines * [Linux / Oracle 12c] baselines * [Linux / Oracle 21c] baselines * [Linux / Oracle 18c] baselines * [Windows / SQL Server 2025] baselines * [Linux / Oracle 23c] baselines * [Linux / Oracle 19c] baselines * [Linux / SQL Server EXTRAS] baselines * [Linux / DB2 LUW 11.5] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]> Co-authored-by: MaceWindu <[email protected]>
1 parent 239b56d commit 206297e

File tree

30 files changed

+3159
-0
lines changed

30 files changed

+3159
-0
lines changed
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
BeforeExecute
2+
-- Oracle.11.Managed Oracle11
3+
DECLARE @LanguageId Int32
4+
SET @LanguageId = 1
5+
DECLARE @TextId Int32
6+
SET @TextId = 1
7+
DECLARE @Text Varchar2(3) -- String
8+
SET @Text = 'bbb'
9+
DECLARE @TooltipText Varchar2(3) -- String
10+
SET @TooltipText = 'ccc'
11+
12+
INSERT INTO "TextTranslationDTO"
13+
(
14+
"LanguageId",
15+
"TextId",
16+
"Text",
17+
"TooltipText"
18+
)
19+
VALUES
20+
(
21+
:LanguageId,
22+
:TextId,
23+
:Text,
24+
:TooltipText
25+
)
26+
27+
BeforeExecute
28+
-- Oracle.11.Managed Oracle11
29+
DECLARE @LanguageID Int32
30+
SET @LanguageID = 1
31+
DECLARE @Name Varchar2(4) -- String
32+
SET @Name = 'aaaa'
33+
DECLARE @AlternativeLanguageID Int32
34+
SET @AlternativeLanguageID = 1
35+
36+
INSERT INTO "LanguageDTO"
37+
(
38+
"LanguageID",
39+
"Name",
40+
"AlternativeLanguageID"
41+
)
42+
VALUES
43+
(
44+
:LanguageID,
45+
:Name,
46+
:AlternativeLanguageID
47+
)
48+
49+
BeforeExecute
50+
-- Oracle.11.Managed Oracle11
51+
DECLARE @Id Int32
52+
SET @Id = 1
53+
DECLARE @Nr Int32
54+
SET @Nr = 77
55+
DECLARE @ServerOnlyText Int16
56+
SET @ServerOnlyText = 0
57+
58+
INSERT INTO "TextDTO"
59+
(
60+
"Id",
61+
"Nr",
62+
"ServerOnlyText"
63+
)
64+
VALUES
65+
(
66+
:Id,
67+
:Nr,
68+
:ServerOnlyText
69+
)
70+
71+
BeforeExecute
72+
-- Oracle.11.Managed Oracle11
73+
74+
SELECT
75+
t2."LanguageId",
76+
t2."TextId",
77+
t2."Text",
78+
t2."TooltipText"
79+
FROM
80+
(
81+
SELECT
82+
t1."LanguageId",
83+
t1."TextId",
84+
t1."Text",
85+
t1."TooltipText"
86+
FROM
87+
"TextTranslationDTO" t1
88+
ORDER BY
89+
(
90+
SELECT
91+
COUNT(*)
92+
FROM
93+
"LanguageDTO" l
94+
WHERE
95+
l."AlternativeLanguageID" = t1."LanguageId"
96+
),
97+
(
98+
SELECT
99+
t."ServerOnlyText"
100+
FROM
101+
"TextDTO" t
102+
WHERE
103+
t."Id" = t1."TextId"
104+
)
105+
) t2
106+
WHERE
107+
ROWNUM <= 1
108+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
BeforeExecute
2+
-- Oracle.12.Managed Oracle.Managed Oracle12
3+
DECLARE @LanguageId Int32
4+
SET @LanguageId = 1
5+
DECLARE @TextId Int32
6+
SET @TextId = 1
7+
DECLARE @Text Varchar2(3) -- String
8+
SET @Text = 'bbb'
9+
DECLARE @TooltipText Varchar2(3) -- String
10+
SET @TooltipText = 'ccc'
11+
12+
INSERT INTO "TextTranslationDTO"
13+
(
14+
"LanguageId",
15+
"TextId",
16+
"Text",
17+
"TooltipText"
18+
)
19+
VALUES
20+
(
21+
:LanguageId,
22+
:TextId,
23+
:Text,
24+
:TooltipText
25+
)
26+
27+
BeforeExecute
28+
-- Oracle.12.Managed Oracle.Managed Oracle12
29+
DECLARE @LanguageID Int32
30+
SET @LanguageID = 1
31+
DECLARE @Name Varchar2(4) -- String
32+
SET @Name = 'aaaa'
33+
DECLARE @AlternativeLanguageID Int32
34+
SET @AlternativeLanguageID = 1
35+
36+
INSERT INTO "LanguageDTO"
37+
(
38+
"LanguageID",
39+
"Name",
40+
"AlternativeLanguageID"
41+
)
42+
VALUES
43+
(
44+
:LanguageID,
45+
:Name,
46+
:AlternativeLanguageID
47+
)
48+
49+
BeforeExecute
50+
-- Oracle.12.Managed Oracle.Managed Oracle12
51+
DECLARE @Id Int32
52+
SET @Id = 1
53+
DECLARE @Nr Int32
54+
SET @Nr = 77
55+
DECLARE @ServerOnlyText Int16
56+
SET @ServerOnlyText = 0
57+
58+
INSERT INTO "TextDTO"
59+
(
60+
"Id",
61+
"Nr",
62+
"ServerOnlyText"
63+
)
64+
VALUES
65+
(
66+
:Id,
67+
:Nr,
68+
:ServerOnlyText
69+
)
70+
71+
BeforeExecute
72+
-- Oracle.12.Managed Oracle.Managed Oracle12
73+
74+
SELECT
75+
t1."LanguageId",
76+
t1."TextId",
77+
t1."Text",
78+
t1."TooltipText"
79+
FROM
80+
"TextTranslationDTO" t1
81+
ORDER BY
82+
(
83+
SELECT
84+
COUNT(*)
85+
FROM
86+
"LanguageDTO" l
87+
WHERE
88+
l."AlternativeLanguageID" = t1."LanguageId"
89+
),
90+
(
91+
SELECT
92+
t."ServerOnlyText"
93+
FROM
94+
"TextDTO" t
95+
WHERE
96+
t."Id" = t1."TextId"
97+
)
98+
FETCH NEXT 1 ROWS ONLY
99+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
BeforeExecute
2+
-- Oracle.18.Managed Oracle.Managed Oracle12
3+
DECLARE @LanguageId Int32
4+
SET @LanguageId = 1
5+
DECLARE @TextId Int32
6+
SET @TextId = 1
7+
DECLARE @Text Varchar2(3) -- String
8+
SET @Text = 'bbb'
9+
DECLARE @TooltipText Varchar2(3) -- String
10+
SET @TooltipText = 'ccc'
11+
12+
INSERT INTO "TextTranslationDTO"
13+
(
14+
"LanguageId",
15+
"TextId",
16+
"Text",
17+
"TooltipText"
18+
)
19+
VALUES
20+
(
21+
:LanguageId,
22+
:TextId,
23+
:Text,
24+
:TooltipText
25+
)
26+
27+
BeforeExecute
28+
-- Oracle.18.Managed Oracle.Managed Oracle12
29+
DECLARE @LanguageID Int32
30+
SET @LanguageID = 1
31+
DECLARE @Name Varchar2(4) -- String
32+
SET @Name = 'aaaa'
33+
DECLARE @AlternativeLanguageID Int32
34+
SET @AlternativeLanguageID = 1
35+
36+
INSERT INTO "LanguageDTO"
37+
(
38+
"LanguageID",
39+
"Name",
40+
"AlternativeLanguageID"
41+
)
42+
VALUES
43+
(
44+
:LanguageID,
45+
:Name,
46+
:AlternativeLanguageID
47+
)
48+
49+
BeforeExecute
50+
-- Oracle.18.Managed Oracle.Managed Oracle12
51+
DECLARE @Id Int32
52+
SET @Id = 1
53+
DECLARE @Nr Int32
54+
SET @Nr = 77
55+
DECLARE @ServerOnlyText Int16
56+
SET @ServerOnlyText = 0
57+
58+
INSERT INTO "TextDTO"
59+
(
60+
"Id",
61+
"Nr",
62+
"ServerOnlyText"
63+
)
64+
VALUES
65+
(
66+
:Id,
67+
:Nr,
68+
:ServerOnlyText
69+
)
70+
71+
BeforeExecute
72+
-- Oracle.18.Managed Oracle.Managed Oracle12
73+
74+
SELECT
75+
t1."LanguageId",
76+
t1."TextId",
77+
t1."Text",
78+
t1."TooltipText"
79+
FROM
80+
"TextTranslationDTO" t1
81+
ORDER BY
82+
(
83+
SELECT
84+
COUNT(*)
85+
FROM
86+
"LanguageDTO" l
87+
WHERE
88+
l."AlternativeLanguageID" = t1."LanguageId"
89+
),
90+
(
91+
SELECT
92+
t."ServerOnlyText"
93+
FROM
94+
"TextDTO" t
95+
WHERE
96+
t."Id" = t1."TextId"
97+
)
98+
FETCH NEXT 1 ROWS ONLY
99+

0 commit comments

Comments
 (0)