From eac753f7092c1fbb25e9e6735fbfdf55eddce32b Mon Sep 17 00:00:00 2001 From: arnobrinkman Date: Sun, 13 Mar 2005 12:17:32 +0000 Subject: [PATCH] Fix typos found by Tom Cole --- src/dsql/make.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dsql/make.cpp b/src/dsql/make.cpp index 11c69cec4f..b672788fa4 100644 --- a/src/dsql/make.cpp +++ b/src/dsql/make.cpp @@ -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; }