8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:43:03 +01:00
This commit is contained in:
asfernandes 2006-08-27 02:48:51 +00:00
parent fae26f1ab2
commit 18b57e55b5
3 changed files with 4 additions and 5 deletions

View File

@ -181,9 +181,8 @@ and trigger-new is:
*/
/* Version 8: RDB$RELATION_TYPE in relations
RDB$PROCEDURE_TYPE in procedures
RDB$PROCEDURE_TYPE and RDB$VALID_BLR in procedures
RDB$VALID_BLR in triggers
RDB$VALID_BLR in procedures
RDB$DEFAULT_VALUE, RDB$DEFAULT_SOURCE and RDB$COLLATION_ID in procedure_parameters
*/

View File

@ -1708,6 +1708,7 @@ static void show_proc_charsets(
PRP2.RDB$PARAMETER_NAME EQ PRP.RDB$PARAMETER_NAME
prp_collation_null = PRP2.RDB$COLLATION_ID.NULL;
if (!prp_collation_null)
collation = PRP2.RDB$COLLATION_ID;
END_FOR
}

View File

@ -937,8 +937,7 @@ OptimizerRetrieval::~OptimizerRetrieval()
**************************************/
InversionCandidate** invCandidate = inversionCandidates.begin();
int i = 0;
for (; i < inversionCandidates.getCount(); ++i) {
for (int i = 0; i < inversionCandidates.getCount(); ++i) {
delete inversionCandidates[i];
}
}