Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e37a9d9
[Windows / SQL CE] baselines
Dec 6, 2025
a9de65e
[Windows / SQL Server 2005] baselines
Dec 6, 2025
9393a70
[Windows / SQLite (specialized tests)] baselines
Dec 6, 2025
c0aebd9
[Windows / SQL Server 2008] baselines
Dec 6, 2025
a29529c
[Windows / SQLite (both providers)] baselines
Dec 6, 2025
c911a9c
[Windows / SQL Server 2014] baselines
Dec 6, 2025
2c3ea1e
[Windows / SQL Server 2012] baselines
Dec 6, 2025
44f4de3
[Windows / Access MDB (Jet/ODBC)] baselines
Dec 6, 2025
b40906c
[Windows / SQL Server 2019] baselines
Dec 6, 2025
c8d230b
[Windows / Access ACE (OLEDB/ODBC) x86] baselines
Dec 6, 2025
735383b
[Linux / Firebird 3.0] baselines
Dec 6, 2025
f3bfe1e
[Linux / Firebird 2.5] baselines
Dec 6, 2025
ffa6867
[Linux / Firebird 4.0] baselines
Dec 6, 2025
dcb4085
[Linux / Firebird 5.0] baselines
Dec 6, 2025
70af0db
[Linux / ClickHouse Driver] baselines
Dec 6, 2025
c14c9d5
[Linux / MariaDB 11] baselines
Dec 6, 2025
3ef3c06
[Linux / ClickHouse MySql] baselines
Dec 6, 2025
c56d897
[Linux / MySQL 5.7 (both providers)] baselines
Dec 6, 2025
80f1e62
[Linux / MySQL 9 (both providers)] baselines
Dec 6, 2025
1681743
[Windows / SQL Server 2016] baselines
Dec 6, 2025
e57dbc0
[Linux / Oracle 12c] baselines
Dec 6, 2025
979e3ea
[Linux / Oracle 11g XE] baselines
Dec 6, 2025
8fcdc2c
[Windows / SQL Server 2025] baselines
Dec 6, 2025
ec86274
[Linux / Oracle 19c] baselines
Dec 6, 2025
c9ad357
[Linux / PostgreSQL 14] baselines
Dec 6, 2025
3fbfc0f
[Linux / Oracle 18c] baselines
Dec 6, 2025
74c6c72
[Windows / SQL Server 2017] baselines
Dec 6, 2025
24bdced
[Linux / ClickHouse Octonica] baselines
Dec 6, 2025
cd894c4
[Linux / Oracle 21c] baselines
Dec 6, 2025
3959688
[Linux / PostgreSQL 13] baselines
Dec 6, 2025
3280abc
[Linux / PostgreSQL 15] baselines
Dec 6, 2025
2606cd4
[Linux / Oracle 23c] baselines
Dec 6, 2025
f16659e
[Linux / PostgreSQL 17] baselines
Dec 6, 2025
32839e0
[Windows / SQL Server 2022] baselines
Dec 6, 2025
964c248
[Linux / PostgreSQL 18] baselines
Dec 6, 2025
fd75acc
[Linux / PostgreSQL 16] baselines
Dec 6, 2025
0e953cb
[Linux / Sybase ASE 16] baselines
Dec 6, 2025
0e98216
[Linux / SQLite (both providers)] baselines
Dec 6, 2025
cae6d63
[Windows / SQL Server EXTRAS] baselines
Dec 6, 2025
304bf02
[Linux / SAP HANA 2] baselines
Dec 6, 2025
b94b6c4
[Linux / Informix 14.10] baselines
Dec 6, 2025
8884b30
[Linux / DB2 LUW 11.5] baselines
Dec 6, 2025
75234d1
Merge branch 'master' into baselines/pr_5238
MaceWindu Dec 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Access.Ace.Odbc AccessODBC

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Access.Ace.OleDb AccessOleDb

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Access.Jet.Odbc AccessODBC

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Access.Jet.OleDb AccessOleDb

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- ClickHouse.Driver ClickHouse

SELECT
p.Value1
FROM
Parent p
WHERE
p.ParentID <= 2
ORDER BY
p.ParentID

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- ClickHouse.MySql ClickHouse

SELECT
p.Value1
FROM
Parent p
WHERE
p.ParentID <= 2
ORDER BY
p.ParentID

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- ClickHouse.Octonica ClickHouse

SELECT
p.Value1
FROM
Parent p
WHERE
p.ParentID <= 2
ORDER BY
p.ParentID

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- DB2 DB2.LUW DB2LUW

SELECT
"p"."Value1"
FROM
"Parent" "p"
WHERE
"p"."ParentID" <= 2
ORDER BY
"p"."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Firebird.2.5 Firebird

SELECT
"p"."Value1"
FROM
"Parent" "p"
WHERE
"p"."ParentID" <= 2
ORDER BY
"p"."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Firebird.3 Firebird3

SELECT
"p"."Value1"
FROM
"Parent" "p"
WHERE
"p"."ParentID" <= 2
ORDER BY
"p"."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Firebird.4 Firebird4

SELECT
"p"."Value1"
FROM
"Parent" "p"
WHERE
"p"."ParentID" <= 2
ORDER BY
"p"."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Firebird.5 Firebird4

SELECT
"p"."Value1"
FROM
"Parent" "p"
WHERE
"p"."ParentID" <= 2
ORDER BY
"p"."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Informix.DB2 Informix

SELECT
p.Value1
FROM
Parent p
WHERE
p.ParentID <= 2
ORDER BY
p.ParentID

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- MariaDB.11 MariaDB.10.MySqlConnector MariaDB

SELECT
`p`.`Value1`
FROM
`Parent` `p`
WHERE
`p`.`ParentID` <= 2
ORDER BY
`p`.`ParentID`

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- MySql.5.7 MySql.5.7.MySql.Data MySql57

SELECT
`p`.`Value1`
FROM
`Parent` `p`
WHERE
`p`.`ParentID` <= 2
ORDER BY
`p`.`ParentID`

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- MySql.8.0 MySql.8.0.MySql.Data MySql80

SELECT
`p`.`Value1`
FROM
`Parent` `p`
WHERE
`p`.`ParentID` <= 2
ORDER BY
`p`.`ParentID`

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- MySqlConnector.5.7 MySql.5.7.MySqlConnector MySql57

SELECT
`p`.`Value1`
FROM
`Parent` `p`
WHERE
`p`.`ParentID` <= 2
ORDER BY
`p`.`ParentID`

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- MySqlConnector.8.0 MySql.8.0.MySqlConnector MySql80

SELECT
`p`.`Value1`
FROM
`Parent` `p`
WHERE
`p`.`ParentID` <= 2
ORDER BY
`p`.`ParentID`

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.11.Managed Oracle11

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.12.Managed Oracle.Managed Oracle12

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.18.Managed Oracle.Managed Oracle12

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.19.Managed Oracle.Managed Oracle12

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.21.Managed Oracle.Managed Oracle12

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Oracle.23.Managed Oracle.Managed Oracle12

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.13 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.14 PostgreSQL.13 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.15 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.17 PostgreSQL.15 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- PostgreSQL.18 PostgreSQL

SELECT
p."Value1"
FROM
"Parent" p
WHERE
p."ParentID" <= 2
ORDER BY
p."ParentID"

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- SQLite.Classic.MPM SQLite.Classic SQLite

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- SQLite.Classic.MPU SQLite.Classic SQLite

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- SQLite.Classic SQLite

SELECT
[p].[Value1]
FROM
[Parent] [p]
WHERE
[p].[ParentID] <= 2
ORDER BY
[p].[ParentID]

Loading