Commit 88af187d authored by Daniel Black's avatar Daniel Black

Revert "MDEV-13115: SKIP LOCKED postfix"

This reverts commit 51630d59.

Monty has more comprehensive fix coming in his branch.
parent 51630d59
...@@ -1295,13 +1295,13 @@ class st_select_lex: public st_select_lex_node ...@@ -1295,13 +1295,13 @@ class st_select_lex: public st_select_lex_node
bool exclude_from_table_unique_test; bool exclude_from_table_unique_test;
/* the select is "service-select" and can not have tables*/ /* the select is "service-select" and can not have tables*/
bool is_service_select; bool is_service_select;
/* index in the select list of the expression currently being fixed */
int cur_pos_in_select_list;
/* SELECT [FOR UPDATE/LOCK IN SHARE MODE] [SKIP LOCKED] */ /* SELECT [FOR UPDATE/LOCK IN SHARE MODE] [SKIP LOCKED] */
bool skip_locked;
enum select_lock_type {NONE, IN_SHARE_MODE, FOR_UPDATE}; enum select_lock_type {NONE, IN_SHARE_MODE, FOR_UPDATE};
enum select_lock_type select_lock; enum select_lock_type select_lock;
bool skip_locked;
/* index in the select list of the expression currently being fixed */
int cur_pos_in_select_list;
List<udf_func> udf_list; /* udf function calls stack */ List<udf_func> udf_list; /* udf function calls stack */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment