MWL#17: Table elimination

- Fix trivial valgrind failures that shown up after review
This commit is contained in:
Sergey Petrunya 2009-08-16 10:25:24 +03:00
commit 8c00930642

View file

@ -40,13 +40,16 @@
Table elimination is redone on every PS re-execution.
*/
class Value_dep
class Value_dep : public Sql_alloc
{
public:
enum {
VALUE_FIELD,
VALUE_TABLE,
} type; /* Type of the object */
Value_dep(): bound(FALSE), next(NULL)
{}
bool bound;
Value_dep *next;