mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 02:43:03 +01:00
Misc
This commit is contained in:
parent
fae26f1ab2
commit
18b57e55b5
@ -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
|
||||
|
||||
*/
|
||||
|
@ -1708,7 +1708,8 @@ static void show_proc_charsets(
|
||||
PRP2.RDB$PARAMETER_NAME EQ PRP.RDB$PARAMETER_NAME
|
||||
|
||||
prp_collation_null = PRP2.RDB$COLLATION_ID.NULL;
|
||||
collation = PRP2.RDB$COLLATION_ID;
|
||||
if (!prp_collation_null)
|
||||
collation = PRP2.RDB$COLLATION_ID;
|
||||
END_FOR
|
||||
}
|
||||
|
||||
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user