get rid of the ugly query dump
This commit is contained in:
parent
8fedf2d818
commit
9bae797548
|
@ -6,8 +6,6 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define DEBUG
|
|
||||||
|
|
||||||
#include "err.h"
|
#include "err.h"
|
||||||
#include "query.h"
|
#include "query.h"
|
||||||
|
|
||||||
|
@ -609,6 +607,10 @@ void query_dump(FILE* fp, query_node_t* query, int depth)
|
||||||
"constant"
|
"constant"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifndef DEBUG
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
switch(query->type)
|
switch(query->type)
|
||||||
{
|
{
|
||||||
case qot_and:
|
case qot_and:
|
||||||
|
|
Loading…
Reference in New Issue