Commit ce04207a authored by kostja@bodhi.(none)'s avatar kostja@bodhi.(none)
Browse files

Fix broken --cursor-protocol (all tests).

parent d42545fb
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -111,7 +111,8 @@ class Select_materialize: public select_union
  select_result *result; /**< the result object of the caller (PS or SP) */
public:
  Materialized_cursor *materialized_cursor;
  Select_materialize(select_result *result_arg) :result(result_arg) {}
  Select_materialize(select_result *result_arg)
    :result(result_arg), materialized_cursor(0) {}
  virtual bool send_fields(List<Item> &list, uint flags);
};