Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code cleanup for Microsoft.Data.Sqlite #22188

Merged
merged 1 commit into from
Aug 23, 2020
Merged

Conversation

ajcvickers
Copy link
Member

No description provided.

@@ -821,8 +825,9 @@ public virtual void BackupDatabase(SqliteConnection destination, string destinat
SqliteException.ThrowExceptionForRC(rc, _db);
}

_aggregates ??= new Dictionary<(string, int), (int, object, delegate_function_aggregate_step, delegate_function_aggregate_final)>(
FunctionsKeyComparer.Instance);
_aggregates ??=
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😬

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where would you have expected this to split the line?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It’s the dangling = issue we discussed previously.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, right. I'll check if this is configured differently for ??=.

@ajcvickers ajcvickers merged commit 31e2302 into release/5.0 Aug 23, 2020
@ajcvickers ajcvickers deleted the DeepClean_MDSL_1_0823 branch August 23, 2020 21:47
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System.Reflection;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line should be delete?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants