~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Lee Bieber
  • Date: 2011-02-10 21:02:41 UTC
  • mfrom: (2154.1.3 build)
  • Revision ID: kalebral@gmail.com-20110210210241-jouae2uw2pwv6bac
Merge Patrick - 715885: dbqp needs to return non-zero if tests fail
Merge Stewart - 715539: (get|set)_session_proc_info() still exists
Merge Stewart - 715575: misc session_foo() functions exist - should be methods in Session
Merge Stewart - 712843: SAVEPOINT after rollback due to deadlock with autocommit=off in transaction will call startTransaction with an existing transaction where one shouldn't exist

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
extern void plugin_sessionvar_cleanup(Session *session);
182
182
 
183
183
int session_in_lock_tables(const Session *session);
184
 
DRIZZLED_API int session_tablespace_op(const Session *session);
185
 
DRIZZLED_API void set_session_proc_info(Session *session, const char *info);
186
 
DRIZZLED_API const char *get_session_proc_info(Session *session);
187
184
DRIZZLED_API int64_t session_test_options(const Session *session, int64_t test_options);
188
 
DRIZZLED_API int session_sql_command(const Session *session);
189
 
DRIZZLED_API enum_tx_isolation session_tx_isolation(const Session *session);
190
 
 
191
185
void compose_plugin_add(std::vector<std::string> options);
192
186
void compose_plugin_remove(std::vector<std::string> options);
193
187
void notify_plugin_load(std::string in_plugin_load);