Skip to content

Commit 972a83a

Browse files
committed
Fix setting of concurrent priority.
1 parent 4e89d47 commit 972a83a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/MySql.Data.MySqlClient/MySqlBulkLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private string CreateSql()
138138
sb.Append(Priority switch
139139
{
140140
MySqlBulkLoaderPriority.Low => "LOW_PRIORITY ",
141-
MySqlBulkLoaderPriority.Concurrent => "LOCAL ",
141+
MySqlBulkLoaderPriority.Concurrent => "CONCURRENT ",
142142
_ => "",
143143
});
144144

0 commit comments

Comments
 (0)