summaryrefslogtreecommitdiff
path: root/sql/sql_lex.h
diff options
context:
space:
mode:
authorRohit Kalhans <rohit.kalhans@oracle.com>2012-02-08 12:10:55 +0530
committerRohit Kalhans <rohit.kalhans@oracle.com>2012-02-08 12:10:55 +0530
commitb7430d73e4be2f5933e147ba7a44e3b054cb79b7 (patch)
treee58195a7225032197fd3df4e5727a459c791c2f8 /sql/sql_lex.h
parentde85a60049af7af2cfdaa6f642e4ea7b7189afbe (diff)
downloadmariadb-git-b7430d73e4be2f5933e147ba7a44e3b054cb79b7.tar.gz
Backout the patch for bug#11758263.
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r--sql/sql_lex.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h
index 1de92057b1f..8aaead811a0 100644
--- a/sql/sql_lex.h
+++ b/sql/sql_lex.h
@@ -1269,13 +1269,6 @@ public:
BINLOG_STMT_UNSAFE_INSERT_SELECT_UPDATE,
/**
- Query that writes to a table with auto_inc column after selecting from
- other tables are unsafe as the order in which the rows are retrieved by
- select may differ on master and slave.
- */
- BINLOG_STMT_UNSAFE_WRITE_AUTOINC_SELECT,
-
- /**
INSERT...REPLACE SELECT is unsafe because which rows are replaced depends
on the order that rows are retrieved by SELECT. This order cannot be
predicted and may differ on master and the slave.
@@ -1297,14 +1290,6 @@ public:
BINLOG_STMT_UNSAFE_CREATE_REPLACE_SELECT,
/**
- CREATE TABLE...SELECT on a table with auto-increment column is unsafe
- because which rows are replaced depends on the order that rows are
- retrieved from SELECT. This order cannot be predicted and may differ on
- master and the slave
- */
- BINLOG_STMT_UNSAFE_CREATE_SELECT_AUTOINC,
-
- /**
UPDATE...IGNORE is unsafe because which rows are ignored depends on the
order that rows are updated. This order cannot be predicted and may differ
on master and the slave.