From 2c5fb79089ee415250628bd59f7682636a4d2535 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 16 Mar 2004 12:18:02 +0200 Subject: [PATCH] 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 --- innobase/include/que0que.h | 16 ---------------- innobase/include/que0que.ic | 18 ------------------ innobase/que/que0que.c | 4 +++- 3 files changed, 3 insertions(+), 35 deletions(-) diff --git a/innobase/include/que0que.h b/innobase/include/que0que.h index e1874edcaf2..bcd7aed7e88 100644 --- a/innobase/include/que0que.h +++ b/innobase/include/que0que.h @@ -307,22 +307,6 @@ que_thr_peek_stop( mutex reserved is necessary before deciding the actual stopping */ que_thr_t* thr); /* in: query thread */ -/*************************************************************************** -Returns TRUE if the query graph is for a SELECT statement. */ -UNIV_INLINE -ibool -que_graph_is_select( -/*================*/ - /* out: TRUE if a select */ - que_t* graph); /* in: graph */ -/************************************************************************** -Prints info of an SQL query graph node. */ - -void -que_node_print_info( -/*================*/ - que_node_t* node); /* in: query graph node */ - /* Query graph query thread node: the fields are protected by the kernel mutex with the exceptions named below */ diff --git a/innobase/include/que0que.ic b/innobase/include/que0que.ic index ae4ed10560f..a63922f8c80 100644 --- a/innobase/include/que0que.ic +++ b/innobase/include/que0que.ic @@ -238,21 +238,3 @@ que_thr_peek_stop( return(FALSE); } - -/*************************************************************************** -Returns TRUE if the query graph is for a SELECT statement. */ -UNIV_INLINE -ibool -que_graph_is_select( -/*================*/ - /* out: TRUE if a select */ - que_t* graph) /* in: graph */ -{ - if (graph->fork_type == QUE_FORK_SELECT_SCROLL - || graph->fork_type == QUE_FORK_SELECT_NON_SCROLL) { - - return(TRUE); - } - - return(FALSE); -} 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. */