mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
MWL#17: Table elimination
- Fix trivial valgrind failures that shown up after review
This commit is contained in:
parent
405a36ae39
commit
8c00930642
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue