Skip to content

Baselines for https://github.com/linq2db/linq2db/pull/4844 #1386

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c73e997
[Linux / PostgreSQL 13] baselines
Mar 13, 2025
a8fc787
[Linux / PostgreSQL 14] baselines
Mar 13, 2025
e2d4300
[Linux / PostgreSQL 15] baselines
Mar 13, 2025
eb0ad07
[Linux / PostgreSQL 17] baselines
Mar 13, 2025
e0ec0ff
[Linux / PostgreSQL 16] baselines
Mar 13, 2025
d3fa0ef
[Windows / SQLite (specialized tests)] baselines
Mar 13, 2025
7c3cefc
[Windows / SQLite (both providers)] baselines
Mar 13, 2025
72d537e
[Windows / SQL Server 2014] baselines
Mar 13, 2025
379de24
[Windows / SQL Server 2008] baselines
Mar 13, 2025
f739881
[Windows / SQL Server 2012] baselines
Mar 13, 2025
b6d3630
[Windows / SQL Server 2016] baselines
Mar 13, 2025
b4d33e5
[Linux / DB2 LUW 11.5] baselines
Mar 13, 2025
0d7d980
[Linux / Firebird 4.0] baselines
Mar 13, 2025
760a347
[Linux / Firebird 3.0] baselines
Mar 13, 2025
35e6e67
[Linux / Firebird 5.0] baselines
Mar 13, 2025
bf6c1dd
[Linux / Informix 14.10] baselines
Mar 13, 2025
808f5fd
[Linux / MariaDB 11] baselines
Mar 13, 2025
3d77065
[Windows / SQL Server 2017] baselines
Mar 13, 2025
124887f
[Linux / MySQL 9 (both providers)] baselines
Mar 13, 2025
399262c
[Windows / SQL Server 2019] baselines
Mar 13, 2025
e19383a
[Windows / SQL Server 2022] baselines
Mar 13, 2025
93bf327
[Linux / PostgreSQL 14] baselines
Mar 13, 2025
440e335
[Linux / Oracle 21c] baselines
Mar 13, 2025
1743f4c
[Linux / PostgreSQL 15] baselines
Mar 13, 2025
d19f55a
[Linux / PostgreSQL 13] baselines
Mar 13, 2025
cbb979a
[Linux / PostgreSQL 17] baselines
Mar 13, 2025
943ecf3
[Linux / PostgreSQL 16] baselines
Mar 13, 2025
ac65ce5
[Linux / Oracle 23c] baselines
Mar 13, 2025
94283ee
[Windows / SQL Server EXTRAS] baselines
Mar 13, 2025
242ecc5
[Linux / SAP HANA 2] baselines
Mar 13, 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
@@ -0,0 +1,42 @@
BeforeExecute
-- DB2 DB2.LUW DB2LUW

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- DB2 DB2.LUW DB2LUW

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM
LEFT JOIN (
SELECT
"c_1"."ChildID",
ROW_NUMBER() OVER (PARTITION BY "a_Parent"."ParentID", "a_Parent"."Value1" ORDER BY ("c_1"."ChildID" * "c_1"."ParentID") DESC) as "rn",
ROW_NUMBER() OVER (PARTITION BY "a_Parent"."ParentID", "a_Parent"."Value1" ORDER BY "c_1"."ChildID" * "c_1"."ParentID" DESC) as "rn",
"a_Parent"."ParentID",
"a_Parent"."Value1"
FROM
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
BeforeExecute
-- DB2 DB2.LUW DB2LUW

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- DB2 DB2.LUW DB2LUW

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM
LEFT JOIN (
SELECT
"c_1"."ChildID",
ROW_NUMBER() OVER (PARTITION BY "a_Parent"."ParentID", "a_Parent"."Value1" ORDER BY ("c_1"."ChildID" * "c_1"."ParentID") DESC) as "rn",
ROW_NUMBER() OVER (PARTITION BY "a_Parent"."ParentID", "a_Parent"."Value1" ORDER BY "c_1"."ChildID" * "c_1"."ParentID" DESC) as "rn",
"a_Parent"."ParentID",
"a_Parent"."Value1"
FROM
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
BeforeExecute
-- Firebird.3 Firebird3

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.3 Firebird3

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

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

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.3 Firebird3

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

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

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.4 Firebird4

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

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

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.4 Firebird4

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

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

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.5 Firebird4

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

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

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group_1",
"t1"."Date_1",
"t1"."Amount",
"t1"."IsActive"
FROM
(
SELECT
ROW_NUMBER() OVER (PARTITION BY "e"."Id", "e"."Name" ORDER BY "e"."Name", "e"."Date" DESC) as "RowNumber",
"e"."Name",
"e"."Date" as "Date_1",
"e"."Id",
"e"."Group" as "Group_1",
"e"."Amount",
"e"."IsActive"
FROM
"TestData" "e"
) "t1"
WHERE
"t1"."RowNumber" = 1
ORDER BY
"t1"."Name",
"t1"."Date_1" DESC

BeforeExecute
-- Firebird.5 Firebird4

SELECT
"t1"."Id",
"t1"."Name",
"t1"."Group",
"t1"."Date",
"t1"."Amount",
"t1"."IsActive"
FROM
"TestData" "t1"

Loading