Commit 552561e2 authored by jcole@tetra.spaceapes.com's avatar jcole@tetra.spaceapes.com
Browse files

Fixed brain-o in sql/table.cc that broke build.

check_db_name() referenced a non-existant variable.
parent acd45847
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1033,7 +1033,7 @@ char *get_field(MEM_ROOT *mem, TABLE *table, uint fieldnr)

bool check_db_name(const char *name)
{
  const char *start=end;
  const char *start=name;
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)