Bradley Grainger
Bradley Grainger
In [the latest benchmark run](https://www.techempower.com/benchmarks/#section=test&runid=58042695-831a-4a35-8c60-2b872a06f799&hw=ph&test=update&d=e5) the fastest MySQL-based "Data updates" entrant is `perfect-mysql`, by a factor of almost 3× over the next-fastest entrant. Meanwhile, for "Single query", `perfect-mysql` is in...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)...
This addresses a "TODO" in the code: * Use `BinaryPrimitives` instead of `BinaryWriter` to write directly to the array instead of via a `MemoryStream`. * Move allocation of the key...
Running the `InstallerManagerTests` fails with `Message: Assert.True() Failure`. Debugging the tests shows that `InstallerHookOperations.findAppSetupsToRun` is throwing a `ReflectionTypeLoadException` with `LoaderExceptions` containing > "Could not load file or assembly 'Shimmer.Client, Version=0.7.0.0,...
W3C Distributed Trace Context Community Group has an editor's draft of a propagation format for distributed trace context: https://w3c.github.io/distributed-tracing/report-trace-context.html Would you be interested in receiving a PR that added an...
In a HA scenario, failover can be accomplished by updating DNS to point to the new primary server. (E.g., "DNS is updated to redirect connections to the new primary when...
If a timeout occurs when connecting to a host, the `net.peer.name` and `db.name` Activity tags are not set. This would be useful information to have included on the failed Activity....
Connector/NET supports the following schema collections in `MySqlConnection.GetSchema`. MySqlConnector only supports the bolded entries. * **MetaDataCollections** * **DataSourceInformation** * **DataTypes** * **Restrictions** * **ReservedWords** * **Databases** * **Tables** * **Columns**...
The `MySqlConnection.GetSchema(string, string[])` overload should support a user-specified list of [restrictions](https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/schema-restrictions) on the schema being requested. `GetSchema("Restrictions")` should return a `DataTable` containing all the available restrictions. Not implemented as part...
Based on https://github.com/mysql-net/MySqlConnector/issues/924 and https://github.com/mysql-net/MySqlConnector/issues/1174, there are a small number of users who modify stored procedure definitions in the database at runtime; this can be a problem because MySqlConnector caches...