diff options
author | unknown <kent@mysql.com> | 2005-06-28 04:33:06 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-06-28 04:33:06 +0200 |
commit | f7780a1cc2da33dd7527b9708c49deb6175a067c (patch) | |
tree | b38bac545b475c3ad73205a8fe13cc840034cfa0 /sql/opt_range.cc | |
parent | f3dd8151569f301d5201d073ba2d94a692353044 (diff) | |
download | mariadb-git-f7780a1cc2da33dd7527b9708c49deb6175a067c.tar.gz |
opt_range.cc:
Added missing `;' to DBUG_RETURN()
sql/opt_range.cc:
Added missing `;' to DBUG_RETURN()
Diffstat (limited to 'sql/opt_range.cc')
-rw-r--r-- | sql/opt_range.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc index 75cf9e6b3f0..9f268804cc3 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -982,7 +982,7 @@ get_mm_parts(PARAM *param, COND *cond_func, Field *field, field, Item_func::GT_FUNC, value, cmp_type); if (!tree2) - DBUG_RETURN(0) + DBUG_RETURN(0); tree= tree_or(param,tree,tree2); } DBUG_RETURN(tree); |