Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
ebf0fa5
[Windows / SQL CE] baselines
Sep 10, 2025
6f53321
[Windows / SQLite (specialized tests)] baselines
Sep 10, 2025
921c038
[Windows / SQL Server 2005] baselines
Sep 10, 2025
ffed369
[Windows / SQLite (both providers)] baselines
Sep 10, 2025
3372030
[Windows / SQL Server 2008] baselines
Sep 10, 2025
314d59a
[Windows / SQL Server 2014] baselines
Sep 10, 2025
87b8436
[Windows / SQL Server 2012] baselines
Sep 10, 2025
81964ec
[Windows / SQL Server 2019] baselines
Sep 10, 2025
4a982c6
[Windows / Access MDB (Jet/ODBC)] baselines
Sep 10, 2025
9226f49
[Linux / DB2 LUW 11.5] baselines
Sep 10, 2025
db2ab0b
[Linux / Firebird 2.5] baselines
Sep 10, 2025
192a0fd
[Windows / Access ACE (OLEDB/ODBC) x86] baselines
Sep 10, 2025
bc36f24
[Linux / Firebird 3.0] baselines
Sep 10, 2025
28af8b8
[Linux / Firebird 4.0] baselines
Sep 10, 2025
58265b8
[Linux / Informix 14.10] baselines
Sep 10, 2025
901d8f2
[Linux / Firebird 5.0] baselines
Sep 10, 2025
07c0b5d
[Linux / ClickHouse Driver] baselines
Sep 10, 2025
d31f90c
[Linux / MariaDB 11] baselines
Sep 10, 2025
f0afb0c
[Linux / ClickHouse MySql] baselines
Sep 10, 2025
4050480
[Windows / SQL Server 2016] baselines
Sep 10, 2025
e7a9dc7
[Windows / SQL Server 2017] baselines
Sep 10, 2025
fc941ce
[Linux / MySQL 9 (both providers)] baselines
Sep 10, 2025
1594d40
[Linux / MySQL 5.7 (both providers)] baselines
Sep 10, 2025
f29a2bc
[Linux / Oracle 11g XE] baselines
Sep 10, 2025
8dd9f11
[Windows / SQL Server 2022] baselines
Sep 10, 2025
f6d05e7
[Linux / PostgreSQL 13] baselines
Sep 10, 2025
d8b4165
[Linux / Oracle 18c] baselines
Sep 10, 2025
4502754
[Linux / Oracle 12c] baselines
Sep 10, 2025
dad4224
[Linux / PostgreSQL 14] baselines
Sep 10, 2025
59cf5fc
[Linux / PostgreSQL 15] baselines
Sep 10, 2025
c7d5c9a
[Windows / SQL Server 2025] baselines
Sep 10, 2025
d06f04a
[Linux / Oracle 23c] baselines
Sep 10, 2025
6464283
[Linux / PostgreSQL 16] baselines
Sep 10, 2025
024c84d
[Linux / Oracle 21c] baselines
Sep 10, 2025
617c7e1
[Linux / ClickHouse Octonica] baselines
Sep 10, 2025
488106b
[Linux / PostgreSQL 17] baselines
Sep 10, 2025
c68819c
[Linux / Oracle 19c] baselines
Sep 10, 2025
6483e3a
[Linux / PostgreSQL 18] baselines
Sep 10, 2025
0fcc08f
[Windows / SQL Server EXTRAS] baselines
Sep 10, 2025
caf841a
[Linux / Sybase ASE 16] baselines
Sep 10, 2025
dfbabd3
[Linux / SAP HANA 2] baselines
Sep 10, 2025
3a61320
[Linux / SQL Server 2019] baselines
Sep 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
INNER JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
INNER JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
LEFT JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
LEFT JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
BeforeExecute
-- Access.Ace.Odbc AccessODBC (asynchronously)

SELECT TOP 3
[r].[PersonID],
[r].[LastName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.Odbc AccessODBC (asynchronously)

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
BeforeExecute
-- Access.Ace.Odbc AccessODBC (asynchronously)

SELECT TOP 3
[r].[PersonID],
[r].[LastName],
[r].[FirstName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.Odbc AccessODBC (asynchronously)

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
INNER JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
INNER JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
LEFT JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
LEFT JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
BeforeExecute
-- Access.Ace.Odbc AccessODBC

SELECT TOP 3
[r].[PersonID],
[r].[LastName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.Odbc AccessODBC

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
BeforeExecute
-- Access.Ace.Odbc AccessODBC

SELECT TOP 3
[r].[PersonID],
[r].[LastName],
[r].[FirstName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.Odbc AccessODBC

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
INNER JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
INNER JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
LEFT JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
LEFT JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([c_2].[ParentID] = [o].[ParentID])
LEFT JOIN [Child] [c_1] ON ([c_1].[ParentID] = [o].[ParentID])

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
BeforeExecute
-- Access.Ace.OleDb AccessOleDb (asynchronously)

SELECT TOP 3
[r].[PersonID],
[r].[LastName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.OleDb AccessOleDb (asynchronously)

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
BeforeExecute
-- Access.Ace.OleDb AccessOleDb (asynchronously)

SELECT TOP 3
[r].[PersonID],
[r].[LastName],
[r].[FirstName]
FROM
[Person] [r]
ORDER BY
[r].[FirstName]

BeforeExecute
-- Access.Ace.OleDb AccessOleDb (asynchronously)

SELECT
[t1].[FirstName],
[t1].[PersonID],
[t1].[LastName],
[t1].[MiddleName],
[t1].[Gender]
FROM
[Person] [t1]

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,9 @@
SELECT
[o].[ParentID],
[o].[Value1],
[c_2].[ParentID],
[c_2].[ChildID]
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Parent] [o]
INNER JOIN (
SELECT DISTINCT
[c_1].[ParentID],
[c_1].[ChildID]
FROM
[Child] [c_1]
) [c_2] ON ([o].[ParentID] = [c_2].[ParentID])
INNER JOIN [Child] [c_1] ON ([o].[ParentID] = [c_1].[ParentID])

Loading