Skip to content

Commit e8f67a8

Browse files
committed
Apply standard BatchItemDelimiter
no additional Windows-style new line at the end of delimiter
1 parent e6cd64d commit e8f67a8

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

Orm/Xtensive.Orm.MySql/Sql.Drivers.MySql/v5_0/Translator.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ public override string DdlStatementDelimiter
3737

3838
public override string NewLine => Environment.NewLine;
3939

40-
//public override string BatchItemDelimiter
41-
//{
42-
// get { return ";\r\n"; }
43-
//}
44-
4540
public override void Initialize()
4641
{
4742
base.Initialize();

Orm/Xtensive.Orm.PostgreSql/Sql.Drivers.PostgreSql/v8_0/Translator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public override void Initialize()
4343
}
4444

4545
public override string DdlStatementDelimiter { get { return ";"; } }
46-
public override string BatchItemDelimiter { get { return ";\r\n"; } }
46+
//public override string BatchItemDelimiter { get { return ";\r\n"; } }
4747

4848
[DebuggerStepThrough]
4949
public override string QuoteIdentifier(params string[] names)

Orm/Xtensive.Orm.Sqlite/Sql.Drivers.Sqlite/v3/Translator.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public override string DdlStatementDelimiter
4141
get { return ";"; }
4242
}
4343

44-
/// <inheritdoc/>
45-
public override string BatchItemDelimiter
46-
{
47-
get { return ";\r\n"; }
48-
}
44+
///// <inheritdoc/>
45+
//public override string BatchItemDelimiter
46+
//{
47+
// get { return ";\r\n"; }
48+
//}
4949

5050
/// <inheritdoc/>
5151
public override void Initialize()

0 commit comments

Comments
 (0)