Skip to content

Commit 9829b86

Browse files
author
Artyom Abakumov
committed
Renamed putField to putType
1 parent 0c0ee97 commit 9829b86

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/dsql/DsqlCompilerScratch.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,16 +241,16 @@ void DsqlCompilerScratch::putBlrMarkers(ULONG marks)
241241
void DsqlCompilerScratch::putType(const dsql_fld* field, bool useSubType)
242242
{
243243
fb_assert(field);
244-
putField(*field, useSubType, field->explicitCollation);
244+
putType(*field, useSubType, field->explicitCollation);
245245
}
246246

247247
void DsqlCompilerScratch::putType(const TypeClause* type, bool useSubType)
248248
{
249249
fb_assert(type);
250-
putField(*type, useSubType, type->collate.object.hasData());
250+
putType(*type, useSubType, type->collate.object.hasData());
251251
}
252252

253-
void DsqlCompilerScratch::putField(const TypeClause& type, bool useSubType, bool useExplicitCollate)
253+
void DsqlCompilerScratch::putType(const TypeClause& type, bool useSubType, bool useExplicitCollate)
254254
{
255255
#ifdef DEV_BUILD
256256
// Check if the field describes a known datatype

src/dsql/DsqlCompilerScratch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class DsqlCompilerScratch : public BlrDebugWriter
295295
bool pass1RelProcIsRecursive(RecordSourceNode* input);
296296
BoolExprNode* pass1JoinIsRecursive(RecordSourceNode*& input);
297297

298-
void putField(const TypeClause& type, bool useSubType, bool useExplicitCollate);
298+
void putType(const TypeClause& type, bool useSubType, bool useExplicitCollate);
299299

300300
template<bool THasTableName>
301301
void putTypeName(const TypeClause& type, const bool useExplicitCollate);

0 commit comments

Comments
 (0)