1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

After-merge fixes for merge 10.0-base -> 10.0.

This commit is contained in:
unknown
2012-12-18 22:03:53 +01:00
parent 701419b02f
commit 5fe8e9f244
2 changed files with 3 additions and 2 deletions

View File

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