Skip to content

Commit d74a1d7

Browse files
committed
WritePrologueAsync should be a no-op.
Signed-off-by: Bradley Grainger <[email protected]>
1 parent 968cadf commit d74a1d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/Core/ConcatenatedCommandPayloadCreator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal sealed class ConcatenatedCommandPayloadCreator : ICommandPayloadCreator
99
public static ICommandPayloadCreator Instance { get; } = new ConcatenatedCommandPayloadCreator();
1010

1111
public ValueTask WritePrologueAsync(MySqlConnection connection, CommandListPosition commandListPosition, IOBehavior ioBehavior, CancellationToken cancellationToken) =>
12-
throw new NotSupportedException();
12+
default;
1313

1414
public bool WriteQueryCommand(ref CommandListPosition commandListPosition, IDictionary<string, CachedProcedure?> cachedProcedures, ByteBufferWriter writer, bool appendSemicolon)
1515
{

0 commit comments

Comments
 (0)