~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/statement_transform.h

Merged trunk and mysql-protocol-password-udf changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
namespace message
44
44
{
45
45
/* some forward declarations */
 
46
class Transaction;
46
47
class Statement;
47
48
class InsertHeader;
48
49
class InsertData;
460
461
 
461
462
drizzled::message::Table::Field::FieldType internalFieldTypeToFieldProtoType(enum enum_field_types type);
462
463
 
 
464
/**
 
465
 * Returns true if the transaction contains any Statement
 
466
 * messages which are not end segments (i.e. a bulk statement has
 
467
 * previously been sent to replicators).
 
468
 *
 
469
 * @param The transaction to check
 
470
 */
 
471
bool transactionContainsBulkSegment(const Transaction &transaction);
 
472
 
463
473
} /* namespace message */
464
474
} /* namespace drizzled */
465
475