1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge mdev-452 with the latest 10.0-base.

This commit is contained in:
unknown
2012-10-18 15:57:12 +03:00
61 changed files with 5461 additions and 591 deletions

View File

@@ -4216,6 +4216,16 @@ public:
*/
#define CF_FORCE_ORIGINAL_BINLOG_FORMAT (1U << 10)
/**
Statement that inserts new rows (INSERT, REPLACE, LOAD, ALTER TABLE)
*/
#define CF_INSERTS_DATA (1U << 11)
/**
Statement that updates existing rows (UPDATE, multi-update)
*/
#define CF_UPDATES_DATA (1U << 12)
/* Bits in server_command_flags */
/**