File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
EfCore.Ydb/test/EfCore.Ydb.FunctionalTests/TestUtilities Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ protected override async Task InitializeAsync(
6060 }
6161 }
6262
63- public async Task ExecuteScript ( string scriptPath )
63+ public async Task ExecuteScript ( string scriptPathParam )
6464 {
65- var script = await File . ReadAllTextAsync ( scriptPath ) ;
65+ var script = await File . ReadAllTextAsync ( scriptPathParam ) ;
6666 await ExecuteAsync (
6767 Connection , command =>
6868 {
Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ await connection.ExecuteAsync($@"
245245
246246 private record NullableFields
247247 {
248+ #pragma warning disable CollectionNeverQueried. Local
248249 public int ? Id { get ; init ; }
249250 public bool ? BoolColumn { get ; init ; }
250251 public long ? LongColumn { get ; init ; }
@@ -260,6 +261,7 @@ private record NullableFields
260261 public string ? TextColumn { get ; init ; }
261262 public byte [ ] ? BytesColumn { get ; init ; }
262263 public DateTime ? TimestampColumn { get ; init ; }
264+ #pragma warning restore CollectionNeverQueried. Local
263265 }
264266
265267 private record Episode
You can’t perform that action at this time.
0 commit comments