~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/ut0rbt.h

  • Committer: Brian Aker
  • Date: 2010-12-08 18:53:46 UTC
  • mto: This revision was merged to the branch mainline in revision 1983.
  • Revision ID: brian@tangent.org-20101208185346-89uak2ofyivk1yss
Update schema, make sure that it always ruturns a valid string (it just
makes the entire interface simpler to use).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************//**
2
2
 
3
 
Copyright (C) 2007, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 2007, 2010, Innobase Oy. All Rights Reserved.
4
4
 
5
5
Portions of this file contain modifications contributed and copyrighted by
6
6
Sun Microsystems, Inc. Those modifications are gratefully acknowledged and
53
53
/* Red black tree typedefs */
54
54
typedef struct ib_rbt_struct ib_rbt_t;
55
55
typedef struct ib_rbt_node_struct ib_rbt_node_t;
56
 
/* FIXME: Iterator is a better name than _bound_ */
 
56
// FIXME: Iterator is a better name than _bound_
57
57
typedef struct ib_rbt_bound_struct ib_rbt_bound_t;
58
58
typedef void (*ib_rbt_print_node)(const ib_rbt_node_t* node);
59
59
typedef int (*ib_rbt_compare)(const void* p1, const void* p2);