Skip to content

Commit c32e585

Browse files
linq2dbotAzure Pipelines Bot
andauthored
Baselines for linq2db/linq2db#5146 (#1554)
* [Windows / SQL CE] baselines * [Windows / SQLite (specialized tests)] baselines * [Windows / SQL Server 2005] baselines * [Windows / SQLite (both providers)] baselines * [Windows / Access MDB (Jet/ODBC)] baselines * [Windows / Access ACE (OLEDB/ODBC) x86] baselines * [Windows / SQL Server 2012] baselines * [Windows / SQL Server 2014] baselines * [Windows / SQL Server 2008] baselines * [Linux / Firebird 4.0] baselines * [Linux / DB2 LUW 11.5] baselines * [Linux / Firebird 2.5] baselines * [Linux / Firebird 3.0] baselines * [Linux / Informix 14.10] baselines * [Linux / Firebird 5.0] baselines * [Windows / SQL Server 2016] baselines * [Windows / SQL Server 2019] baselines * [Linux / ClickHouse MySql] baselines * [Windows / SQL Server 2017] baselines * [Linux / ClickHouse Driver] baselines * [Linux / MariaDB 11] baselines * [Windows / SQL Server 2022] baselines * [Linux / MySQL 9 (both providers)] baselines * [Linux / Oracle 11g XE] baselines * [Linux / PostgreSQL 13] baselines * [Linux / PostgreSQL 14] baselines * [Linux / Oracle 12c] baselines * [Linux / Oracle 21c] baselines * [Linux / Oracle 18c] baselines * [Linux / PostgreSQL 15] baselines * [Linux / Oracle 23c] baselines * [Linux / PostgreSQL 16] baselines * [Linux / PostgreSQL 17] baselines * [Linux / Oracle 19c] baselines * [Linux / PostgreSQL 18] baselines * [Linux / ClickHouse Octonica] baselines * [Windows / SQL Server 2025] baselines * [Linux / Sybase ASE 16] baselines * [Windows / SQL Server EXTRAS] baselines * [Linux / SAP HANA 2] baselines * [Linux / MySQL 5.7 (both providers)] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]>
1 parent be28fcc commit c32e585

File tree

229 files changed

+6478
-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.

229 files changed

+6478
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
DECLARE @parentId Int -- Int32
4+
SET @parentId = 1
5+
6+
SELECT
7+
[parent_1].[ParentID],
8+
[parent_1].[ChildID]
9+
FROM
10+
[Parent] [child_1]
11+
INNER JOIN [Child] [parent_1] ON ([parent_1].[ParentID] = [child_1].[ParentID])
12+
WHERE
13+
[child_1].[Value1] = ?
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
INSERT INTO [Parent]
5+
(
6+
[ParentID],
7+
[Value1]
8+
)
9+
VALUES
10+
(
11+
20000,
12+
20000
13+
)
14+
15+
BeforeExecute
16+
-- Access.Ace.Odbc AccessODBC (asynchronously)
17+
18+
INSERT INTO [Child]
19+
(
20+
[ChildID],
21+
[ParentID]
22+
)
23+
VALUES
24+
(
25+
10000,
26+
20000
27+
)
28+
29+
BeforeExecute
30+
-- Access.Ace.Odbc AccessODBC (asynchronously)
31+
DECLARE @ParentID Int -- Int32
32+
SET @ParentID = 20000
33+
34+
UPDATE
35+
[Child] [parent_1],
36+
[Parent] [child_1]
37+
SET
38+
[parent_1].[ParentID] = ?
39+
WHERE
40+
[child_1].[Value1] = 20000 AND [parent_1].[ParentID] = [child_1].[ParentID]
41+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
DECLARE @parentId Int -- Int32
4+
SET @parentId = 1
5+
6+
SELECT
7+
[parent_1].[ParentID],
8+
[parent_1].[ChildID]
9+
FROM
10+
[Parent] [child_1]
11+
INNER JOIN [Child] [parent_1] ON ([parent_1].[ParentID] = [child_1].[ParentID])
12+
WHERE
13+
[child_1].[Value1] = ?
14+
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
4+
INSERT INTO [Parent]
5+
(
6+
[ParentID],
7+
[Value1]
8+
)
9+
VALUES
10+
(
11+
20000,
12+
20000
13+
)
14+
15+
BeforeExecute
16+
-- Access.Ace.Odbc AccessODBC
17+
18+
INSERT INTO [Child]
19+
(
20+
[ChildID],
21+
[ParentID]
22+
)
23+
VALUES
24+
(
25+
10000,
26+
20000
27+
)
28+
29+
BeforeExecute
30+
-- Access.Ace.Odbc AccessODBC
31+
DECLARE @ParentID Int -- Int32
32+
SET @ParentID = 20000
33+
34+
UPDATE
35+
[Child] [parent_1],
36+
[Parent] [child_1]
37+
SET
38+
[parent_1].[ParentID] = ?
39+
WHERE
40+
[child_1].[Value1] = 20000 AND [parent_1].[ParentID] = [child_1].[ParentID]
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb (asynchronously)
3+
DECLARE @parentId Integer -- Int32
4+
SET @parentId = 1
5+
6+
SELECT
7+
[parent_1].[ParentID],
8+
[parent_1].[ChildID]
9+
FROM
10+
[Parent] [child_1]
11+
INNER JOIN [Child] [parent_1] ON ([parent_1].[ParentID] = [child_1].[ParentID])
12+
WHERE
13+
[child_1].[Value1] = @parentId
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb (asynchronously)
3+
4+
INSERT INTO [Parent]
5+
(
6+
[ParentID],
7+
[Value1]
8+
)
9+
VALUES
10+
(
11+
20000,
12+
20000
13+
)
14+
15+
BeforeExecute
16+
-- Access.Ace.OleDb AccessOleDb (asynchronously)
17+
18+
INSERT INTO [Child]
19+
(
20+
[ChildID],
21+
[ParentID]
22+
)
23+
VALUES
24+
(
25+
10000,
26+
20000
27+
)
28+
29+
BeforeExecute
30+
-- Access.Ace.OleDb AccessOleDb (asynchronously)
31+
DECLARE @ParentID Integer -- Int32
32+
SET @ParentID = 20000
33+
34+
UPDATE
35+
[Child] [parent_1],
36+
[Parent] [child_1]
37+
SET
38+
[parent_1].[ParentID] = @ParentID
39+
WHERE
40+
[child_1].[Value1] = 20000 AND [parent_1].[ParentID] = [child_1].[ParentID]
41+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb
3+
DECLARE @parentId Integer -- Int32
4+
SET @parentId = 1
5+
6+
SELECT
7+
[parent_1].[ParentID],
8+
[parent_1].[ChildID]
9+
FROM
10+
[Parent] [child_1]
11+
INNER JOIN [Child] [parent_1] ON ([parent_1].[ParentID] = [child_1].[ParentID])
12+
WHERE
13+
[child_1].[Value1] = @parentId
14+
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb
3+
4+
INSERT INTO [Parent]
5+
(
6+
[ParentID],
7+
[Value1]
8+
)
9+
VALUES
10+
(
11+
20000,
12+
20000
13+
)
14+
15+
BeforeExecute
16+
-- Access.Ace.OleDb AccessOleDb
17+
18+
INSERT INTO [Child]
19+
(
20+
[ChildID],
21+
[ParentID]
22+
)
23+
VALUES
24+
(
25+
10000,
26+
20000
27+
)
28+
29+
BeforeExecute
30+
-- Access.Ace.OleDb AccessOleDb
31+
DECLARE @ParentID Integer -- Int32
32+
SET @ParentID = 20000
33+
34+
UPDATE
35+
[Child] [parent_1],
36+
[Parent] [child_1]
37+
SET
38+
[parent_1].[ParentID] = @ParentID
39+
WHERE
40+
[child_1].[Value1] = 20000 AND [parent_1].[ParentID] = [child_1].[ParentID]
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BeforeExecute
2+
-- Access.Jet.Odbc AccessODBC (asynchronously)
3+
DECLARE @parentId Int -- Int32
4+
SET @parentId = 1
5+
6+
SELECT
7+
[parent_1].[ParentID],
8+
[parent_1].[ChildID]
9+
FROM
10+
[Parent] [child_1]
11+
INNER JOIN [Child] [parent_1] ON ([parent_1].[ParentID] = [child_1].[ParentID])
12+
WHERE
13+
[child_1].[Value1] = ?
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
BeforeExecute
2+
-- Access.Jet.Odbc AccessODBC (asynchronously)
3+
4+
INSERT INTO [Parent]
5+
(
6+
[ParentID],
7+
[Value1]
8+
)
9+
VALUES
10+
(
11+
20000,
12+
20000
13+
)
14+
15+
BeforeExecute
16+
-- Access.Jet.Odbc AccessODBC (asynchronously)
17+
18+
INSERT INTO [Child]
19+
(
20+
[ChildID],
21+
[ParentID]
22+
)
23+
VALUES
24+
(
25+
10000,
26+
20000
27+
)
28+
29+
BeforeExecute
30+
-- Access.Jet.Odbc AccessODBC (asynchronously)
31+
DECLARE @ParentID Int -- Int32
32+
SET @ParentID = 20000
33+
34+
UPDATE
35+
[Child] [parent_1],
36+
[Parent] [child_1]
37+
SET
38+
[parent_1].[ParentID] = ?
39+
WHERE
40+
[child_1].[Value1] = 20000 AND [parent_1].[ParentID] = [child_1].[ParentID]
41+

0 commit comments

Comments
 (0)