Skip to content
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

Baselines for https://github.com/linq2db/linq2db/pull/4161 #1317

Draft
wants to merge 31 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5876cd3
[Windows / SQL Server 2005] baselines
Dec 23, 2024
9ea6b22
[Windows / SQL Server 2012] baselines
Dec 23, 2024
130a6fd
[Windows / SQL Server 2008] baselines
Dec 23, 2024
ea060ed
[Windows / SQL Server 2014] baselines
Dec 23, 2024
cf95d9c
[Linux / Firebird 2.5] baselines
Dec 23, 2024
2bdbcac
[Linux / DB2 LUW 11.5] baselines
Dec 23, 2024
4e9bb03
[Windows / SQL Server 2016] baselines
Dec 23, 2024
79861c8
[Linux / Firebird 5.0] baselines
Dec 23, 2024
4f130b8
[Windows / SQL Server 2017] baselines
Dec 23, 2024
70e680e
[Linux / Firebird 3.0] baselines
Dec 23, 2024
d6bb8eb
[Linux / Firebird 4.0] baselines
Dec 23, 2024
f1d610c
[Linux / ClickHouse MySql] baselines
Dec 23, 2024
e88cfe3
[Linux / ClickHouse Client] baselines
Dec 23, 2024
c6c15bc
[Windows / SQL Server 2019] baselines
Dec 23, 2024
9765aca
[Linux / MariaDB 11] baselines
Dec 23, 2024
3956832
[Linux / MySQL 5.7 (both providers)] baselines
Dec 23, 2024
bd101cb
[Windows / SQL Server 2022] baselines
Dec 23, 2024
98326c5
[Linux / MySQL 9 (both providers)] baselines
Dec 23, 2024
d3208ca
[Linux / Oracle 11g XE] baselines
Dec 23, 2024
4b03a6f
[Linux / PostgreSQL 14] baselines
Dec 23, 2024
4c4b6f4
[Linux / Oracle 12c] baselines
Dec 23, 2024
020b3e1
[Linux / PostgreSQL 13] baselines
Dec 23, 2024
cd8ed1b
[Linux / PostgreSQL 15] baselines
Dec 23, 2024
c710441
[Linux / ClickHouse Octonica] baselines
Dec 23, 2024
48f0747
[Linux / Oracle 23c] baselines
Dec 23, 2024
420c1bb
[Linux / PostgreSQL 16] baselines
Dec 23, 2024
61b8cfe
[Linux / PostgreSQL 17] baselines
Dec 23, 2024
c53388f
[Linux / Oracle 18c] baselines
Dec 23, 2024
2f2fd81
[Linux / Oracle 21c] baselines
Dec 23, 2024
9039905
[Linux / Oracle 19c] baselines
Dec 24, 2024
eb2ab7a
[Linux / SQL Server EXTRAS] baselines
Dec 24, 2024
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,37 @@
BeforeExecute
-- ClickHouse.Client ClickHouse

select name, comment, engine LIKE '%View' from system.tables where is_temporary = 0 and database = database()

BeforeExecute
-- ClickHouse.Client ClickHouse

select name, primary_key from system.tables where is_temporary = 0 and database = database() and primary_key <> ''

BeforeExecute
-- ClickHouse.Client ClickHouse


SELECT
table,
name,
type,
position,
comment,
multiIf(type LIKE '%FixedString%', character_octet_length, NULL),
multiIf(type LIKE '%DateTime64%', datetime_precision, numeric_precision_radix = 10, numeric_precision, NULL),
multiIf(numeric_precision_radix = 10, numeric_scale, NULL),
is_in_primary_key
FROM system.columns
WHERE database = database() and default_kind <> 'ALIAS'

BeforeExecute
-- ClickHouse.Client ClickHouse

select hostName()

BeforeExecute
-- ClickHouse.Client ClickHouse

select database()

Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ CREATE TABLE AllTypes
ncharDataType Nullable(FixedString(20)),
char20DataType Nullable(FixedString(20)),
varcharDataType Nullable(String),
charDataType Nullable(FixedString(1))
charDataType Nullable(FixedString(1)),
bitDataType Nullable(BIT)

) ENGINE = MergeTree() ORDER BY ID PRIMARY KEY ID;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
BeforeExecute
-- ClickHouse.MySql ClickHouse

select name, comment, engine LIKE '%View' from system.tables where is_temporary = 0 and database = database()

BeforeExecute
-- ClickHouse.MySql ClickHouse

select name, primary_key from system.tables where is_temporary = 0 and database = database() and primary_key <> ''

BeforeExecute
-- ClickHouse.MySql ClickHouse


SELECT
table,
name,
type,
position,
comment,
multiIf(type LIKE '%FixedString%', character_octet_length, NULL),
multiIf(type LIKE '%DateTime64%', datetime_precision, numeric_precision_radix = 10, numeric_precision, NULL),
multiIf(numeric_precision_radix = 10, numeric_scale, NULL),
is_in_primary_key
FROM system.columns
WHERE database = database() and default_kind <> 'ALIAS'

BeforeExecute
-- ClickHouse.MySql ClickHouse

select hostName()

BeforeExecute
-- ClickHouse.MySql ClickHouse

select database()

Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ CREATE TABLE AllTypes
ncharDataType Nullable(FixedString(20)),
char20DataType Nullable(FixedString(20)),
varcharDataType Nullable(String),
charDataType Nullable(FixedString(1))
charDataType Nullable(FixedString(1)),
bitDataType Nullable(BIT)

) ENGINE = MergeTree() ORDER BY ID PRIMARY KEY ID;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
BeforeExecute
-- ClickHouse.Octonica ClickHouse

select name, comment, engine LIKE '%View' from system.tables where is_temporary = 0 and database = database()

BeforeExecute
-- ClickHouse.Octonica ClickHouse

select name, primary_key from system.tables where is_temporary = 0 and database = database() and primary_key <> ''

BeforeExecute
-- ClickHouse.Octonica ClickHouse


SELECT
table,
name,
type,
position,
comment,
multiIf(type LIKE '%FixedString%', character_octet_length, NULL),
multiIf(type LIKE '%DateTime64%', datetime_precision, numeric_precision_radix = 10, numeric_precision, NULL),
multiIf(numeric_precision_radix = 10, numeric_scale, NULL),
is_in_primary_key
FROM system.columns
WHERE database = database() and default_kind <> 'ALIAS'

BeforeExecute
-- ClickHouse.Octonica ClickHouse

select hostName()

BeforeExecute
-- ClickHouse.Octonica ClickHouse

select database()

Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ CREATE TABLE AllTypes
ncharDataType Nullable(FixedString(20)),
char20DataType Nullable(FixedString(20)),
varcharDataType Nullable(String),
charDataType Nullable(FixedString(1))
charDataType Nullable(FixedString(1)),
bitDataType Nullable(BIT)

) ENGINE = MergeTree() ORDER BY ID PRIMARY KEY ID;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,10 @@ SELECT
FROM
ALLTYPES "t1"

BeforeExecute
-- DB2 DB2.LUW DB2LUW

select current_schema from sysibm.sysdummy1

BeforeExecute
DisposeTransaction
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ SELECT * FROM "Patient_SelectByName"(NULL,NULL)

BeforeExecute
-- Firebird.2.5 Firebird
DECLARE @PERSONID Integer(4) -- Int32
SET @PERSONID = 0
DECLARE @PersonID Integer(4) -- Int32
SET @PersonID = 0

"Person_Delete"

Expand Down
Loading