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,7 +40,7 @@
Table elimination is redone on every PS re-execution.
*/
class Value_dep
class Value_dep : public Sql_alloc
{
public:
enum {
@ -48,6 +48,9 @@ public:
VALUE_TABLE,
} type; /* Type of the object */
Value_dep(): bound(FALSE), next(NULL)
{}
bool bound;
Value_dep *next;
};