Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
87c1d03
[Windows / SQL Server 2005] baselines
Jun 2, 2026
b53c3a3
[Windows / SQLite (specialized tests)] baselines
Jun 2, 2026
b50b366
[Windows / SQL CE] baselines
Jun 2, 2026
d72aa4c
[Windows / SQL Server 2008] baselines
Jun 2, 2026
f3c149f
[Windows / SQLite (both providers)] baselines
Jun 2, 2026
6c28de8
[Windows / SQL Server 2012] baselines
Jun 2, 2026
aed3510
[Windows / SQL Server 2014] baselines
Jun 2, 2026
e8ced5f
[Windows / DuckDB] baselines
Jun 2, 2026
d23eb73
[Linux / DB2 LUW 11.5] baselines
Jun 2, 2026
826b298
[Linux / Firebird 3.0] baselines
Jun 2, 2026
c4f4140
[Linux / Firebird 2.5] baselines
Jun 2, 2026
7c80723
[Linux / Firebird 4.0] baselines
Jun 2, 2026
1278301
[Windows / SQL Server 2016] baselines
Jun 2, 2026
6fb28a0
[Linux / Firebird 5.0] baselines
Jun 2, 2026
965c969
[Windows / SQL Server 2019] baselines
Jun 2, 2026
9917807
[Linux / Informix 14.10] baselines
Jun 2, 2026
b0dbc4e
[Windows / SQL Server 2017] baselines
Jun 2, 2026
797b22f
[Linux / MariaDB 11] baselines
Jun 2, 2026
525176e
[Linux / MySQL 5.7 (both providers)] baselines
Jun 2, 2026
b06e3cd
[Linux / MySQL 9 (both providers)] baselines
Jun 2, 2026
de5555d
[Windows / SQL Server 2022] baselines
Jun 2, 2026
e16198b
[Linux / ClickHouse MySql] baselines
Jun 2, 2026
938b251
[Linux / ClickHouse Driver] baselines
Jun 2, 2026
c54c277
[Windows / SQL Server 2025] baselines
Jun 2, 2026
13f11e6
[Linux / PostgreSQL 13] baselines
Jun 2, 2026
3654324
[Linux / PostgreSQL 14] baselines
Jun 2, 2026
33e97d0
[Linux / PostgreSQL 15] baselines
Jun 2, 2026
3d94752
[Windows / SQL Server EXTRAS] baselines
Jun 2, 2026
ba80bfa
[Linux / PostgreSQL 16] baselines
Jun 2, 2026
2fa21fd
[Linux / PostgreSQL 17] baselines
Jun 2, 2026
3de7f86
[Linux / PostgreSQL 18] baselines
Jun 2, 2026
b17700c
[Linux / SQLite (both providers)] baselines
Jun 2, 2026
ad6a952
[Linux / Sybase ASE 16] baselines
Jun 2, 2026
0d32a8d
[Linux / SAP HANA 2] baselines
Jun 2, 2026
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,21 @@
-- ClickHouse.Driver ClickHouse

INSERT INTO Issue5540
(
Id,
Items
)
VALUES
(
1,
'A;B'
)

-- ClickHouse.Driver ClickHouse

SELECT
t1.Id,
t1.Items
FROM
Issue5540 t1

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

INSERT INTO Issue5540
(
Id,
Items
)
VALUES
(
1,
'A;B'
)

-- ClickHouse.MySql ClickHouse

SELECT
t1.Id,
t1.Items
FROM
Issue5540 t1

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- DB2 DB2.LUW DB2LUW
DECLARE @Id Integer(4) -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
@Id,
@Items
)

-- DB2 DB2.LUW DB2LUW

SELECT
"t1"."Id",
"t1"."Items"
FROM
"Issue5540" "t1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- DuckDB
DECLARE $Id -- Int32
SET $Id = 1
DECLARE $Items NVarChar(3) -- String
SET $Items = 'A;B'

INSERT INTO Issue5540
(
Id,
Items
)
VALUES
(
$Id,
$Items
)

-- DuckDB

SELECT
t1.Id,
t1.Items
FROM
Issue5540 t1

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Firebird.2.5 Firebird
DECLARE @Id Integer -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
@Id,
@Items
)

-- Firebird.2.5 Firebird

SELECT
"t1"."Id",
"t1"."Items"
FROM
"Issue5540" "t1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Firebird.3 Firebird3
DECLARE @Id Integer -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
@Id,
@Items
)

-- Firebird.3 Firebird3

SELECT
"t1"."Id",
"t1"."Items"
FROM
"Issue5540" "t1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Firebird.4 Firebird4
DECLARE @Id Integer -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
@Id,
@Items
)

-- Firebird.4 Firebird4

SELECT
"t1"."Id",
"t1"."Items"
FROM
"Issue5540" "t1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Firebird.5 Firebird4
DECLARE @Id Integer -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
@Id,
@Items
)

-- Firebird.5 Firebird4

SELECT
"t1"."Id",
"t1"."Items"
FROM
"Issue5540" "t1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Informix.DB2 Informix
DECLARE @Id Integer(4) -- Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO Issue5540
(
Id,
Items
)
VALUES
(
@Id,
@Items
)

-- Informix.DB2 Informix

SELECT
t1.Id,
t1.Items
FROM
Issue5540 t1

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- MariaDB.11 MariaDB.10.MySqlConnector MariaDB
DECLARE @Id Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO `Issue5540`
(
`Id`,
`Items`
)
VALUES
(
@Id,
@Items
)

-- MariaDB.11 MariaDB.10.MySqlConnector MariaDB

SELECT
`t1`.`Id`,
`t1`.`Items`
FROM
`Issue5540` `t1`

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- MySql.5.7 MySql.5.7.MySql.Data MySql57
DECLARE @Id Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO `Issue5540`
(
`Id`,
`Items`
)
VALUES
(
@Id,
@Items
)

-- MySql.5.7 MySql.5.7.MySql.Data MySql57

SELECT
`t1`.`Id`,
`t1`.`Items`
FROM
`Issue5540` `t1`

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- MySql.8.0 MySql.8.0.MySql.Data MySql80
DECLARE @Id Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO `Issue5540`
(
`Id`,
`Items`
)
VALUES
(
@Id,
@Items
)

-- MySql.8.0 MySql.8.0.MySql.Data MySql80

SELECT
`t1`.`Id`,
`t1`.`Items`
FROM
`Issue5540` `t1`

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- MySqlConnector.5.7 MySql.5.7.MySqlConnector MySql57
DECLARE @Id Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO `Issue5540`
(
`Id`,
`Items`
)
VALUES
(
@Id,
@Items
)

-- MySqlConnector.5.7 MySql.5.7.MySqlConnector MySql57

SELECT
`t1`.`Id`,
`t1`.`Items`
FROM
`Issue5540` `t1`

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- MySqlConnector.8.0 MySql.8.0.MySqlConnector MySql80
DECLARE @Id Int32
SET @Id = 1
DECLARE @Items VarChar(3) -- String
SET @Items = 'A;B'

INSERT INTO `Issue5540`
(
`Id`,
`Items`
)
VALUES
(
@Id,
@Items
)

-- MySqlConnector.8.0 MySql.8.0.MySqlConnector MySql80

SELECT
`t1`.`Id`,
`t1`.`Items`
FROM
`Issue5540` `t1`

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- PostgreSQL.13 PostgreSQL
DECLARE @Id Integer -- Int32
SET @Id = 1
DECLARE @Items Varchar(3) -- String
SET @Items = 'A;B'

INSERT INTO "Issue5540"
(
"Id",
"Items"
)
VALUES
(
:Id,
:Items
)

-- PostgreSQL.13 PostgreSQL

SELECT
t1."Id",
t1."Items"
FROM
"Issue5540" t1

Loading