8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 18:43:03 +01:00

Fix typos found by Tom Cole

This commit is contained in:
arnobrinkman 2005-03-13 12:17:32 +00:00
parent 608df8b7d5
commit eac753f709

View File

@ -1466,7 +1466,7 @@ void MAKE_desc_from_list(dsc* desc, dsql_nod* node,
}
any_blob = true;
if (desc1.dsc_sub_type = 1) {
if (desc1.dsc_sub_type == 1) {
// TEXT BLOB
if (!any_text_blob) {
// Save first characterset and collation
@ -1582,7 +1582,7 @@ void MAKE_desc_from_list(dsc* desc, dsql_nod* node,
// If all of the arguments are the same BLOB datattype.
desc->dsc_dtype = max_dtype;
desc->dsc_sub_type = max_sub_type;
if (max_sub_type = 1) {
if (max_sub_type == 1) {
// TEXT BLOB
desc->dsc_scale = ttype;
}