@@ -541,9 +541,9 @@ private static async Task ClearPoolAsync(MySqlConnection connection, IOBehavior
541
541
/// Returns schema information for the data source of this <see cref="MySqlConnection"/>.
542
542
/// </summary>
543
543
/// <param name="collectionName">The name of the schema to return.</param>
544
- /// <param name="restrictions ">The restrictions to apply to the schema; this parameter is currently ignored.</param>
544
+ /// <param name="restrictionValues ">The restrictions to apply to the schema; this parameter is currently ignored.</param>
545
545
/// <returns>A <see cref="DataTable"/> containing schema information.</returns>
546
- public override DataTable GetSchema ( string collectionName , string ? [ ] restrictions ) => GetSchemaProvider ( ) . GetSchemaAsync ( IOBehavior . Synchronous , collectionName , default ) . GetAwaiter ( ) . GetResult ( ) ;
546
+ public override DataTable GetSchema ( string collectionName , string ? [ ] restrictionValues ) => GetSchemaProvider ( ) . GetSchemaAsync ( IOBehavior . Synchronous , collectionName , default ) . GetAwaiter ( ) . GetResult ( ) ;
547
547
548
548
/// <summary>
549
549
/// Asynchronously returns schema information for the data source of this <see cref="MySqlConnection"/>.
@@ -576,14 +576,14 @@ public override Task<DataTable> GetSchemaAsync(string collectionName, Cancellati
576
576
/// Asynchronously returns schema information for the data source of this <see cref="MySqlConnection"/>.
577
577
/// </summary>
578
578
/// <param name="collectionName">The name of the schema to return.</param>
579
- /// <param name="restrictions ">The restrictions to apply to the schema; this parameter is currently ignored.</param>
579
+ /// <param name="restrictionValues ">The restrictions to apply to the schema; this parameter is currently ignored.</param>
580
580
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
581
581
/// <returns>A <see cref="Task{DataTable}"/> containing schema information.</returns>
582
582
/// <remarks>The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.</remarks>
583
583
#if NET45 || NET461 || NET471 || NETSTANDARD1_3 || NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP2_1 || NETCOREAPP3_1
584
- public Task < DataTable > GetSchemaAsync ( string collectionName , string ? [ ] restrictions , CancellationToken cancellationToken = default )
584
+ public Task < DataTable > GetSchemaAsync ( string collectionName , string ? [ ] restrictionValues , CancellationToken cancellationToken = default )
585
585
#else
586
- public override Task < DataTable > GetSchemaAsync ( string collectionName , string ? [ ] restrictions , CancellationToken cancellationToken = default )
586
+ public override Task < DataTable > GetSchemaAsync ( string collectionName , string ? [ ] restrictionValues , CancellationToken cancellationToken = default )
587
587
#endif
588
588
=> GetSchemaProvider ( ) . GetSchemaAsync ( AsyncIOBehavior , collectionName , cancellationToken ) . AsTask ( ) ;
589
589
0 commit comments