Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
96c108b
Baselines for https://github.com/linq2db/linq2db/pull/5426 (#1764)
linq2dbot Mar 17, 2026
50fd04f
Baselines for https://github.com/linq2db/linq2db/pull/5430 (#1765)
linq2dbot Mar 20, 2026
7266e4f
Baselines for https://github.com/linq2db/linq2db/pull/5433 (#1766)
linq2dbot Mar 20, 2026
3804125
Baselines for https://github.com/linq2db/linq2db/pull/5395 (#1767)
linq2dbot Mar 20, 2026
76bfbc9
Baselines for https://github.com/linq2db/linq2db/pull/5438 (#1769)
linq2dbot Mar 26, 2026
3bcf7de
[Linux / PostgreSQL 15] baselines
Apr 1, 2026
9d4b157
[Linux / PostgreSQL 16] baselines
Apr 1, 2026
f53fbaf
[Linux / PostgreSQL 17] baselines
Apr 1, 2026
e68d9de
[Linux / SQLite (both providers)] baselines
Apr 1, 2026
6f2b65d
[Linux / Informix 14.10] baselines
Apr 1, 2026
b666530
[Linux / MySQL 9 (both providers)] baselines
Apr 1, 2026
30f3590
[Linux / PostgreSQL 15] baselines
Apr 1, 2026
9fe84e1
[Linux / PostgreSQL 16] baselines
Apr 1, 2026
dfa8183
[Linux / PostgreSQL 18] baselines
Apr 1, 2026
303890e
[Linux / PostgreSQL 17] baselines
Apr 1, 2026
390344c
[Linux / SQLite (both providers)] baselines
Apr 1, 2026
d7c0b69
[Windows / SQLite (both providers)] baselines
Apr 2, 2026
67f7f29
[Linux / MySQL 9 (both providers)] baselines
Apr 2, 2026
727f996
[Linux / Oracle 11g XE] baselines
Apr 2, 2026
03f3c5d
[Linux / Oracle 21c] baselines
Apr 2, 2026
f7dcaff
[Linux / Oracle 12c] baselines
Apr 2, 2026
17eda2f
[Linux / Oracle 23c] baselines
Apr 2, 2026
5ae7125
[Linux / Oracle 18c] baselines
Apr 2, 2026
32204d5
[Linux / Oracle 19c] baselines
Apr 2, 2026
a007c22
[Linux / SQLite (both providers)] baselines
Apr 2, 2026
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Access.Ace.Odbc AccessODBC

SELECT
[t1].[ParentID],
[t1].[Value1]
FROM
[Parent] [t1]

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

SELECT
[t1].[ParentID],
[t1].[Value1]
FROM
[Parent] [t1]

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- 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,15 @@
-- Access.Ace.Odbc AccessODBC
DECLARE @param NVarChar(4) -- String
SET @param = 'test'

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-- Access.Ace.Odbc AccessODBC
DECLARE @param NVarChar(4) -- String
SET @param = 'test'

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

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

SELECT
COUNT(*)
FROM
[Person] [t1]

-- 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,18 @@
-- Access.Ace.Odbc AccessODBC

SELECT
COUNT(*)
FROM
[Person] [t1]

-- 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,66 @@
-- Access.Ace.Odbc AccessODBC

SELECT
COUNT(*)
FROM
[Person] [t1]

-- Access.Ace.Odbc AccessODBC

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

-- Access.Ace.Odbc AccessODBC
DECLARE @ID Int -- Int32
SET @ID = 1

SELECT
[t1].[PersonID],
[t1].[Taxonomy]
FROM
[Doctor] [t1]
WHERE
[t1].[PersonID] = ?

-- Access.Ace.Odbc AccessODBC
DECLARE @ID Int -- Int32
SET @ID = 2

SELECT
[t1].[PersonID],
[t1].[Taxonomy]
FROM
[Doctor] [t1]
WHERE
[t1].[PersonID] = ?

-- Access.Ace.Odbc AccessODBC
DECLARE @ID Int -- Int32
SET @ID = 3

SELECT
[t1].[PersonID],
[t1].[Taxonomy]
FROM
[Doctor] [t1]
WHERE
[t1].[PersonID] = ?

-- Access.Ace.Odbc AccessODBC
DECLARE @ID Int -- Int32
SET @ID = 4

SELECT
[t1].[PersonID],
[t1].[Taxonomy]
FROM
[Doctor] [t1]
WHERE
[t1].[PersonID] = ?

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

SELECT TOP 1
[p].[FirstName]
FROM
[Person] [p]
WHERE
[p].[PersonID] = 1

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

SELECT TOP 1
[p].[PersonID],
[p].[FirstName],
[p].[LastName],
[p].[MiddleName],
[p].[Gender]
FROM
[Person] [p]
WHERE
[p].[PersonID] = 1

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

SELECT
1
FROM
[FakeClass] [t1]

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

SELECT
1
FROM
[FakeClass] [t1]

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

SELECT
1
FROM
[FakeClass] [t1]

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

SELECT
1
FROM
[FakeClass] [t1]

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
-- Access.Ace.Odbc AccessODBC
DECLARE @ParentID Int -- Int32
SET @ParentID = 1010
DECLARE @Value1 Int -- Int32
SET @Value1 = 1010

INSERT INTO [Parent]
(
[ParentID],
[Value1]
)
VALUES
(
?,
?
)

-- Access.Ace.Odbc AccessODBC

UPDATE
[Parent] [t]
SET
[t].[Value1] = 1012
WHERE
[t].[ParentID] = 1010

-- Access.Ace.Odbc AccessODBC

SELECT TOP 1
[t].[ParentID],
[t].[Value1]
FROM
[Parent] [t]
WHERE
[t].[ParentID] = 1010

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
-- Access.Ace.Odbc AccessODBC
DECLARE @ParentID Int -- Int32
SET @ParentID = 1010
DECLARE @Value1 Int -- Int32
SET @Value1 = 1010

INSERT INTO [Parent]
(
[ParentID],
[Value1]
)
VALUES
(
?,
?
)

-- Access.Ace.Odbc AccessODBC

UPDATE
[Parent] [t]
SET
[t].[Value1] = 1012
WHERE
[t].[ParentID] = 1010

-- Access.Ace.Odbc AccessODBC

SELECT TOP 1
[t].[ParentID],
[t].[Value1]
FROM
[Parent] [t]
WHERE
[t].[ParentID] = 1010

Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
-- Access.Ace.Odbc AccessODBC
DECLARE @ParentID Int -- Int32
SET @ParentID = 1010
DECLARE @Value1 Int -- Int32
SET @Value1 = 1010

INSERT INTO [Parent]
(
[ParentID],
[Value1]
)
VALUES
(
?,
?
)

-- Access.Ace.Odbc AccessODBC

UPDATE
[Parent] [t]
SET
[t].[Value1] = 1011
WHERE
[t].[ParentID] = 1010

CommitTransaction
-- Access.Ace.Odbc AccessODBC

SELECT TOP 1
[t].[ParentID],
[t].[Value1]
FROM
[Parent] [t]
WHERE
[t].[ParentID] = 1010

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
BeginTransactionAsync
-- Access.Ace.Odbc AccessODBC
DECLARE @ParentID Int -- Int32
SET @ParentID = 1010
DECLARE @Value1 Int -- Int32
SET @Value1 = 1010

INSERT INTO [Parent]
(
[ParentID],
[Value1]
)
VALUES
(
?,
?
)

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
BeginTransactionAsync
-- Access.Ace.Odbc AccessODBC
DECLARE @ParentID Int -- Int32
SET @ParentID = 1010
DECLARE @Value1 Int -- Int32
SET @Value1 = 1010

INSERT INTO [Parent]
(
[ParentID],
[Value1]
)
VALUES
(
?,
?
)

CommitTransactionAsync
-- Access.Ace.Odbc AccessODBC

DELETE FROM
[Parent] [t1]
WHERE
[t1].[ParentID] = 1010

Loading