summaryrefslogtreecommitdiff
path: root/innobase/que/que0que.c
diff options
context:
space:
mode:
authorunknown <marko@hundin.mysql.fi>2004-03-16 12:18:02 +0200
committerunknown <marko@hundin.mysql.fi>2004-03-16 12:18:02 +0200
commit2c5fb79089ee415250628bd59f7682636a4d2535 (patch)
tree51d8d54018821cb9a03b1909988978f9f28c2572 /innobase/que/que0que.c
parent9b6e7ac1af588e1d2ed1ef5ec042e44f42a49208 (diff)
downloadmariadb-git-2c5fb79089ee415250628bd59f7682636a4d2535.tar.gz
InnoDB: remove debug code from non-debug version
innobase/include/que0que.h: Remove que_graph_is_select() Make que_node_print_info() a static function innobase/include/que0que.ic: Remove que_graph_is_select() innobase/que/que0que.c: Remove que_node_print_info() unless #ifdef UNIV_DEBUG
Diffstat (limited to 'innobase/que/que0que.c')
-rw-r--r--innobase/que/que0que.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/innobase/que/que0que.c b/innobase/que/que0que.c
index 279f9fc21aa..bff0fe61248 100644
--- a/innobase/que/que0que.c
+++ b/innobase/que/que0que.c
@@ -1034,9 +1034,10 @@ que_thr_stop_for_mysql_no_error(
trx->n_active_thrs--;
}
+#ifdef UNIV_DEBUG
/**************************************************************************
Prints info of an SQL query graph node. */
-
+static
void
que_node_print_info(
/*================*/
@@ -1093,6 +1094,7 @@ que_node_print_info(
fprintf(stderr, "Node type %lu: %s, address %p\n", type, str, node);
}
+#endif /* UNIV_DEBUG */
/**************************************************************************
Performs an execution step on a query thread. */