Skip to content

Commit f4c2578

Browse files
linq2dbotAzure Pipelines Bot
andauthored
Baselines for linq2db/linq2db#5134 (#1551)
* [Windows / SQLite (specialized tests)] baselines * [Windows / SQL Server 2005] baselines * [Windows / SQLite (both providers)] baselines * [Windows / SQL Server 2008] baselines * [Windows / SQL Server 2012] baselines * [Windows / SQL Server 2014] baselines * [Linux / DB2 LUW 11.5] baselines * [Linux / Firebird 2.5] baselines * [Linux / Firebird 4.0] baselines * [Linux / Firebird 5.0] baselines * [Linux / Firebird 3.0] baselines * [Linux / Informix 14.10] baselines * [Windows / SQL Server 2017] baselines * [Linux / ClickHouse MySql] baselines * [Windows / SQL Server 2019] baselines * [Linux / MariaDB 11] baselines * [Windows / SQL Server 2016] baselines * [Linux / MySQL 9 (both providers)] baselines * [Linux / PostgreSQL 14] baselines * [Windows / SQL Server 2022] baselines * [Linux / PostgreSQL 13] baselines * [Linux / ClickHouse Octonica] baselines * [Linux / PostgreSQL 15] baselines * [Windows / SQL Server EXTRAS] baselines * [Linux / PostgreSQL 17] baselines * [Windows / SQL Server 2025] baselines * [Linux / PostgreSQL 16] baselines * [Linux / PostgreSQL 18] baselines * [Linux / ClickHouse Driver] baselines * [Linux / Oracle 12c] baselines * [Linux / Oracle 21c] baselines * [Linux / Oracle 23c] baselines * [Linux / ClickHouse Octonica] baselines * [Linux / Oracle 18c] baselines * [Linux / Oracle 19c] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]>
1 parent 0aca019 commit f4c2578

File tree

184 files changed

+9576
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+9576
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.Driver ClickHouse
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.Driver ClickHouse
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.Driver ClickHouse
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.Driver ClickHouse
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.MySql ClickHouse (asynchronously)
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.MySql ClickHouse (asynchronously)
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.MySql ClickHouse (asynchronously)
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.MySql ClickHouse (asynchronously)
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.MySql ClickHouse
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.MySql ClickHouse
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.MySql ClickHouse
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.MySql ClickHouse
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.Octonica ClickHouse (asynchronously)
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.Octonica ClickHouse (asynchronously)
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- ClickHouse.Octonica ClickHouse (asynchronously)
3+
4+
WITH RECURSIVE x AS
5+
(
6+
SELECT
7+
toInt32(1) as Counter,
8+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
9+
UNION ALL
10+
SELECT
11+
t1.Counter + 1 as Counter,
12+
addDays(t1.Date_1, toFloat64(1)) as Date_1
13+
FROM
14+
x t1
15+
WHERE
16+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
17+
)
18+
SELECT
19+
t2.Counter,
20+
t2.Date_1
21+
FROM
22+
x t2
23+
24+
BeforeExecute
25+
-- ClickHouse.Octonica ClickHouse (asynchronously)
26+
27+
WITH RECURSIVE x AS
28+
(
29+
SELECT
30+
toInt32(1) as Counter,
31+
toDateTime64(toDateTime64('2020-02-29 00:00:00.0000000', 7), 7) as Date_1
32+
UNION ALL
33+
SELECT
34+
t1.Counter + 1 as Counter,
35+
addDays(t1.Date_1, toFloat64(1)) as Date_1
36+
FROM
37+
x t1
38+
WHERE
39+
addDays(t1.Date_1, toFloat64(1)) < toDateTime64('2020-03-10 00:00:00.0000000', 7)
40+
)
41+
SELECT
42+
t2.Counter,
43+
t2.Date_1
44+
FROM
45+
x t2
46+

0 commit comments

Comments
 (0)