1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Post-review addition to the fix for mdev-10868.

This commit is contained in:
Igor Babaev
2016-09-30 13:13:18 -07:00
parent 061d28207d
commit 6681a4998e
3 changed files with 50 additions and 3 deletions

View File

@@ -107,7 +107,11 @@ Window_frame::print(String *str, enum_query_type query_type)
case UNITS_ROWS:
str->append(STRING_WITH_LEN(" rows "));
break;
case UNITS_RANGE: str->append(STRING_WITH_LEN(" range "));
case UNITS_RANGE:
str->append(STRING_WITH_LEN(" range "));
break;
default:
DBUG_ASSERT(0);
}
str->append(STRING_WITH_LEN("between "));
@@ -129,6 +133,7 @@ Window_frame::print(String *str, enum_query_type query_type)
str->append(STRING_WITH_LEN(" ties "));
break;
default:
DBUG_ASSERT(0);
;
}
}