Commit 55fb3cae authored by unknown's avatar unknown
Browse files

A couple of adjustments to the merge to fix the broken build

instance.cc:
  Removed wrongly placed closing brace
item_geofunc.cc:
  needed to pass in a TABLE_SHARE* instead of a TABLE*


server-tools/instance-manager/instance.cc:
  Removed wrongly placed closing brace
sql/item_geofunc.cc:
  needed to pass in a TABLE_SHARE* instead of a TABLE*
parent 703717c7
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -512,7 +512,6 @@ int Instance::stop()
      */
      waitchild= options.shutdown_delay_val;
    }
  }

    kill_instance(SIGTERM);
    /* sleep on condition to wait for SIGCHLD */
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@

Field *Item_geometry_func::tmp_table_field(TABLE *t_arg)
{
  return new Field_geom(max_length, maybe_null, name, t_arg,
  return new Field_geom(max_length, maybe_null, name, t_arg->s,
                        (Field::geometry_type) get_geometry_type());
}