mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +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,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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue