Skip to content

Commit

Permalink
Revert "MDEV-13115: SKIP LOCKED postfix"
Browse files Browse the repository at this point in the history
This reverts commit 51630d5.

Monty has more comprehensive fix coming in his branch.
  • Loading branch information
grooverdan committed Apr 10, 2021
1 parent 51630d5 commit 88af187
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sql/sql_lex.h
Original file line number Diff line number Diff line change
Expand Up @@ -1295,13 +1295,13 @@ class st_select_lex: public st_select_lex_node
bool exclude_from_table_unique_test;
/* the select is "service-select" and can not have tables*/
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] */
bool skip_locked;
enum select_lock_type {NONE, IN_SHARE_MODE, FOR_UPDATE};
enum select_lock_type select_lock;

/* index in the select list of the expression currently being fixed */
int cur_pos_in_select_list;
bool skip_locked;

List<udf_func> udf_list; /* udf function calls stack */

Expand Down

0 comments on commit 88af187

Please sign in to comment.