Skip to content

Commit d3e930b

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

File tree

124 files changed

+5146
-26
lines changed

Some content is hidden

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

124 files changed

+5146
-26
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Ace.Odbc AccessODBC
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.Odbc AccessODBC
23+
DECLARE @UserId Int -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = ?
32+
33+
BeforeExecute
34+
-- Access.Ace.Odbc AccessODBC
35+
DECLARE @UserId Int -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = ?
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Ace.Odbc AccessODBC
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.Odbc AccessODBC
23+
DECLARE @UserId Int -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = ?
32+
33+
BeforeExecute
34+
-- Access.Ace.Odbc AccessODBC
35+
DECLARE @UserId Int -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = ?
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Ace.OleDb AccessOleDb
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.OleDb AccessOleDb
23+
DECLARE @UserId Integer -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = @UserId
32+
33+
BeforeExecute
34+
-- Access.Ace.OleDb AccessOleDb
35+
DECLARE @UserId Integer -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = @UserId
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Ace.OleDb AccessOleDb
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Ace.OleDb AccessOleDb
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.OleDb AccessOleDb
23+
DECLARE @UserId Integer -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = @UserId
32+
33+
BeforeExecute
34+
-- Access.Ace.OleDb AccessOleDb
35+
DECLARE @UserId Integer -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = @UserId
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Jet.Odbc AccessODBC
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Jet.Odbc AccessODBC
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Jet.Odbc AccessODBC
23+
DECLARE @UserId Int -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = ?
32+
33+
BeforeExecute
34+
-- Access.Jet.Odbc AccessODBC
35+
DECLARE @UserId Int -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = ?
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Jet.Odbc AccessODBC
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Jet.Odbc AccessODBC
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Jet.Odbc AccessODBC
23+
DECLARE @UserId Int -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = ?
32+
33+
BeforeExecute
34+
-- Access.Jet.Odbc AccessODBC
35+
DECLARE @UserId Int -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = ?
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Jet.OleDb AccessOleDb
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Jet.OleDb AccessOleDb
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Jet.OleDb AccessOleDb
23+
DECLARE @UserId Integer -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = @UserId
32+
33+
BeforeExecute
34+
-- Access.Jet.OleDb AccessOleDb
35+
DECLARE @UserId Integer -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = @UserId
44+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
BeforeExecute
2+
-- Access.Jet.OleDb AccessOleDb
3+
4+
SELECT TOP 2
5+
[t1].[Id]
6+
FROM
7+
[TransactionLine] [t1]
8+
WHERE
9+
[t1].[Id] = 2
10+
11+
BeforeExecute
12+
-- Access.Jet.OleDb AccessOleDb
13+
14+
SELECT TOP 2
15+
[t1].[Id]
16+
FROM
17+
[TransactionLine] [t1]
18+
WHERE
19+
[t1].[Id] = 2
20+
21+
BeforeExecute
22+
-- Access.Jet.OleDb AccessOleDb
23+
DECLARE @UserId Integer -- Int32
24+
SET @UserId = 2
25+
26+
SELECT TOP 2
27+
[x].[Id]
28+
FROM
29+
[TransactionLine] [x]
30+
WHERE
31+
[x].[Id] = @UserId
32+
33+
BeforeExecute
34+
-- Access.Jet.OleDb AccessOleDb
35+
DECLARE @UserId Integer -- Int32
36+
SET @UserId = 2
37+
38+
SELECT TOP 2
39+
[x].[Id]
40+
FROM
41+
[TransactionLine] [x]
42+
WHERE
43+
[x].[Id] = @UserId
44+

0 commit comments

Comments
 (0)