Skip to content

Commit 579a935

Browse files
ci: csharpier format PostgresCli.cs (BUG4 follow-up)
Format check failed on c550d02 because the BUG4 setClauses string.Join call landed multi-line where csharpier wants it on one line. Pure formatting fix — no semantic change.
1 parent c550d02 commit 579a935

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

DataProvider/DataProvider/PostgresCli.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,10 +1017,7 @@ string pascalName
10171017
// Same reasoning as BUG3 INSERT/DELETE quoting. The strings are
10181018
// embedded in a C# verbatim string `@"..."` so use the `""` escape
10191019
// form (two double-quotes inside @"..." represent a single literal ").
1020-
var setClauses = string.Join(
1021-
", ",
1022-
updateable.Select(c => $"\"\"{c.Name}\"\" = @{c.Name}")
1023-
);
1020+
var setClauses = string.Join(", ", updateable.Select(c => $"\"\"{c.Name}\"\" = @{c.Name}"));
10241021
var whereClauses = string.Join(
10251022
" AND ",
10261023
pkCols.Select(c => $"\"\"{c.Name}\"\" = @{c.Name}")

0 commit comments

Comments
 (0)