~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/defs_ms.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
 
1
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
2
 *
3
3
 * PrimeBase Media Stream for MySQL
4
4
 *
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 *
19
19
 * Original author: Paul McCullagh (H&G2JCtL)
20
20
 * Continued development: Barry Leslie
115
115
#define MS_DEFAULT_KEEP_ALIVE           (10) 
116
116
 
117
117
#ifdef DRIZZLED
 
118
#include <boost/dynamic_bitset.hpp>
118
119
/* Drizzle is stuck at this level: */
119
120
#define MYSQL_VERSION_ID                                        60005
120
121
 
131
132
#define MYSQL_THD                                                       Session *
132
133
#define THR_THD                                                         THR_Session
133
134
#define STRUCT_TABLE                                            class Table
134
 
#define MY_BITMAP                                                       MyBitmap
 
135
#define MY_BITMAP                                                       boost::dynamic_bitset<>
135
136
 
136
137
#define MYSQL_TYPE_TIMESTAMP                            DRIZZLE_TYPE_TIMESTAMP
137
138
#define MYSQL_TYPE_LONG                                         DRIZZLE_TYPE_LONG
143
144
#define MYSQL_TYPE_LONG_BLOB                            DRIZZLE_TYPE_BLOB
144
145
#define MYSQL_TYPE_ENUM                                         DRIZZLE_TYPE_ENUM
145
146
#define MYSQL_PLUGIN_VAR_HEADER                         DRIZZLE_PLUGIN_VAR_HEADER
146
 
#define MYSQL_SYSVAR_STR                                        DRIZZLE_SYSVAR_STR
147
 
#define MYSQL_SYSVAR_INT                                        DRIZZLE_SYSVAR_INT
148
 
#define MYSQL_SYSVAR                                            DRIZZLE_SYSVAR
149
 
#define MYSQL_SYSVAR_ULONG                                      DRIZZLE_SYSVAR_ULONG
150
 
#define MYSQL_SYSVAR_ULONGLONG                          DRIZZLE_SYSVAR_ULONGLONG
151
 
#define MYSQL_SYSVAR_BOOL                                       DRIZZLE_SYSVAR_BOOL
152
147
#define MYSQL_STORAGE_ENGINE_PLUGIN                     DRIZZLE_STORAGE_ENGINE_PLUGIN
153
148
#define MYSQL_INFORMATION_SCHEMA_PLUGIN         DRIZZLE_INFORMATION_SCHEMA_PLUGIN
154
149
#define memcpy_fixed                                            memcpy
196
191
#define thd_binlog_format                                       session_binlog_format
197
192
#define thd_mark_transaction_to_rollback        session_mark_transaction_to_rollback
198
193
#define current_thd                                                     current_session
199
 
#define thd_sql_command                                         session_sql_command
 
194
#define thd_sql_command(x)                                              ((x)->getSqlCommand())
200
195
#define thd_test_options                                        session_test_options
201
196
#define thd_killed                                                      session_killed
202
 
#define thd_tx_isolation                                        session_tx_isolation
 
197
#define thd_tx_isolation(x)                                     ((x)->getTxIsolation())
203
198
#define thd_in_lock_tables                                      session_in_lock_tables
204
 
#define thd_tablespace_op                                       session_tablespace_op
 
199
#define thd_tablespace_op(x)                                    ((x)->doingTablespaceOperation())
205
200
#define thd_alloc                                                       session_alloc
206
201
#define thd_make_lex_string                                     session_make_lex_string
207
202