@@ -76,7 +76,7 @@ BOOST_AUTO_TEST_CASE(TestDefaultTextField)
7676 Jrd::TypeClause field = genDefaultFiled (pool);
7777
7878 DsqlCompilerScratch& scratch = *makeScratch ();
79- scratch.putDtype (&field, true );
79+ scratch.putType (&field, true );
8080
8181 DsqlCompilerScratch& expected = *makeScratch ();
8282 genDomainFiled (expected, blr_domain_full);
@@ -98,7 +98,7 @@ BOOST_AUTO_TEST_CASE(TestDefaultTextFieldSameSchema)
9898
9999 DsqlCompilerScratch& scratch = *makeScratch ();
100100 scratch.ddlSchema = field.typeOfTable .schema ;
101- scratch.putDtype (&field, true );
101+ scratch.putType (&field, true );
102102
103103 DsqlCompilerScratch& expected = *makeScratch ();
104104 expected.appendUChar (blr_column_name2);
@@ -126,7 +126,7 @@ BOOST_AUTO_TEST_CASE(TestFalseDomain)
126126 field.fullDomain = false ;
127127
128128 DsqlCompilerScratch& scratch = *makeScratch ();
129- scratch.putDtype (&field, true );
129+ scratch.putType (&field, true );
130130
131131 DsqlCompilerScratch& expected = *makeScratch ();
132132 genDomainFiled (expected, blr_domain_type_of);
@@ -143,7 +143,7 @@ BOOST_AUTO_TEST_CASE(TestFalseDomain)
143143 field.fullDomain = false ;
144144
145145 DsqlCompilerScratch& scratch = *makeScratch ();
146- scratch.putDtype (&field, true );
146+ scratch.putType (&field, true );
147147
148148 DsqlCompilerScratch& expected = *makeScratch ();
149149 expected.appendUChar (blr_column_name3);
@@ -173,7 +173,7 @@ BOOST_AUTO_TEST_CASE(TestUseSubType)
173173 DsqlCompilerScratch& scratch = *makeScratch ();
174174 Jrd::TypeClause field = genDefaultFiled (pool);
175175 field.typeOfName .clear ();
176- scratch.putDtype (&field, true );
176+ scratch.putType (&field, true );
177177
178178 DsqlCompilerScratch& expected = *makeScratch ();
179179 expected.appendUChar (blr_text2);
@@ -190,7 +190,7 @@ BOOST_AUTO_TEST_CASE(TestUseSubType)
190190 DsqlCompilerScratch& scratch = *makeScratch ();
191191 Jrd::TypeClause field = genDefaultFiled (pool);
192192 field.typeOfName .clear ();
193- scratch.putDtype (&field, false );
193+ scratch.putType (&field, false );
194194
195195 DsqlCompilerScratch& expected = *makeScratch ();
196196 expected.appendUChar (blr_text);
@@ -216,7 +216,7 @@ BOOST_AUTO_TEST_CASE(TestFalseExplicitCollation)
216216
217217 Jrd::TypeClause field = genDefaultFiled (pool);
218218 field.explicitCollation = false ;
219- scratch.putDtype (&field, true );
219+ scratch.putType (&field, true );
220220
221221 DsqlCompilerScratch& expected = *makeScratch ();
222222 expected.appendUChar (blr_column_name3);
@@ -239,7 +239,7 @@ BOOST_AUTO_TEST_CASE(TestFalseExplicitCollation)
239239 field.explicitCollation = false ;
240240 scratch.ddlSchema = field.typeOfTable .schema ;
241241
242- scratch.putDtype (&field, true );
242+ scratch.putType (&field, true );
243243
244244 DsqlCompilerScratch& expected = *makeScratch ();
245245 expected.appendUChar (blr_column_name);
@@ -292,7 +292,7 @@ BOOST_AUTO_TEST_CASE(TestEmptyTypeOfTable)
292292 DsqlCompilerScratch& scratch = *makeScratch ();
293293 Jrd::TypeClause field = genDefaultFiled (pool);
294294 field.typeOfTable .clear ();
295- scratch.putDtype (&field, true );
295+ scratch.putType (&field, true );
296296
297297 DsqlCompilerScratch& expected = *makeScratch ();
298298 expected.appendUChar (blr_domain_name3);
@@ -315,7 +315,7 @@ BOOST_AUTO_TEST_CASE(TestEmptyTypeOfTable)
315315 field.typeOfTable .clear ();
316316
317317 scratch.ddlSchema = field.typeOfName .schema ;
318- scratch.putDtype (&field, true );
318+ scratch.putType (&field, true );
319319
320320 DsqlCompilerScratch& expected = *makeScratch ();
321321 expected.appendUChar (blr_domain_name2);
0 commit comments