Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. if (!prebuilt->sql_stat_start) {
  2. /* No need to set an intention lock or assign a read view */
  3.  
  4. if (trx->read_view == NULL
  5. && prebuilt->select_lock_type == LOCK_NONE) {
  6.  
  7. fputs("InnoDB: Error: MySQL is trying to"
  8. " perform a consistent read\n"
  9. "InnoDB: but the read view is not assigned!\n",
  10. stderr);
  11. trx_print(stderr, trx, 600);
  12. fputc('\n', stderr);
  13. ut_a(0);
  14. }
Add Comment
Please, Sign In to add comment