@@ -2045,7 +2045,7 @@ bool CreateAlterFunctionNode::executeAlterIndividualParameters(thread_db* tdbb,
20452045{
20462046 Attachment* const attachment = transaction->getAttachment();
20472047
2048- bool modifed = false;
2048+ bool modified = false;
20492049
20502050 AutoCacheRequest requestHandle(tdbb, drq_m_prm_funcs2, DYN_REQUESTS);
20512051
@@ -2083,12 +2083,12 @@ bool CreateAlterFunctionNode::executeAlterIndividualParameters(thread_db* tdbb,
20832083 FUN.RDB$SQL_SECURITY.NULL = TRUE;
20842084 }
20852085
2086- modifed = true;
2086+ modified = true;
20872087 END_MODIFY
20882088 }
20892089 END_FOR
20902090
2091- return modifed ;
2091+ return modified ;
20922092}
20932093
20942094void CreateAlterFunctionNode::storeArgument(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
@@ -3013,7 +3013,7 @@ bool CreateAlterProcedureNode::executeAlterIndividualParameters(thread_db* tdbb,
30133013{
30143014 Attachment* const attachment = transaction->getAttachment();
30153015
3016- bool modifed = false;
3016+ bool modified = false;
30173017
30183018 AutoCacheRequest requestHandle(tdbb, drq_m_prm_prcs2, DYN_REQUESTS);
30193019
@@ -3047,12 +3047,12 @@ bool CreateAlterProcedureNode::executeAlterIndividualParameters(thread_db* tdbb,
30473047 P.RDB$SQL_SECURITY.NULL = TRUE;
30483048 }
30493049
3050- modifed = true;
3050+ modified = true;
30513051 END_MODIFY
30523052 }
30533053 END_FOR
30543054
3055- return modifed ;
3055+ return modified ;
30563056}
30573057
30583058void CreateAlterProcedureNode::storeParameter(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
@@ -5198,7 +5198,7 @@ void AlterDomainNode::execute(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
51985198 newDom.dyn_null_flag = type->notNull;
51995199
52005200 // Now that we have all of the information needed, let's check to see if the field
5201- // type can be modifed .
5201+ // type can be modified .
52025202
52035203 checkUpdate(origDom, newDom);
52045204
0 commit comments