Skip to content

Commit 0a7a679

Browse files
authored
Fix whitespace in some schemeshard logs (#12388)
1 parent 018b441 commit 0a7a679

35 files changed

+74
-74
lines changed

ydb/core/tx/schemeshard/olap/operations/alter_store.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class TConfigureParts: public TSubOperationState {
7474
TString DebugHint() const override {
7575
return TStringBuilder()
7676
<< "TAlterOlapStore TConfigureParts"
77-
<< " operationId#" << OperationId;
77+
<< " operationId# " << OperationId;
7878
}
7979

8080
public:
@@ -178,7 +178,7 @@ class TPropose: public TSubOperationState {
178178
TString DebugHint() const override {
179179
return TStringBuilder()
180180
<< "TAlterOlapStore TPropose"
181-
<< " operationId#" << OperationId;
181+
<< " operationId# " << OperationId;
182182
}
183183

184184
public:
@@ -273,7 +273,7 @@ class TProposedWaitParts: public TSubOperationState {
273273
TString DebugHint() const override {
274274
return TStringBuilder()
275275
<< "TAlterOlapStore TProposedWaitParts"
276-
<< " operationId#" << OperationId;
276+
<< " operationId# " << OperationId;
277277
}
278278

279279
public:

ydb/core/tx/schemeshard/olap/operations/alter_table.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class TConfigureParts: public TSubOperationState {
1616
TOperationId OperationId;
1717

1818
TString DebugHint() const override {
19-
return TStringBuilder() << "TAlterColumnTable TConfigureParts operationId#" << OperationId;
19+
return TStringBuilder() << "TAlterColumnTable TConfigureParts operationId# " << OperationId;
2020
}
2121

2222
public:
@@ -85,7 +85,7 @@ class TPropose: public TSubOperationState {
8585
TString DebugHint() const override {
8686
return TStringBuilder()
8787
<< "TAlterColumnTable TPropose"
88-
<< " operationId#" << OperationId;
88+
<< " operationId# " << OperationId;
8989
}
9090

9191
public:
@@ -166,7 +166,7 @@ class TProposedWaitParts: public TSubOperationState {
166166
TString DebugHint() const override {
167167
return TStringBuilder()
168168
<< "TAlterColumnTable TProposedWaitParts"
169-
<< " operationId#" << OperationId;
169+
<< " operationId# " << OperationId;
170170
}
171171

172172
public:

ydb/core/tx/schemeshard/olap/operations/create_store.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class TConfigureParts: public TSubOperationState {
4444
TString DebugHint() const override {
4545
return TStringBuilder()
4646
<< "TCreateOlapStore TConfigureParts"
47-
<< " operationId#" << OperationId;
47+
<< " operationId# " << OperationId;
4848
}
4949

5050
public:
@@ -125,7 +125,7 @@ class TPropose: public TSubOperationState {
125125
TString DebugHint() const override {
126126
return TStringBuilder()
127127
<< "TCreateOlapStore TPropose"
128-
<< " operationId#" << OperationId;
128+
<< " operationId# " << OperationId;
129129
}
130130

131131
public:
@@ -210,7 +210,7 @@ class TProposedWaitParts: public TSubOperationState {
210210
TString DebugHint() const override {
211211
return TStringBuilder()
212212
<< "TCreateOlapStore TProposedWaitParts"
213-
<< " operationId#" << OperationId;
213+
<< " operationId# " << OperationId;
214214
}
215215

216216
public:

ydb/core/tx/schemeshard/olap/operations/create_table.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class TConfigureParts: public TSubOperationState {
224224
TString DebugHint() const override {
225225
return TStringBuilder()
226226
<< "TCreateColumnTable TConfigureParts"
227-
<< " operationId#" << OperationId;
227+
<< " operationId# " << OperationId;
228228
}
229229

230230
public:
@@ -343,7 +343,7 @@ class TPropose: public TSubOperationState {
343343
TString DebugHint() const override {
344344
return TStringBuilder()
345345
<< "TCreateColumnTable TPropose"
346-
<< " operationId#" << OperationId;
346+
<< " operationId# " << OperationId;
347347
}
348348

349349
public:
@@ -430,7 +430,7 @@ class TProposedWaitParts: public TSubOperationState {
430430
TString DebugHint() const override {
431431
return TStringBuilder()
432432
<< "TCreateColumnTable TProposedWaitParts"
433-
<< " operationId#" << OperationId;
433+
<< " operationId# " << OperationId;
434434
}
435435

436436
public:

ydb/core/tx/schemeshard/olap/operations/drop_store.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class TDropParts: public TSubOperationState {
1616
TString DebugHint() const override {
1717
return TStringBuilder()
1818
<< "TDropOlapStore TDropParts"
19-
<< " operationId#" << OperationId;
19+
<< " operationId# " << OperationId;
2020
}
2121

2222
public:
@@ -55,7 +55,7 @@ class TPropose: public TSubOperationState {
5555
TString DebugHint() const override {
5656
return TStringBuilder()
5757
<< "TDropOlapStore TPropose"
58-
<< " operationId#" << OperationId;
58+
<< " operationId# " << OperationId;
5959
}
6060

6161
public:
@@ -139,7 +139,7 @@ class TProposedWaitParts: public TSubOperationState {
139139
TString DebugHint() const override {
140140
return TStringBuilder()
141141
<< "TDropOlapStore TProposedWaitParts"
142-
<< " operationId#" << OperationId;
142+
<< " operationId# " << OperationId;
143143
}
144144

145145
public:
@@ -214,7 +214,7 @@ class TProposedDeleteParts: public TSubOperationState {
214214
TString DebugHint() const override {
215215
return TStringBuilder()
216216
<< "TDropOlapStore TProposedDeleteParts"
217-
<< " operationId#" << OperationId;
217+
<< " operationId# " << OperationId;
218218
}
219219

220220
public:

ydb/core/tx/schemeshard/olap/operations/drop_table.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class TDropParts: public TSubOperationState {
1616
TString DebugHint() const override {
1717
return TStringBuilder()
1818
<< "TDropColumnTable TDropParts"
19-
<< " operationId#" << OperationId;
19+
<< " operationId# " << OperationId;
2020
}
2121

2222
public:
@@ -94,7 +94,7 @@ class TPropose: public TSubOperationState {
9494
TString DebugHint() const override {
9595
return TStringBuilder()
9696
<< "TDropColumnTable TPropose"
97-
<< " operationId#" << OperationId;
97+
<< " operationId# " << OperationId;
9898
}
9999

100100
public:
@@ -183,7 +183,7 @@ class TProposedWaitParts: public TSubOperationState {
183183
TString DebugHint() const override {
184184
return TStringBuilder()
185185
<< "TDropColumnTable TProposedWaitParts"
186-
<< " operationId#" << OperationId;
186+
<< " operationId# " << OperationId;
187187
}
188188

189189
public:
@@ -258,7 +258,7 @@ class TProposedDeleteParts: public TSubOperationState {
258258
TString DebugHint() const override {
259259
return TStringBuilder()
260260
<< "TDropColumnTable TProposedDeleteParts"
261-
<< " operationId#" << OperationId;
261+
<< " operationId# " << OperationId;
262262
}
263263

264264
bool Finish(TOperationContext& context) {

ydb/core/tx/schemeshard/schemeshard__operation_alter_fs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TConfigureParts: public TSubOperationState {
2020
TString DebugHint() const override {
2121
return TStringBuilder()
2222
<< "TAlterFileStore::TConfigureParts"
23-
<< " operationId#" << OperationId;
23+
<< " operationId# " << OperationId;
2424
}
2525

2626
public:
@@ -128,7 +128,7 @@ class TPropose: public TSubOperationState {
128128
TString DebugHint() const override {
129129
return TStringBuilder()
130130
<< "TAlterFileStore::TPropose"
131-
<< " operationId#" << OperationId;
131+
<< " operationId# " << OperationId;
132132
}
133133

134134
public:

ydb/core/tx/schemeshard/schemeshard__operation_alter_index.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TPropose: public TSubOperationState {
1515
TString DebugHint() const override {
1616
return TStringBuilder()
1717
<< "TAlterTableIndex TPropose"
18-
<< " operationId#" << OperationId;
18+
<< " operationId# " << OperationId;
1919
}
2020

2121
public:

ydb/core/tx/schemeshard/schemeshard__operation_alter_kesus.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class TConfigureParts: public TSubOperationState {
5454
TString DebugHint() const override {
5555
return TStringBuilder()
5656
<< "TAlterKesus TConfigureParts"
57-
<< " operationId#" << OperationId;
57+
<< " operationId# " << OperationId;
5858
}
5959

6060
public:
@@ -151,7 +151,7 @@ class TPropose: public TSubOperationState {
151151
TString DebugHint() const override {
152152
return TStringBuilder()
153153
<< "TAlterKesus TPropose"
154-
<< " operationId#" << OperationId;
154+
<< " operationId# " << OperationId;
155155
}
156156

157157
public:

ydb/core/tx/schemeshard/schemeshard__operation_alter_sequence.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TConfigureParts: public TSubOperationState {
1818
TString DebugHint() const override {
1919
return TStringBuilder()
2020
<< "TAlterSequence TConfigureParts"
21-
<< " operationId#" << OperationId;
21+
<< " operationId# " << OperationId;
2222
}
2323

2424
public:
@@ -163,7 +163,7 @@ class TPropose: public TSubOperationState {
163163
TString DebugHint() const override {
164164
return TStringBuilder()
165165
<< "TAlterSequence TPropose"
166-
<< " operationId#" << OperationId;
166+
<< " operationId# " << OperationId;
167167
}
168168

169169
public:

0 commit comments

Comments
 (0)