diff options
author | unknown <marko@hundin.mysql.fi> | 2004-03-16 12:18:02 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-03-16 12:18:02 +0200 |
commit | 2c5fb79089ee415250628bd59f7682636a4d2535 (patch) | |
tree | 51d8d54018821cb9a03b1909988978f9f28c2572 /innobase/include/que0que.h | |
parent | 9b6e7ac1af588e1d2ed1ef5ec042e44f42a49208 (diff) | |
download | mariadb-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/include/que0que.h')
-rw-r--r-- | innobase/include/que0que.h | 16 |
1 files changed, 0 insertions, 16 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 */ |