1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

opt_range.cc:

Added missing `;' to DBUG_RETURN()


sql/opt_range.cc:
  Added missing `;' to DBUG_RETURN()
This commit is contained in:
unknown
2005-06-28 04:33:06 +02:00
parent f3dd815156
commit f7780a1cc2

View File

@ -982,7 +982,7 @@ get_mm_parts(PARAM *param, COND *cond_func, Field *field,
field, Item_func::GT_FUNC, field, Item_func::GT_FUNC,
value, cmp_type); value, cmp_type);
if (!tree2) if (!tree2)
DBUG_RETURN(0) DBUG_RETURN(0);
tree= tree_or(param,tree,tree2); tree= tree_or(param,tree,tree2);
} }
DBUG_RETURN(tree); DBUG_RETURN(tree);