diff --git a/home/isucon/webapp/go/isuconquest b/home/isucon/webapp/go/isuconquest index 8234dfd..b2fecdd 100755 Binary files a/home/isucon/webapp/go/isuconquest and b/home/isucon/webapp/go/isuconquest differ diff --git a/home/isucon/webapp/go/main.go b/home/isucon/webapp/go/main.go index 207dc51..02f5135 100644 --- a/home/isucon/webapp/go/main.go +++ b/home/isucon/webapp/go/main.go @@ -1275,6 +1275,7 @@ func (h *Handler) receivePresent(c echo.Context) error { return errorResponse(c, http.StatusInternalServerError, err) } + var amount int64 // 配布処理 for i := range obtainPresent { if obtainPresent[i].DeletedAt != nil { @@ -1288,32 +1289,10 @@ func (h *Handler) receivePresent(c echo.Context) error { // _, _, _, err = h.obtainItem(tx, v.UserID, v.ItemID, v.ItemType, int64(v.Amount), requestAt) switch v.ItemType { case 1: // coin - query := "UPDATE users SET isu_coin=isu_coin+? WHERE id=?" - if _, err := tx.Exec(query, int64(v.Amount), userID); err != nil { - return errorResponse(c, http.StatusInternalServerError, err) - } - + amount += int64(v.Amount) case 2: // card(ハンマー) - query := "SELECT * FROM item_masters WHERE id=? AND item_type=?" - item := new(ItemMaster) - if err := tx.Get(item, query, v.ItemID, v.ItemType); err != nil { - if err == sql.ErrNoRows { - return errorResponse(c, http.StatusNotFound, err) - } - return errorResponse(c, http.StatusInternalServerError, err) - } - - card := &UserCard{ - UserID: userID, - CardID: item.ID, - AmountPerSec: *item.AmountPerSec, - Level: 1, - TotalExp: 0, - CreatedAt: requestAt, - UpdatedAt: requestAt, - } - query = "INSERT INTO user_cards(user_id, card_id, amount_per_sec, level, total_exp, created_at, updated_at) VALUES (?, ?, ?, ?, ?, ?, ?)" - if _, err := tx.Exec(query, card.UserID, card.CardID, card.AmountPerSec, card.Level, card.TotalExp, card.CreatedAt, card.UpdatedAt); err != nil { + query = "INSERT INTO user_cards(user_id, card_id, amount_per_sec, level, total_exp, created_at, updated_at) SELECT ?, id, amount_per_sec, 1, 0, ?, ? FROM item_masters WHERE id=? AND item_type=2" + if _, err := tx.Exec(query, userID, requestAt, requestAt, v.ItemID); err != nil { return errorResponse(c, http.StatusInternalServerError, err) } case 3, 4: // 強化素材 @@ -1365,6 +1344,12 @@ func (h *Handler) receivePresent(c echo.Context) error { } } } + if amount > 0 { + query := "UPDATE users SET isu_coin=isu_coin+? WHERE id = ?" + if _, err := tx.Exec(query, amount, userID); err != nil { + return errorResponse(c, http.StatusInternalServerError, err) + } + } err = tx.Commit() if err != nil { diff --git a/result/kataribe.txt b/result/kataribe.txt index ddef3ae..322835a 100644 --- a/result/kataribe.txt +++ b/result/kataribe.txt @@ -1,143 +1,143 @@ Top 60 Sort By Count Count Total Mean Stddev Min P50.0 P99.0 P99.9 Max 2xx 3xx 4xx 5xx TotalBytes MinBytes MeanBytes MaxBytes Request - 5167 323.344 0.0626 0.0818 0.000 0.032 0.372 0.617 0.693 5150 0 17 0 22144012 0 4285 12770 GET /user//present/index/ HTTP/1.1 - 5149 1771.271 0.3440 0.3298 0.004 0.257 1.406 2.075 2.439 5108 0 41 0 24555247 0 4768 14292 POST /user//present/receive HTTP/1.1 - 3798 100.896 0.0266 0.0403 0.000 0.014 0.187 0.400 0.711 3794 0 4 0 1475661 42 388 393 GET /user//home HTTP/1.1 - 3747 180.573 0.0482 0.0577 0.000 0.031 0.267 0.456 0.891 3724 0 23 0 32263298 0 8610 8677 GET /user//gacha/index HTTP/1.1 - 3725 411.586 0.1105 0.1179 0.001 0.075 0.485 0.829 0.922 3700 0 25 0 7703039 0 2067 2097 POST /user//gacha/draw//10 HTTP/1.1 - 3192 374.070 0.1172 0.1394 0.000 0.066 0.605 0.844 1.290 2397 0 794 1 3736266 0 1170 3527 POST /login HTTP/1.1 - 2394 86.915 0.0363 0.0471 0.001 0.021 0.213 0.466 0.593 2393 0 1 0 515175 0 215 217 POST /user//reward HTTP/1.1 - 1418 335.249 0.2364 0.2465 0.004 0.169 1.064 1.548 2.400 1401 0 17 0 10161592 0 7166 7328 POST /user HTTP/1.1 - 1362 51.687 0.0379 0.0480 0.001 0.021 0.251 0.319 0.402 1352 0 10 0 2055558 0 1509 5114 GET /user//item HTTP/1.1 - 1352 96.369 0.0713 0.0747 0.001 0.048 0.315 0.543 0.553 1347 0 5 0 447508 0 330 337 POST /user//card/addexp/ HTTP/1.1 - 1348 51.210 0.0380 0.0508 0.001 0.022 0.226 0.486 0.515 1345 0 3 0 283845 0 210 211 POST /user//card HTTP/1.1 - 4 0.354 0.0885 0.0522 0.002 0.106 0.142 0.142 0.142 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 - 1 0.181 0.1810 0.0000 0.181 0.181 0.181 0.181 0.181 1 0 0 0 39510 39510 39510 39510 GET /admin/user/ HTTP/1.1 - 1 0.011 0.0110 0.0000 0.011 0.011 0.011 0.011 0.011 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 5724 414.678 0.0724 0.0949 0.000 0.035 0.419 0.687 0.793 5632 0 31 61 23993796 0 4191 12576 GET /user//present/index/ HTTP/1.1 + 5624 1675.826 0.2980 0.3266 0.000 0.192 1.443 2.066 2.260 5549 0 42 33 26448417 0 4702 14075 POST /user//present/receive HTTP/1.1 + 4081 117.800 0.0289 0.0426 0.000 0.014 0.215 0.370 0.473 4038 0 25 18 1573148 0 385 393 GET /user//home HTTP/1.1 + 3987 189.284 0.0475 0.0597 0.000 0.027 0.268 0.475 0.663 3910 0 15 62 33878802 0 8497 8677 GET /user//gacha/index HTTP/1.1 + 3973 467.887 0.1178 0.1310 0.000 0.078 0.584 0.839 0.899 3873 0 48 52 8072224 0 2031 2097 POST /user//gacha/draw//10 HTTP/1.1 + 3376 412.657 0.1222 0.1551 0.000 0.056 0.663 1.050 1.102 2358 0 838 180 3652031 0 1081 3527 POST /login HTTP/1.1 + 2341 86.857 0.0371 0.0484 0.000 0.020 0.224 0.445 0.470 2323 0 12 6 500651 0 213 217 POST /user//reward HTTP/1.1 + 1970 464.710 0.2359 0.2561 0.000 0.164 1.021 1.449 1.457 1723 0 25 222 12518026 0 6354 7328 POST /user HTTP/1.1 + 1664 65.902 0.0396 0.0533 0.000 0.020 0.273 0.384 0.532 1630 0 2 32 2451735 0 1473 4972 GET /user//item HTTP/1.1 + 1622 65.212 0.0402 0.0496 0.000 0.024 0.239 0.353 0.408 1614 0 5 3 340799 0 210 211 POST /user//card HTTP/1.1 + 1599 130.089 0.0814 0.0863 0.001 0.055 0.361 0.485 0.624 1590 0 8 1 528287 0 330 337 POST /user//card/addexp/ HTTP/1.1 + 4 0.394 0.0985 0.0567 0.002 0.123 0.148 0.148 0.148 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 1 0.001 0.0010 0.0000 0.001 0.001 0.001 0.001 0.001 1 0 0 0 178 178 178 178 POST /admin/user//ban HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 - 1 26.215 26.2150 0.0000 26.215 26.215 26.215 26.215 26.215 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 + 1 25.735 25.7350 0.0000 25.735 25.735 25.735 25.735 25.735 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 1 0.006 0.0060 0.0000 0.006 0.006 0.006 0.006 0.006 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 1 0.136 0.1360 0.0000 0.136 0.136 0.136 0.136 0.136 1 0 0 0 40754 40754 40754 40754 GET /admin/user/ HTTP/1.1 Top 60 Sort By Total Count Total Mean Stddev Min P50.0 P99.0 P99.9 Max 2xx 3xx 4xx 5xx TotalBytes MinBytes MeanBytes MaxBytes Request - 5149 1771.271 0.3440 0.3298 0.004 0.257 1.406 2.075 2.439 5108 0 41 0 24555247 0 4768 14292 POST /user//present/receive HTTP/1.1 - 3725 411.586 0.1105 0.1179 0.001 0.075 0.485 0.829 0.922 3700 0 25 0 7703039 0 2067 2097 POST /user//gacha/draw//10 HTTP/1.1 - 3192 374.070 0.1172 0.1394 0.000 0.066 0.605 0.844 1.290 2397 0 794 1 3736266 0 1170 3527 POST /login HTTP/1.1 - 1418 335.249 0.2364 0.2465 0.004 0.169 1.064 1.548 2.400 1401 0 17 0 10161592 0 7166 7328 POST /user HTTP/1.1 - 5167 323.344 0.0626 0.0818 0.000 0.032 0.372 0.617 0.693 5150 0 17 0 22144012 0 4285 12770 GET /user//present/index/ HTTP/1.1 - 3747 180.573 0.0482 0.0577 0.000 0.031 0.267 0.456 0.891 3724 0 23 0 32263298 0 8610 8677 GET /user//gacha/index HTTP/1.1 - 3798 100.896 0.0266 0.0403 0.000 0.014 0.187 0.400 0.711 3794 0 4 0 1475661 42 388 393 GET /user//home HTTP/1.1 - 1352 96.369 0.0713 0.0747 0.001 0.048 0.315 0.543 0.553 1347 0 5 0 447508 0 330 337 POST /user//card/addexp/ HTTP/1.1 - 2394 86.915 0.0363 0.0471 0.001 0.021 0.213 0.466 0.593 2393 0 1 0 515175 0 215 217 POST /user//reward HTTP/1.1 - 1362 51.687 0.0379 0.0480 0.001 0.021 0.251 0.319 0.402 1352 0 10 0 2055558 0 1509 5114 GET /user//item HTTP/1.1 - 1348 51.210 0.0380 0.0508 0.001 0.022 0.226 0.486 0.515 1345 0 3 0 283845 0 210 211 POST /user//card HTTP/1.1 - 1 26.215 26.2150 0.0000 26.215 26.215 26.215 26.215 26.215 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 - 4 0.354 0.0885 0.0522 0.002 0.106 0.142 0.142 0.142 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 - 1 0.181 0.1810 0.0000 0.181 0.181 0.181 0.181 0.181 1 0 0 0 39510 39510 39510 39510 GET /admin/user/ HTTP/1.1 - 1 0.011 0.0110 0.0000 0.011 0.011 0.011 0.011 0.011 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 5624 1675.826 0.2980 0.3266 0.000 0.192 1.443 2.066 2.260 5549 0 42 33 26448417 0 4702 14075 POST /user//present/receive HTTP/1.1 + 3973 467.887 0.1178 0.1310 0.000 0.078 0.584 0.839 0.899 3873 0 48 52 8072224 0 2031 2097 POST /user//gacha/draw//10 HTTP/1.1 + 1970 464.710 0.2359 0.2561 0.000 0.164 1.021 1.449 1.457 1723 0 25 222 12518026 0 6354 7328 POST /user HTTP/1.1 + 5724 414.678 0.0724 0.0949 0.000 0.035 0.419 0.687 0.793 5632 0 31 61 23993796 0 4191 12576 GET /user//present/index/ HTTP/1.1 + 3376 412.657 0.1222 0.1551 0.000 0.056 0.663 1.050 1.102 2358 0 838 180 3652031 0 1081 3527 POST /login HTTP/1.1 + 3987 189.284 0.0475 0.0597 0.000 0.027 0.268 0.475 0.663 3910 0 15 62 33878802 0 8497 8677 GET /user//gacha/index HTTP/1.1 + 1599 130.089 0.0814 0.0863 0.001 0.055 0.361 0.485 0.624 1590 0 8 1 528287 0 330 337 POST /user//card/addexp/ HTTP/1.1 + 4081 117.800 0.0289 0.0426 0.000 0.014 0.215 0.370 0.473 4038 0 25 18 1573148 0 385 393 GET /user//home HTTP/1.1 + 2341 86.857 0.0371 0.0484 0.000 0.020 0.224 0.445 0.470 2323 0 12 6 500651 0 213 217 POST /user//reward HTTP/1.1 + 1664 65.902 0.0396 0.0533 0.000 0.020 0.273 0.384 0.532 1630 0 2 32 2451735 0 1473 4972 GET /user//item HTTP/1.1 + 1622 65.212 0.0402 0.0496 0.000 0.024 0.239 0.353 0.408 1614 0 5 3 340799 0 210 211 POST /user//card HTTP/1.1 + 1 25.735 25.7350 0.0000 25.735 25.735 25.735 25.735 25.735 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 + 4 0.394 0.0985 0.0567 0.002 0.123 0.148 0.148 0.148 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 + 1 0.136 0.1360 0.0000 0.136 0.136 0.136 0.136 0.136 1 0 0 0 40754 40754 40754 40754 GET /admin/user/ HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 1 0.006 0.0060 0.0000 0.006 0.006 0.006 0.006 0.006 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 1 0.001 0.0010 0.0000 0.001 0.001 0.001 0.001 0.001 1 0 0 0 178 178 178 178 POST /admin/user//ban HTTP/1.1 Top 60 Sort By Mean Count Total Mean Stddev Min P50.0 P99.0 P99.9 Max 2xx 3xx 4xx 5xx TotalBytes MinBytes MeanBytes MaxBytes Request - 1 26.215 26.2150 0.0000 26.215 26.215 26.215 26.215 26.215 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 - 5149 1771.271 0.3440 0.3298 0.004 0.257 1.406 2.075 2.439 5108 0 41 0 24555247 0 4768 14292 POST /user//present/receive HTTP/1.1 - 1418 335.249 0.2364 0.2465 0.004 0.169 1.064 1.548 2.400 1401 0 17 0 10161592 0 7166 7328 POST /user HTTP/1.1 - 1 0.181 0.1810 0.0000 0.181 0.181 0.181 0.181 0.181 1 0 0 0 39510 39510 39510 39510 GET /admin/user/ HTTP/1.1 - 3192 374.070 0.1172 0.1394 0.000 0.066 0.605 0.844 1.290 2397 0 794 1 3736266 0 1170 3527 POST /login HTTP/1.1 - 3725 411.586 0.1105 0.1179 0.001 0.075 0.485 0.829 0.922 3700 0 25 0 7703039 0 2067 2097 POST /user//gacha/draw//10 HTTP/1.1 - 4 0.354 0.0885 0.0522 0.002 0.106 0.142 0.142 0.142 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 - 1352 96.369 0.0713 0.0747 0.001 0.048 0.315 0.543 0.553 1347 0 5 0 447508 0 330 337 POST /user//card/addexp/ HTTP/1.1 - 5167 323.344 0.0626 0.0818 0.000 0.032 0.372 0.617 0.693 5150 0 17 0 22144012 0 4285 12770 GET /user//present/index/ HTTP/1.1 - 3747 180.573 0.0482 0.0577 0.000 0.031 0.267 0.456 0.891 3724 0 23 0 32263298 0 8610 8677 GET /user//gacha/index HTTP/1.1 - 1348 51.210 0.0380 0.0508 0.001 0.022 0.226 0.486 0.515 1345 0 3 0 283845 0 210 211 POST /user//card HTTP/1.1 - 1362 51.687 0.0379 0.0480 0.001 0.021 0.251 0.319 0.402 1352 0 10 0 2055558 0 1509 5114 GET /user//item HTTP/1.1 - 2394 86.915 0.0363 0.0471 0.001 0.021 0.213 0.466 0.593 2393 0 1 0 515175 0 215 217 POST /user//reward HTTP/1.1 - 3798 100.896 0.0266 0.0403 0.000 0.014 0.187 0.400 0.711 3794 0 4 0 1475661 42 388 393 GET /user//home HTTP/1.1 - 1 0.011 0.0110 0.0000 0.011 0.011 0.011 0.011 0.011 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 1 25.735 25.7350 0.0000 25.735 25.735 25.735 25.735 25.735 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 + 5624 1675.826 0.2980 0.3266 0.000 0.192 1.443 2.066 2.260 5549 0 42 33 26448417 0 4702 14075 POST /user//present/receive HTTP/1.1 + 1970 464.710 0.2359 0.2561 0.000 0.164 1.021 1.449 1.457 1723 0 25 222 12518026 0 6354 7328 POST /user HTTP/1.1 + 1 0.136 0.1360 0.0000 0.136 0.136 0.136 0.136 0.136 1 0 0 0 40754 40754 40754 40754 GET /admin/user/ HTTP/1.1 + 3376 412.657 0.1222 0.1551 0.000 0.056 0.663 1.050 1.102 2358 0 838 180 3652031 0 1081 3527 POST /login HTTP/1.1 + 3973 467.887 0.1178 0.1310 0.000 0.078 0.584 0.839 0.899 3873 0 48 52 8072224 0 2031 2097 POST /user//gacha/draw//10 HTTP/1.1 + 4 0.394 0.0985 0.0567 0.002 0.123 0.148 0.148 0.148 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 + 1599 130.089 0.0814 0.0863 0.001 0.055 0.361 0.485 0.624 1590 0 8 1 528287 0 330 337 POST /user//card/addexp/ HTTP/1.1 + 5724 414.678 0.0724 0.0949 0.000 0.035 0.419 0.687 0.793 5632 0 31 61 23993796 0 4191 12576 GET /user//present/index/ HTTP/1.1 + 3987 189.284 0.0475 0.0597 0.000 0.027 0.268 0.475 0.663 3910 0 15 62 33878802 0 8497 8677 GET /user//gacha/index HTTP/1.1 + 1622 65.212 0.0402 0.0496 0.000 0.024 0.239 0.353 0.408 1614 0 5 3 340799 0 210 211 POST /user//card HTTP/1.1 + 1664 65.902 0.0396 0.0533 0.000 0.020 0.273 0.384 0.532 1630 0 2 32 2451735 0 1473 4972 GET /user//item HTTP/1.1 + 2341 86.857 0.0371 0.0484 0.000 0.020 0.224 0.445 0.470 2323 0 12 6 500651 0 213 217 POST /user//reward HTTP/1.1 + 4081 117.800 0.0289 0.0426 0.000 0.014 0.215 0.370 0.473 4038 0 25 18 1573148 0 385 393 GET /user//home HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 1 0.006 0.0060 0.0000 0.006 0.006 0.006 0.006 0.006 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 1 0.001 0.0010 0.0000 0.001 0.001 0.001 0.001 0.001 1 0 0 0 178 178 178 178 POST /admin/user//ban HTTP/1.1 Top 60 Sort By Standard Deviation Count Total Mean Stddev Min P50.0 P99.0 P99.9 Max 2xx 3xx 4xx 5xx TotalBytes MinBytes MeanBytes MaxBytes Request - 5149 1771.271 0.3440 0.3298 0.004 0.257 1.406 2.075 2.439 5108 0 41 0 24555247 0 4768 14292 POST /user//present/receive HTTP/1.1 - 1418 335.249 0.2364 0.2465 0.004 0.169 1.064 1.548 2.400 1401 0 17 0 10161592 0 7166 7328 POST /user HTTP/1.1 - 3192 374.070 0.1172 0.1394 0.000 0.066 0.605 0.844 1.290 2397 0 794 1 3736266 0 1170 3527 POST /login HTTP/1.1 - 3725 411.586 0.1105 0.1179 0.001 0.075 0.485 0.829 0.922 3700 0 25 0 7703039 0 2067 2097 POST /user//gacha/draw//10 HTTP/1.1 - 5167 323.344 0.0626 0.0818 0.000 0.032 0.372 0.617 0.693 5150 0 17 0 22144012 0 4285 12770 GET /user//present/index/ HTTP/1.1 - 1352 96.369 0.0713 0.0747 0.001 0.048 0.315 0.543 0.553 1347 0 5 0 447508 0 330 337 POST /user//card/addexp/ HTTP/1.1 - 3747 180.573 0.0482 0.0577 0.000 0.031 0.267 0.456 0.891 3724 0 23 0 32263298 0 8610 8677 GET /user//gacha/index HTTP/1.1 - 4 0.354 0.0885 0.0522 0.002 0.106 0.142 0.142 0.142 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 - 1348 51.210 0.0380 0.0508 0.001 0.022 0.226 0.486 0.515 1345 0 3 0 283845 0 210 211 POST /user//card HTTP/1.1 - 1362 51.687 0.0379 0.0480 0.001 0.021 0.251 0.319 0.402 1352 0 10 0 2055558 0 1509 5114 GET /user//item HTTP/1.1 - 2394 86.915 0.0363 0.0471 0.001 0.021 0.213 0.466 0.593 2393 0 1 0 515175 0 215 217 POST /user//reward HTTP/1.1 - 3798 100.896 0.0266 0.0403 0.000 0.014 0.187 0.400 0.711 3794 0 4 0 1475661 42 388 393 GET /user//home HTTP/1.1 - 1 26.215 26.2150 0.0000 26.215 26.215 26.215 26.215 26.215 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 - 1 0.181 0.1810 0.0000 0.181 0.181 0.181 0.181 0.181 1 0 0 0 39510 39510 39510 39510 GET /admin/user/ HTTP/1.1 - 1 0.011 0.0110 0.0000 0.011 0.011 0.011 0.011 0.011 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 5624 1675.826 0.2980 0.3266 0.000 0.192 1.443 2.066 2.260 5549 0 42 33 26448417 0 4702 14075 POST /user//present/receive HTTP/1.1 + 1970 464.710 0.2359 0.2561 0.000 0.164 1.021 1.449 1.457 1723 0 25 222 12518026 0 6354 7328 POST /user HTTP/1.1 + 3376 412.657 0.1222 0.1551 0.000 0.056 0.663 1.050 1.102 2358 0 838 180 3652031 0 1081 3527 POST /login HTTP/1.1 + 3973 467.887 0.1178 0.1310 0.000 0.078 0.584 0.839 0.899 3873 0 48 52 8072224 0 2031 2097 POST /user//gacha/draw//10 HTTP/1.1 + 5724 414.678 0.0724 0.0949 0.000 0.035 0.419 0.687 0.793 5632 0 31 61 23993796 0 4191 12576 GET /user//present/index/ HTTP/1.1 + 1599 130.089 0.0814 0.0863 0.001 0.055 0.361 0.485 0.624 1590 0 8 1 528287 0 330 337 POST /user//card/addexp/ HTTP/1.1 + 3987 189.284 0.0475 0.0597 0.000 0.027 0.268 0.475 0.663 3910 0 15 62 33878802 0 8497 8677 GET /user//gacha/index HTTP/1.1 + 4 0.394 0.0985 0.0567 0.002 0.123 0.148 0.148 0.148 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 + 1664 65.902 0.0396 0.0533 0.000 0.020 0.273 0.384 0.532 1630 0 2 32 2451735 0 1473 4972 GET /user//item HTTP/1.1 + 1622 65.212 0.0402 0.0496 0.000 0.024 0.239 0.353 0.408 1614 0 5 3 340799 0 210 211 POST /user//card HTTP/1.1 + 2341 86.857 0.0371 0.0484 0.000 0.020 0.224 0.445 0.470 2323 0 12 6 500651 0 213 217 POST /user//reward HTTP/1.1 + 4081 117.800 0.0289 0.0426 0.000 0.014 0.215 0.370 0.473 4038 0 25 18 1573148 0 385 393 GET /user//home HTTP/1.1 + 1 25.735 25.7350 0.0000 25.735 25.735 25.735 25.735 25.735 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 + 1 0.136 0.1360 0.0000 0.136 0.136 0.136 0.136 0.136 1 0 0 0 40754 40754 40754 40754 GET /admin/user/ HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 1 0.006 0.0060 0.0000 0.006 0.006 0.006 0.006 0.006 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 1 0.001 0.0010 0.0000 0.001 0.001 0.001 0.001 0.001 1 0 0 0 178 178 178 178 POST /admin/user//ban HTTP/1.1 Top 60 Sort By Maximum(100 Percentile) Count Total Mean Stddev Min P50.0 P99.0 P99.9 Max 2xx 3xx 4xx 5xx TotalBytes MinBytes MeanBytes MaxBytes Request - 1 26.215 26.2150 0.0000 26.215 26.215 26.215 26.215 26.215 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 - 5149 1771.271 0.3440 0.3298 0.004 0.257 1.406 2.075 2.439 5108 0 41 0 24555247 0 4768 14292 POST /user//present/receive HTTP/1.1 - 1418 335.249 0.2364 0.2465 0.004 0.169 1.064 1.548 2.400 1401 0 17 0 10161592 0 7166 7328 POST /user HTTP/1.1 - 3192 374.070 0.1172 0.1394 0.000 0.066 0.605 0.844 1.290 2397 0 794 1 3736266 0 1170 3527 POST /login HTTP/1.1 - 3725 411.586 0.1105 0.1179 0.001 0.075 0.485 0.829 0.922 3700 0 25 0 7703039 0 2067 2097 POST /user//gacha/draw//10 HTTP/1.1 - 3747 180.573 0.0482 0.0577 0.000 0.031 0.267 0.456 0.891 3724 0 23 0 32263298 0 8610 8677 GET /user//gacha/index HTTP/1.1 - 3798 100.896 0.0266 0.0403 0.000 0.014 0.187 0.400 0.711 3794 0 4 0 1475661 42 388 393 GET /user//home HTTP/1.1 - 5167 323.344 0.0626 0.0818 0.000 0.032 0.372 0.617 0.693 5150 0 17 0 22144012 0 4285 12770 GET /user//present/index/ HTTP/1.1 - 2394 86.915 0.0363 0.0471 0.001 0.021 0.213 0.466 0.593 2393 0 1 0 515175 0 215 217 POST /user//reward HTTP/1.1 - 1352 96.369 0.0713 0.0747 0.001 0.048 0.315 0.543 0.553 1347 0 5 0 447508 0 330 337 POST /user//card/addexp/ HTTP/1.1 - 1348 51.210 0.0380 0.0508 0.001 0.022 0.226 0.486 0.515 1345 0 3 0 283845 0 210 211 POST /user//card HTTP/1.1 - 1362 51.687 0.0379 0.0480 0.001 0.021 0.251 0.319 0.402 1352 0 10 0 2055558 0 1509 5114 GET /user//item HTTP/1.1 - 1 0.181 0.1810 0.0000 0.181 0.181 0.181 0.181 0.181 1 0 0 0 39510 39510 39510 39510 GET /admin/user/ HTTP/1.1 - 4 0.354 0.0885 0.0522 0.002 0.106 0.142 0.142 0.142 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 - 1 0.011 0.0110 0.0000 0.011 0.011 0.011 0.011 0.011 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 - 1 0.005 0.0050 0.0000 0.005 0.005 0.005 0.005 0.005 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 + 1 25.735 25.7350 0.0000 25.735 25.735 25.735 25.735 25.735 1 0 0 0 18 18 18 18 POST /initialize HTTP/1.1 + 5624 1675.826 0.2980 0.3266 0.000 0.192 1.443 2.066 2.260 5549 0 42 33 26448417 0 4702 14075 POST /user//present/receive HTTP/1.1 + 1970 464.710 0.2359 0.2561 0.000 0.164 1.021 1.449 1.457 1723 0 25 222 12518026 0 6354 7328 POST /user HTTP/1.1 + 3376 412.657 0.1222 0.1551 0.000 0.056 0.663 1.050 1.102 2358 0 838 180 3652031 0 1081 3527 POST /login HTTP/1.1 + 3973 467.887 0.1178 0.1310 0.000 0.078 0.584 0.839 0.899 3873 0 48 52 8072224 0 2031 2097 POST /user//gacha/draw//10 HTTP/1.1 + 5724 414.678 0.0724 0.0949 0.000 0.035 0.419 0.687 0.793 5632 0 31 61 23993796 0 4191 12576 GET /user//present/index/ HTTP/1.1 + 3987 189.284 0.0475 0.0597 0.000 0.027 0.268 0.475 0.663 3910 0 15 62 33878802 0 8497 8677 GET /user//gacha/index HTTP/1.1 + 1599 130.089 0.0814 0.0863 0.001 0.055 0.361 0.485 0.624 1590 0 8 1 528287 0 330 337 POST /user//card/addexp/ HTTP/1.1 + 1664 65.902 0.0396 0.0533 0.000 0.020 0.273 0.384 0.532 1630 0 2 32 2451735 0 1473 4972 GET /user//item HTTP/1.1 + 4081 117.800 0.0289 0.0426 0.000 0.014 0.215 0.370 0.473 4038 0 25 18 1573148 0 385 393 GET /user//home HTTP/1.1 + 2341 86.857 0.0371 0.0484 0.000 0.020 0.224 0.445 0.470 2323 0 12 6 500651 0 213 217 POST /user//reward HTTP/1.1 + 1622 65.212 0.0402 0.0496 0.000 0.024 0.239 0.353 0.408 1614 0 5 3 340799 0 210 211 POST /user//card HTTP/1.1 + 4 0.394 0.0985 0.0567 0.002 0.123 0.148 0.148 0.148 2 0 2 0 433 47 108 168 POST /admin/login HTTP/1.1 + 1 0.136 0.1360 0.0000 0.136 0.136 0.136 0.136 0.136 1 0 0 0 40754 40754 40754 40754 GET /admin/user/ HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 0 0 0 0 DELETE /admin/logout HTTP/1.1 + 1 0.020 0.0200 0.0000 0.020 0.020 0.020 0.020 0.020 1 0 0 0 58 58 58 58 PUT /admin/master HTTP/1.1 + 1 0.006 0.0060 0.0000 0.006 0.006 0.006 0.006 0.006 1 0 0 0 118533 118533 118533 118533 GET /admin/master HTTP/1.1 1 0.001 0.0010 0.0000 0.001 0.001 0.001 0.001 0.001 1 0 0 0 178 178 178 178 POST /admin/user//ban HTTP/1.1 TOP 37 Slow Requests - 1 26.215 POST /initialize HTTP/1.1 - 2 2.439 POST /user/434329739/present/receive HTTP/1.1 - 3 2.400 POST /user HTTP/1.1 - 4 2.298 POST /user/3375270969/present/receive HTTP/1.1 - 5 2.129 POST /user/4593977201/present/receive HTTP/1.1 - 6 2.086 POST /user/2552592815/present/receive HTTP/1.1 - 7 2.085 POST /user/3216994224/present/receive HTTP/1.1 - 8 2.075 POST /user/8510280049/present/receive HTTP/1.1 - 9 2.069 POST /user/149337513/present/receive HTTP/1.1 -10 2.013 POST /user/3684150792/present/receive HTTP/1.1 -11 1.976 POST /user/9172583104/present/receive HTTP/1.1 -12 1.926 POST /user/5749692120/present/receive HTTP/1.1 -13 1.912 POST /user/4425586494/present/receive HTTP/1.1 -14 1.909 POST /user/6928527052/present/receive HTTP/1.1 -15 1.890 POST /user/8093918023/present/receive HTTP/1.1 -16 1.872 POST /user/8346444658/present/receive HTTP/1.1 -17 1.799 POST /user/503369683/present/receive HTTP/1.1 -18 1.793 POST /user/3322779133/present/receive HTTP/1.1 -19 1.772 POST /user/8562993147/present/receive HTTP/1.1 -20 1.765 POST /user/943955899/present/receive HTTP/1.1 -21 1.755 POST /user/4298092096/present/receive HTTP/1.1 -22 1.751 POST /user/5386825406/present/receive HTTP/1.1 -23 1.742 POST /user/1491325735/present/receive HTTP/1.1 -24 1.740 POST /user/7517161514/present/receive HTTP/1.1 -25 1.717 POST /user/7793497503/present/receive HTTP/1.1 -26 1.709 POST /user/5222193140/present/receive HTTP/1.1 -27 1.676 POST /user/9685556157/present/receive HTTP/1.1 -28 1.671 POST /user/6844825068/present/receive HTTP/1.1 -29 1.670 POST /user/2366517951/present/receive HTTP/1.1 -30 1.616 POST /user/4777641879/present/receive HTTP/1.1 -31 1.606 POST /user/7730244768/present/receive HTTP/1.1 -32 1.580 POST /user/5457093440/present/receive HTTP/1.1 -33 1.580 POST /user/5738034972/present/receive HTTP/1.1 -34 1.561 POST /user/5036516073/present/receive HTTP/1.1 -35 1.552 POST /user/1486971199/present/receive HTTP/1.1 -36 1.548 POST /user HTTP/1.1 -37 1.538 POST /user/4617827960/present/receive HTTP/1.1 + 1 25.735 POST /initialize HTTP/1.1 + 2 2.260 POST /user/5413246419/present/receive HTTP/1.1 + 3 2.214 POST /user/1824098101/present/receive HTTP/1.1 + 4 2.191 POST /user/7015495524/present/receive HTTP/1.1 + 5 2.135 POST /user/9209019888/present/receive HTTP/1.1 + 6 2.118 POST /user/8349782200/present/receive HTTP/1.1 + 7 2.066 POST /user/2005527395/present/receive HTTP/1.1 + 8 2.006 POST /user/4107797701/present/receive HTTP/1.1 + 9 2.004 POST /user/8371941094/present/receive HTTP/1.1 +10 1.855 POST /user/8828339886/present/receive HTTP/1.1 +11 1.842 POST /user/5778862705/present/receive HTTP/1.1 +12 1.807 POST /user/9171772104/present/receive HTTP/1.1 +13 1.803 POST /user/8008738487/present/receive HTTP/1.1 +14 1.795 POST /user/932399426/present/receive HTTP/1.1 +15 1.788 POST /user/8644680132/present/receive HTTP/1.1 +16 1.738 POST /user/3801834644/present/receive HTTP/1.1 +17 1.696 POST /user/6914169078/present/receive HTTP/1.1 +18 1.689 POST /user/19227947/present/receive HTTP/1.1 +19 1.686 POST /user/9397467048/present/receive HTTP/1.1 +20 1.678 POST /user/6071182429/present/receive HTTP/1.1 +21 1.675 POST /user/9960661997/present/receive HTTP/1.1 +22 1.666 POST /user/4788003015/present/receive HTTP/1.1 +23 1.658 POST /user/6206101312/present/receive HTTP/1.1 +24 1.626 POST /user/2024766324/present/receive HTTP/1.1 +25 1.624 POST /user/2318396915/present/receive HTTP/1.1 +26 1.616 POST /user/326534586/present/receive HTTP/1.1 +27 1.610 POST /user/7891821228/present/receive HTTP/1.1 +28 1.606 POST /user/3800558014/present/receive HTTP/1.1 +29 1.598 POST /user/125552283/present/receive HTTP/1.1 +30 1.593 POST /user/4768924037/present/receive HTTP/1.1 +31 1.567 POST /user/5755401863/present/receive HTTP/1.1 +32 1.564 POST /user/4089173/present/receive HTTP/1.1 +33 1.558 POST /user/5148657955/present/receive HTTP/1.1 +34 1.556 POST /user/7785072788/present/receive HTTP/1.1 +35 1.552 POST /user/6763001684/present/receive HTTP/1.1 +36 1.552 POST /user/548621947/present/receive HTTP/1.1 +37 1.547 POST /user/2788033210/present/receive HTTP/1.1 diff --git a/result/mysqltuner.txt b/result/mysqltuner.txt index 3a18a51..72aefd9 100644 --- a/result/mysqltuner.txt +++ b/result/mysqltuner.txt @@ -42,7 +42,7 @@ -------- Storage Engine Statistics ----------------------------------------------------------------- [--] Status: +ARCHIVE +BLACKHOLE +CSV -FEDERATED +InnoDB +MEMORY +MRG_MYISAM +MyISAM +PERFORMANCE_SCHEMA -[--] Data in InnoDB tables: 736.1M (Tables: 22) +[--] Data in InnoDB tables: 737.2M (Tables: 22) [OK] Total fragmented tables: 0 -------- Analysis Performance Metrics -------------------------------------------------------------- @@ -62,7 +62,7 @@ [OK] NO SECURITY CVE FOUND FOR YOUR VERSION -------- Performance Metrics ----------------------------------------------------------------------- -[--] Up for: 4h 19m 46s (7M q [462.580 qps], 59K conn, TX: 3G, RX: 2G) +[--] Up for: 4h 34m 35s (7M q [469.656 qps], 65K conn, TX: 3G, RX: 2G) [--] Reads / Writes: 63% / 37% [--] Binary logging is disabled [--] Physical Memory : 3.8G @@ -74,19 +74,19 @@ [!!] Maximum reached memory usage: 10.8G (282.49% of installed RAM) [!!] Maximum possible memory usage: 10.8G (280.81% of installed RAM) [!!] Overall possible memory usage with other process exceeded memory -[!!] Slow queries: 106% (7M/7M) +[!!] Slow queries: 105% (8M/7M) [!!] Highest connection usage: 100% (152/151) -[OK] Aborted connections: 0.00% (1/59851) +[OK] Aborted connections: 0.00% (1/65102) [!!] Name resolution is active: a reverse name resolution is made for each new connection which can reduce performance [--] Query cache has been removed since MySQL 8.0 -[OK] Sorts requiring temporary tables: 0% (0 temp sorts / 234K sorts) -[!!] Joins performed without indexes: 67 -[OK] Temporary tables created on disk: 0% (0 on disk / 883 total) -[OK] Thread cache hit rate: 91% (5K created / 59K connections) +[OK] Sorts requiring temporary tables: 0% (0 temp sorts / 253K sorts) +[!!] Joins performed without indexes: 75 +[OK] Temporary tables created on disk: 0% (0 on disk / 1K total) +[OK] Thread cache hit rate: 91% (5K created / 65K connections) [OK] Table cache hit rate: 99% (7M hits / 7M requests) [OK] table_definition_cache (2000) is greater than number of tables (349) [OK] Open file limit used: 0% (1/10K) -[OK] Table locks acquired immediately: 100% (71 immediate / 71 locks) +[OK] Table locks acquired immediately: 100% (76 immediate / 76 locks) -------- Performance schema ------------------------------------------------------------------------ [--] Performance_schema is activated. @@ -103,10 +103,10 @@ [--] InnoDB is enabled. [--] InnoDB Thread Concurrency: 0 [OK] InnoDB File per table is activated -[OK] InnoDB buffer pool / data size: 1.0G / 736.1M +[OK] InnoDB buffer pool / data size: 1.0G / 737.2M [!!] Ratio InnoDB log file size / InnoDB Buffer pool size (9.375%): 48.0M * 2 / 1.0G should be equal to 25% [!!] InnoDB buffer pool <= 1G and Innodb_buffer_pool_instances(!=1). [--] Number of InnoDB Buffer Pool Chunk: 8 for 8 Buffer Pool Instance(s) [OK] Innodb_buffer_pool_size aligned with Innodb_buffer_pool_chunk_size & Innodb_buffer_pool_instances -[OK] InnoDB Read buffer efficiency: 99.97% (402135320 hits/ 402238465 total) +[OK] InnoDB Read buffer efficiency: 99.97% (423542580 hits/ 423662180 total) [!!] InnoDB Write Log efficiency: 0% (0 hits/ 0 total) diff --git a/result/pt-query-digest.txt b/result/pt-query-digest.txt index 0ac1576..b2a10cc 100644 --- a/result/pt-query-digest.txt +++ b/result/pt-query-digest.txt @@ -1,975 +1,963 @@ -# Current date: Sat Aug 27 06:00:30 2022 +# Current date: Sat Aug 27 06:15:19 2022 # Hostname: a01-23 # Files: /dev/stdin -# Overall: 554.75k total, 200 unique +# Overall: 525.03k total, 202 unique # Attribute total min max avg 95% median # ============= ======= ======= ======= ======= ======= ======= -# Exec time 1822.80s 1.0us 6.82s 3.3ms 11.5ms 158.0us -# Lock time 6.44s 0 1.32s 11.6us 1.0us 1.0us -# Rows sent 1.00M 0 1.01k 1.00 6 1 -# Rows examined 2.86M 0 241.65k 5.00 42 1 +# Exec time 2118.70s 1.0us 8.27s 4.0ms 14.8ms 136.0us +# Lock time 6.68s 0 646.0ms 12.7us 1.0us 1.0us +# Rows sent 1.05M 0 1.01k 2.00 10 1 +# Rows examined 2.98M 0 241.65k 5.00 42 1 # Profile # Rank Query ID Response time Calls R/Call # ==== ================== ============== ====== ====== -# 1 0xEBB5213FE4967021 300.0299 16.5% 7084 0.0424 INSERT user_presents -# 2 0xBC7DAD888BA0794F 286.3218 15.7% 59871 0.0048 SELECT item_masters -# 3 0x56F8736857272508 284.5604 15.6% 5149 0.0553 UPDATE user_presents -# 4 0x09738B32BB32FCDF 134.6860 7.4% 5166 0.0261 SELECT user_presents -# 5 0xD1412EE5B13BB9A4 106.9191 5.9% 5149 0.0208 SELECT user_presents -# 6 0x8C5E75A7D84792D9 76.9876 4.2% 55946 0.0014 UPDATE users -# 7 0x47559BA8268C9646 71.8591 3.9% 5166 0.0139 SELECT user_presents -# 8 0x25DDB691D46B02B6 59.4003 3.3% 48287 0.0012 SELECT user_items -# 9 0xD84F496A9784760B 48.1685 2.6% 43019 0.0011 UPDATE user_items -# 10 0x71524C1BC27B2602 38.1507 2.1% 28022 0.0014 SELECT user_sessions -# 11 0xE3F2CC3C5133F3D5 30.5436 1.7% 14933 0.0020 SELECT gacha_item_masters -# 12 0xB70C17C590E82A7F 28.2383 1.5% 32653 0.0009 SELECT version_masters -# 13 0x4018A132A84A16C9 24.2307 1.3% 31213 0.0008 SELECT user_bans -# 14 0xCFBB5352F61B370B 23.3044 1.3% 18295 0.0013 SELECT users -# 15 0x40353479CEB359A1 23.2109 1.3% 16375 0.0014 SELECT user_devices -# 16 0x0AD3A20E4E0B9976 16.2907 0.9% 11493 0.0014 SELECT user_login_bonuses -# 17 0x01FBEC3C6355A8D7 15.9527 0.9% 15838 0.0010 INSERT user_cards -# 18 0xB62AA641054EFD00 14.5387 0.8% 1349 0.0108 SELECT user_cards item_masters -# 19 0x3E0CC69500F839DC 14.3476 0.8% 5071 0.0028 UPDATE user_one_time_tokens -# 20 0xEDD5122276668036 14.3284 0.8% 5097 0.0028 INSERT user_one_time_tokens -# 21 0xB79DB1067F375C1F 12.4693 0.7% 3831 0.0033 SELECT present_all_masters user_present_all_received_history -# 22 0x813031B8BBC3B329 12.3684 0.7% 15401 0.0008 COMMIT -# 23 0x38D4F86FA36095E4 11.9241 0.7% 5097 0.0023 UPDATE user_one_time_tokens -# 24 0xB5D7DDC9D01010C7 10.9413 0.6% 46 0.2379 INSERT -# 25 0x0FE1CFCA3C629D6F 10.8167 0.6% 3362 0.0032 INSERT user_present_all_received_history -# 26 0x735EF8318301520F 10.4866 0.6% 5073 0.0021 SELECT user_one_time_tokens -# 27 0x5E1254C1FDBF900B 10.3826 0.6% 7535 0.0014 SELECT user_cards -# 28 0x2CE978E42A81CC00 8.2659 0.5% 6188 0.0013 SELECT user_decks -# 29 0x46E831BB9D45501A 8.1641 0.4% 6667 0.0012 SELECT login_bonus_reward_masters -# 30 0x55BF7704455C98AA 7.0150 0.4% 3722 0.0019 SELECT gacha_item_masters -# 31 0x517F86F6D70065B6 6.8232 0.4% 1 6.8232 LOAD DATA user_presents -# 32 0x7CA1FDC8C5362D5B 6.6691 0.4% 3722 0.0018 SELECT gacha_masters -# 33 0xA9E358AEC901D3FA 6.6628 0.4% 6617 0.0010 INSERT user_items -# 34 0x06648FA73445FA41 6.6174 0.4% 3832 0.0017 INSERT user_sessions -# 35 0x2B37DDA192ADC0D5 6.4168 0.4% 1418 0.0045 SELECT item_masters -# 36 0xE3844E34483B662E 5.8333 0.3% 3722 0.0016 UPDATE users -# 37 0xBE6AF9E2FEDAB9D1 5.7661 0.3% 1349 0.0043 SELECT user_items item_masters -# 38 0x6B2814054AF2B6B3 5.6691 0.3% 3737 0.0015 SELECT gacha_masters -# 39 0x0BF61C5CE8BB8E5E 5.1693 0.3% 4254 0.0012 INSERT user_login_bonuses -# 40 0xFB271981D7248330 4.9977 0.3% 3831 0.0013 UPDATE users -# 41 0x8C5B05EB6CB46F22 4.5490 0.2% 3831 0.0012 SELECT users -# 42 0x34E11DDE0FBF5564 4.2792 0.2% 15404 0.0003 BEGIN -# 43 0xD5F72842478BEEBA 4.0173 0.2% 3831 0.0010 SELECT login_bonus_masters -# 44 0x58309A1A758E1BB6 3.8915 0.2% 2394 0.0016 UPDATE users -# 45 0x85341F0A4C9D5CB2 2.9189 0.2% 1418 0.0021 INSERT users -# 46 0x2123230C14227939 2.7817 0.2% 1347 0.0021 UPDATE user_decks -# 47 0x1ECF31A65E32E96B 2.7798 0.2% 2414 0.0012 UPDATE user_sessions -# 48 0x0001A24863DBA0F1 2.7060 0.1% 16 0.1691 INSERT -# 49 0xDF7D7112E66C930F 2.6733 0.1% 2765 0.0010 INSERT user_decks -# 50 0x43A3321C1A2C0D43 2.6278 0.1% 2413 0.0011 UPDATE user_login_bonuses -# 51 0xC4768A6E9C987261 2.1228 0.1% 1360 0.0016 SELECT user_items -# 52 0x9BB136538183B385 1.9424 0.1% 1361 0.0014 SELECT user_cards -# 53 0x7053C9B534F05D7B 1.7178 0.1% 1418 0.0012 INSERT user_devices -# 54 0xC3CEC5658CA257A8 1.7059 0.1% 8 0.2132 INSERT -# 55 0xD5FEFD7BF42F0E17 1.3827 0.1% 1349 0.0010 UPDATE user_cards -# 56 0x7E11B8A86E73E369 1.1497 0.1% 1349 0.0009 SELECT user_cards -# 57 0x0FDB82B41F5B3844 0.9707 0.1% 4863 0.0002 SET -# 58 0x3C326B7DBDA9C787 0.8806 0.0% 1 0.8806 DELETE user_presents -# 59 0xDD99773350309CB2 0.5103 0.0% 2 0.2551 INSERT -# 60 0x4B675AC0EA8F5E72 0.4657 0.0% 2 0.2329 INSERT -# 61 0x5F782062E60690B4 0.1930 0.0% 1 0.1930 INSERT -# 62 0x7F62C1A23A2B47DF 0.1724 0.0% 1 0.1724 SELECT user_present_all_received_history -# 63 0xA900DF232EEC7EDD 0.1528 0.0% 2 0.0764 INSERT -# 64 0x2A385C2101E13805 0.1264 0.0% 1 0.1264 DROP TABLE user_cards -# 65 0xD5D3F792CEA98520 0.0462 0.0% 1 0.0462 INSERT -# 66 0x2DCCDC0DDEA0517C 0.0419 0.0% 1 0.0419 DROP TABLE admin_sessions -# 67 0x8ED794C0D5413D5A 0.0301 0.0% 2410 0.0000 QUIT -# 68 0x4F901834723878F6 0.0261 0.0% 1 0.0261 DROP TABLE user_present_all_received_history -# 69 0x33B1BA42D94563E9 0.0247 0.0% 1 0.0247 DROP TABLE user_items -# 70 0x2C08E20F560D395C 0.0228 0.0% 1 0.0228 DROP TABLE user_one_time_tokens -# 71 0x86747EE909530562 0.0184 0.0% 1 0.0184 INSERT -# 72 0x1E3A07D890F5E3D9 0.0165 0.0% 1 0.0165 DROP TABLE user_devices -# 73 0x57421969A9CA84AB 0.0145 0.0% 1 0.0145 DROP TABLE user_sessions -# 74 0x5650C082714B7223 0.0145 0.0% 1 0.0145 DROP TABLE users -# 75 0x01E658CE344D6C62 0.0139 0.0% 1 0.0139 SELECT information_schema.TABLES -# 76 0xD20899B0F0556337 0.0133 0.0% 1 0.0133 DROP TABLE user_decks -# 77 0x860EEC9555762063 0.0131 0.0% 1 0.0131 CREATE TABLE users -# 78 0x758FB6A2FA40D74E 0.0126 0.0% 1 0.0126 DROP TABLE user_login_bonuses -# 79 0x29F808E286E92849 0.0119 0.0% 1 0.0119 DROP TABLE user_bans -# 80 0x506251FB64ECAF39 0.0115 0.0% 1 0.0115 CREATE TABLE login_bonus_masters -# 81 0x1A1B4F622181A0E8 0.0106 0.0% 1 0.0106 CREATE TABLE user_present_all_received_history -# 82 0xAFF7204489401BB0 0.0098 0.0% 1 0.0098 CREATE TABLE user_one_time_tokens -# 83 0x766103D07D2ECF5E 0.0095 0.0% 1 0.0095 DROP TABLE item_masters -# 84 0xC489832D743BBCB7 0.0088 0.0% 1 0.0088 CREATE TABLE admin_sessions -# 85 0xCCE859C9AD6E6ADF 0.0084 0.0% 1 0.0084 CREATE TABLE user_decks -# 86 0x3F55BA10AED604CD 0.0083 0.0% 1 0.0083 CREATE TABLE user_sessions -# 87 0xB47F9DB7C8715FDE 0.0082 0.0% 1 0.0082 CREATE TABLE user_devices -# 88 0x158B19621151BDC6 0.0078 0.0% 1 0.0078 CREATE TABLE user_items -# 89 0x6EF64B8B0D596017 0.0072 0.0% 1 0.0072 CREATE TABLE user_login_bonuses -# 90 0xF2A27D3F93FA52C7 0.0072 0.0% 1 0.0072 CREATE TABLE gacha_item_masters -# 91 0xD70F2D1B5A5C63E7 0.0071 0.0% 1 0.0071 CREATE TABLE user_bans -# 92 0x0C925CB4F3B1E40B 0.0069 0.0% 1 0.0069 CREATE TABLE user_cards -# 93 0x0497272F00A23F5D 0.0066 0.0% 1 0.0066 CREATE TABLE item_masters -# 94 0x7DD5F6760F2D2EBB 0.0060 0.0% 1 0.0060 SHOW -# 95 0xF722041A0576C426 0.0058 0.0% 1 0.0058 DROP TABLE gacha_item_masters -# 96 0xFADCC181D6675A71 0.0058 0.0% 1 0.0058 DROP TABLE gacha_masters -# 97 0x8EABCDAC39D801DC 0.0057 0.0% 1 0.0057 CREATE TABLE login_bonus_reward_masters -# 98 0x81A09BAD722C2AD4 0.0057 0.0% 4 0.0014 SELECT admin_users -# 99 0x05631FDCC2F141A1 0.0056 0.0% 1 0.0056 CREATE TABLE present_all_masters -# 100 0xA9A1BD1B654D33D9 0.0056 0.0% 1 0.0056 CREATE TABLE admin_users -# 101 0xD2705E8CB293B336 0.0055 0.0% 1 0.0055 SELECT user_presents -# 102 0xE0D26BE905B5D79F 0.0055 0.0% 1 0.0055 CREATE TABLE gacha_masters -# 103 0x54051646874A08A3 0.0054 0.0% 1 0.0054 CREATE TABLE version_masters -# 104 0x40A5548652B4DFDB 0.0053 0.0% 1 0.0053 SHOW -# 105 0x5CBA2034458B5BC9 0.0044 0.0% 2 0.0022 SHOW -# 106 0xD57560CE9D0852EE 0.0027 0.0% 1 0.0027 SHOW -# 107 0xCB0FD3921A5E73CD 0.0027 0.0% 1 0.0027 DROP TABLE present_all_masters -# 108 0x000FB76CA510CECD 0.0023 0.0% 2 0.0011 SELECT information_schema.TABLES -# 109 0xE3A3649C5FAC418D 0.0022 0.0% 34 0.0001 SELECT -# 110 0x8981418B1DB454E0 0.0022 0.0% 1 0.0022 SELECT information_schema.tables -# 111 0x82548DE9C4F3E046 0.0022 0.0% 1 0.0022 SHOW -# 112 0x791C5370A1021F19 0.0021 0.0% 1 0.0021 SHOW -# 113 0xCB0F56BDC7ECFD1E 0.0018 0.0% 1 0.0018 SHOW -# 114 0x31DA25F95494CA95 0.0017 0.0% 1 0.0017 SHOW -# 115 0x911658842DA64DC4 0.0017 0.0% 1 0.0017 SHOW -# 116 0xDC5AC4F51E1A7597 0.0017 0.0% 1 0.0017 SHOW -# 117 0x99D2000A5879F724 0.0017 0.0% 1 0.0017 SELECT gacha_item_masters -# 118 0xF4679FBCB9B776C4 0.0016 0.0% 1 0.0016 DROP TABLE login_bonus_masters -# 119 0x439DEDC555DEACFF 0.0014 0.0% 1 0.0014 DROP TABLE login_bonus_reward_masters -# 120 0xFCE24E325FEEEF91 0.0014 0.0% 1 0.0014 DROP TABLE version_masters -# 121 0xF534C01A654A40CD 0.0014 0.0% 1 0.0014 SELECT information_schema.TABLES -# 122 0x765037C2DBD450AB 0.0011 0.0% 1 0.0011 DROP TABLE admin_users -# 123 0x3E22CE721AAF52A6 0.0010 0.0% 5 0.0002 SELECT admin_sessions -# 124 0x23E3E3AAC552EBC7 0.0010 0.0% 19 0.0001 UNLOCK TABLES -# 125 0x3181F2187117AC04 0.0008 0.0% 1 0.0008 SELECT login_bonus_reward_masters -# 126 0x21526B75CC7EEF39 0.0008 0.0% 2 0.0004 UPDATE admin_sessions -# 127 0x28FC5B5D583E2DA6 0.0007 0.0% 1 0.0007 SHOW -# 128 0xE7510B6AA8901368 0.0006 0.0% 1 0.0006 SELECT user_decks -# 129 0x21831F03D8A49DC5 0.0005 0.0% 1 0.0005 INSERT item_masters -# 130 0xD249D00DC91E5422 0.0005 0.0% 1 0.0005 INSERT login_bonus_reward_masters -# 131 0x2CFBEEFAB0034497 0.0005 0.0% 1 0.0005 INSERT present_all_masters -# 132 0xDC9F1034A1E27BC4 0.0004 0.0% 2 0.0002 UPDATE admin_users -# 133 0x90D18133B56F55D4 0.0004 0.0% 6 0.0001 SHOW -# 134 0xF393E1CDB5570428 0.0003 0.0% 1 0.0003 INSERT gacha_masters -# 135 0xF63BEE146310AA5E 0.0003 0.0% 1 0.0003 UPDATE admin_sessions -# 136 0xCA743B363A3AD922 0.0003 0.0% 1 0.0003 SELECT user_items -# 137 0x13A9838C463C3D30 0.0003 0.0% 1 0.0003 LOCK TABLES admin_sessions -# 138 0xA5DAC22A01A07C48 0.0003 0.0% 1 0.0003 LOCK TABLES user_devices -# 139 0x800F18B12242617F 0.0003 0.0% 1 0.0003 LOCK TABLES user_items -# 140 0xC16CEC7CCAF67259 0.0002 0.0% 1 0.0002 LOCK TABLES user_one_time_tokens -# 141 0x919C4CD1A84CA2E5 0.0002 0.0% 1 0.0002 LOCK TABLES user_decks -# 142 0x6D10EB097E9787D2 0.0002 0.0% 1 0.0002 SELECT user_login_bonuses -# 143 0xA5C7507EF8D09065 0.0002 0.0% 2 0.0001 INSERT admin_sessions -# 144 0x2822DF40707B636A 0.0002 0.0% 1 0.0002 INSERT user_bans -# 145 0x529A1666173F6816 0.0002 0.0% 1 0.0002 LOCK TABLES gacha_item_masters -# 146 0xCA839F188167DAF3 0.0002 0.0% 1 0.0002 SELECT item_masters -# 147 0xE0FEC9821064B3B8 0.0002 0.0% 1 0.0002 LOCK TABLES user_present_all_received_history -# 148 0x3D4B0BB5334BDE56 0.0002 0.0% 1 0.0002 LOCK TABLES user_login_bonuses -# 149 0x5A6E75D209C861F8 0.0002 0.0% 1 0.0002 SELECT gacha_masters -# 150 0xCC581D476064ED08 0.0002 0.0% 1 0.0002 SELECT user_devices -# 151 0xDFD5504726EB3549 0.0002 0.0% 1 0.0002 LOCK TABLES user_cards -# 152 0x1F6740BFCFE03A20 0.0002 0.0% 1 0.0002 LOCK TABLES admin_users -# 153 0xC4772BE419CD0C6D 0.0002 0.0% 1 0.0002 LOCK TABLES user_bans -# 154 0x1D3211FC8C502FA2 0.0002 0.0% 1 0.0002 LOCK TABLES user_sessions -# 155 0x3FE59A86BDAD6C68 0.0002 0.0% 1 0.0002 SELECT present_all_masters -# 156 0x87BC99050ED44E56 0.0002 0.0% 1 0.0002 LOCK TABLES gacha_masters -# 157 0x78C64A7A6F0B8C0D 0.0001 0.0% 1 0.0001 LOCK TABLES login_bonus_masters -# 158 0x19C8068B5C1997CD 0.0001 0.0% 3 0.0000 ROLLBACK -# 159 0x35CD16F9891E955B 0.0001 0.0% 1 0.0001 LOCK TABLES login_bonus_reward_masters -# 160 0x6991460B87D28F36 0.0001 0.0% 1 0.0001 LOCK TABLES present_all_masters -# 161 0xAD2BCB166581B9BE 0.0001 0.0% 1 0.0001 LOCK TABLES item_masters -# 162 0x0868D48EF26DB526 0.0001 0.0% 1 0.0001 INSERT admin_users -# 163 0xA3C958A64E1E64AB 0.0001 0.0% 1 0.0001 SHOW -# 164 0x2CFF86204BE26813 0.0001 0.0% 1 0.0001 SELECT information_schema.ENGINES -# 165 0xE90F9E9547E89206 0.0001 0.0% 1 0.0001 LOCK TABLES version_masters -# 166 0x3D5B45015389B55D 0.0001 0.0% 1 0.0001 SELECT login_bonus_masters -# 167 0x788E5E772F279047 0.0001 0.0% 1 0.0001 INSERT login_bonus_masters -# 168 0xF2F72CDA74B98AB4 0.0001 0.0% 1 0.0001 LOCK TABLES users -# 169 0xD83BFF7AF61CCFC2 0.0001 0.0% 1 0.0001 SELECT version_masters -# 170 0xED31E05ED5D27AD7 0.0001 0.0% 1 0.0001 INSERT version_masters -# 171 0xFB38455BF7035609 0.0001 0.0% 2 0.0000 SELECT -# 172 0x591DCE6A753564F4 0.0001 0.0% 1 0.0001 SET -# 173 0x6C099B0B73EA7633 0.0001 0.0% 1 0.0001 USE -# 174 0x0633D3706780274F 0.0001 0.0% 1 0.0001 INSERT present_all_masters -# 175 0xFF9B70EBBE41B32D 0.0001 0.0% 1 0.0001 INSERT version_masters -# 176 0x7B8FDA41126FA26B 0.0001 0.0% 1 0.0001 SET +# 1 0xEBB5213FE4967021 393.5396 18.6% 7472 0.0527 INSERT user_presents +# 2 0x56F8736857272508 325.6129 15.4% 5590 0.0582 UPDATE user_presents +# 3 0xBC7DAD888BA0794F 277.6481 13.1% 48713 0.0057 SELECT item_masters +# 4 0x09738B32BB32FCDF 176.1206 8.3% 5661 0.0311 SELECT user_presents +# 5 0xD1412EE5B13BB9A4 119.9488 5.7% 5590 0.0215 SELECT user_presents +# 6 0x47559BA8268C9646 99.4020 4.7% 5661 0.0176 SELECT user_presents +# 7 0x25DDB691D46B02B6 70.5228 3.3% 48713 0.0014 SELECT user_items +# 8 0xD84F496A9784760B 54.0388 2.6% 42642 0.0013 UPDATE user_items +# 9 0x71524C1BC27B2602 51.7847 2.4% 30307 0.0017 SELECT user_sessions +# 10 0xB70C17C590E82A7F 35.8492 1.7% 35296 0.0010 SELECT version_masters +# 11 0x9FF08D4D58684CB6 33.8349 1.6% 11707 0.0029 INSERT item_masters user_cards +# 12 0xE3F2CC3C5133F3D5 33.2612 1.6% 15636 0.0021 SELECT gacha_item_masters +# 13 0x4018A132A84A16C9 31.7166 1.5% 33506 0.0009 SELECT user_bans +# 14 0x40353479CEB359A1 30.9974 1.5% 17411 0.0018 SELECT user_devices +# 15 0xCFBB5352F61B370B 22.3167 1.1% 19217 0.0012 SELECT users +# 16 0x0AD3A20E4E0B9976 20.3831 1.0% 12345 0.0017 SELECT user_login_bonuses +# 17 0xB62AA641054EFD00 18.9359 0.9% 1595 0.0119 SELECT user_cards item_masters +# 18 0x3E0CC69500F839DC 17.9322 0.8% 5490 0.0033 UPDATE user_one_time_tokens +# 19 0x43A3321C1A2C0D43 17.5494 0.8% 2377 0.0074 UPDATE user_login_bonuses +# 20 0x813031B8BBC3B329 16.6873 0.8% 16806 0.0010 COMMIT +# 21 0xB79DB1067F375C1F 15.9899 0.8% 4115 0.0039 SELECT present_all_masters user_present_all_received_history +# 22 0x38D4F86FA36095E4 15.1531 0.7% 5548 0.0027 UPDATE user_one_time_tokens +# 23 0x0FE1CFCA3C629D6F 14.5012 0.7% 3587 0.0040 INSERT user_present_all_received_history +# 24 0x735EF8318301520F 12.7934 0.6% 5514 0.0023 SELECT user_one_time_tokens +# 25 0xEDD5122276668036 12.5794 0.6% 5548 0.0023 INSERT user_one_time_tokens +# 26 0x5E1254C1FDBF900B 12.3294 0.6% 7992 0.0015 SELECT user_cards +# 27 0x46E831BB9D45501A 11.3706 0.5% 7591 0.0015 SELECT login_bonus_reward_masters +# 28 0x0BF61C5CE8BB8E5E 11.3525 0.5% 5214 0.0022 INSERT user_login_bonuses +# 29 0x2CE978E42A81CC00 10.3209 0.5% 6374 0.0016 SELECT user_decks +# 30 0x8C5E75A7D84792D9 9.6566 0.5% 5616 0.0017 UPDATE users +# 31 0xA9E358AEC901D3FA 9.5619 0.5% 7666 0.0012 INSERT user_items +# 32 0xB5D7DDC9D01010C7 9.3062 0.4% 46 0.2023 INSERT +# 33 0xBE6AF9E2FEDAB9D1 8.7668 0.4% 1595 0.0055 SELECT user_items item_masters +# 34 0x55BF7704455C98AA 8.4108 0.4% 3885 0.0022 SELECT gacha_item_masters +# 35 0x517F86F6D70065B6 8.2657 0.4% 1 8.2657 LOAD DATA user_presents +# 36 0x06648FA73445FA41 7.9164 0.4% 4119 0.0019 INSERT user_sessions +# 37 0x01FBEC3C6355A8D7 6.2628 0.3% 5214 0.0012 INSERT user_cards +# 38 0x34E11DDE0FBF5564 5.9654 0.3% 16812 0.0004 BEGIN +# 39 0x6B2814054AF2B6B3 5.6932 0.3% 3917 0.0015 SELECT gacha_masters +# 40 0xD5F72842478BEEBA 5.6096 0.3% 4115 0.0014 SELECT login_bonus_masters +# 41 0xFB271981D7248330 5.3894 0.3% 4115 0.0013 UPDATE users +# 42 0x7CA1FDC8C5362D5B 5.1837 0.2% 3885 0.0013 SELECT gacha_masters +# 43 0xE3844E34483B662E 5.0797 0.2% 3885 0.0013 UPDATE users +# 44 0x8C5B05EB6CB46F22 4.6909 0.2% 4115 0.0011 SELECT users +# 45 0xAAC6B00145710C91 4.5695 0.2% 3456 0.0013 UPDATE users +# 46 0x2123230C14227939 4.5022 0.2% 1618 0.0028 UPDATE user_decks +# 47 0xDF7D7112E66C930F 4.3443 0.2% 3356 0.0013 INSERT user_decks +# 48 0x58309A1A758E1BB6 3.9591 0.2% 2332 0.0017 UPDATE users +# 49 0x2B37DDA192ADC0D5 3.8097 0.2% 1738 0.0022 SELECT item_masters +# 50 0xC4768A6E9C987261 3.5612 0.2% 1631 0.0022 SELECT user_items +# 51 0x9BB136538183B385 3.5350 0.2% 1632 0.0022 SELECT user_cards +# 52 0x1ECF31A65E32E96B 3.4526 0.2% 2381 0.0015 UPDATE user_sessions +# 53 0x0001A24863DBA0F1 2.8657 0.1% 16 0.1791 INSERT +# 54 0xD5FEFD7BF42F0E17 2.3170 0.1% 1595 0.0015 UPDATE user_cards +# 55 0x85341F0A4C9D5CB2 2.1764 0.1% 1738 0.0013 INSERT users +# 56 0x7053C9B534F05D7B 2.0459 0.1% 1738 0.0012 INSERT user_devices +# 57 0x7E11B8A86E73E369 1.8114 0.1% 1595 0.0011 SELECT user_cards +# 58 0xC3CEC5658CA257A8 1.6616 0.1% 8 0.2077 INSERT +# 59 0x0FDB82B41F5B3844 1.1137 0.1% 5215 0.0002 SET +# 60 0x3C326B7DBDA9C787 0.6908 0.0% 1 0.6908 DELETE user_presents +# 61 0xDD99773350309CB2 0.4834 0.0% 2 0.2417 INSERT +# 62 0x4B675AC0EA8F5E72 0.4061 0.0% 2 0.2031 INSERT +# 63 0xA900DF232EEC7EDD 0.1842 0.0% 2 0.0921 INSERT +# 64 0x5F782062E60690B4 0.1788 0.0% 1 0.1788 INSERT +# 65 0x7F62C1A23A2B47DF 0.1301 0.0% 1 0.1301 SELECT user_present_all_received_history +# 66 0x2A385C2101E13805 0.0936 0.0% 1 0.0936 DROP TABLE user_cards +# 67 0x8ED794C0D5413D5A 0.0678 0.0% 2561 0.0000 QUIT +# 68 0xD5D3F792CEA98520 0.0456 0.0% 1 0.0456 INSERT +# 69 0x2DCCDC0DDEA0517C 0.0291 0.0% 1 0.0291 DROP TABLE admin_sessions +# 70 0x4F901834723878F6 0.0224 0.0% 1 0.0224 DROP TABLE user_present_all_received_history +# 71 0x33B1BA42D94563E9 0.0190 0.0% 1 0.0190 DROP TABLE user_items +# 72 0xF4679FBCB9B776C4 0.0179 0.0% 1 0.0179 DROP TABLE login_bonus_masters +# 73 0x86747EE909530562 0.0168 0.0% 1 0.0168 INSERT +# 74 0xF2A27D3F93FA52C7 0.0165 0.0% 1 0.0165 CREATE TABLE gacha_item_masters +# 75 0x2C08E20F560D395C 0.0160 0.0% 1 0.0160 DROP TABLE user_one_time_tokens +# 76 0x57421969A9CA84AB 0.0159 0.0% 1 0.0159 DROP TABLE user_sessions +# 77 0x860EEC9555762063 0.0155 0.0% 1 0.0155 CREATE TABLE users +# 78 0x01E658CE344D6C62 0.0153 0.0% 1 0.0153 SELECT information_schema.TABLES +# 79 0x0497272F00A23F5D 0.0098 0.0% 1 0.0098 CREATE TABLE item_masters +# 80 0xB47F9DB7C8715FDE 0.0095 0.0% 1 0.0095 CREATE TABLE user_devices +# 81 0x40A5548652B4DFDB 0.0091 0.0% 1 0.0091 SHOW +# 82 0xC489832D743BBCB7 0.0089 0.0% 1 0.0089 CREATE TABLE admin_sessions +# 83 0x3F55BA10AED604CD 0.0086 0.0% 1 0.0086 CREATE TABLE user_sessions +# 84 0xAFF7204489401BB0 0.0086 0.0% 1 0.0086 CREATE TABLE user_one_time_tokens +# 85 0x158B19621151BDC6 0.0085 0.0% 1 0.0085 CREATE TABLE user_items +# 86 0x0C925CB4F3B1E40B 0.0083 0.0% 1 0.0083 CREATE TABLE user_cards +# 87 0x5650C082714B7223 0.0082 0.0% 1 0.0082 DROP TABLE users +# 88 0x758FB6A2FA40D74E 0.0077 0.0% 1 0.0077 DROP TABLE user_login_bonuses +# 89 0x6EF64B8B0D596017 0.0077 0.0% 1 0.0077 CREATE TABLE user_login_bonuses +# 90 0xCCE859C9AD6E6ADF 0.0077 0.0% 1 0.0077 CREATE TABLE user_decks +# 91 0x766103D07D2ECF5E 0.0077 0.0% 1 0.0077 DROP TABLE item_masters +# 92 0xD70F2D1B5A5C63E7 0.0075 0.0% 1 0.0075 CREATE TABLE user_bans +# 93 0x1E3A07D890F5E3D9 0.0073 0.0% 1 0.0073 DROP TABLE user_devices +# 94 0x1A1B4F622181A0E8 0.0070 0.0% 1 0.0070 CREATE TABLE user_present_all_received_history +# 95 0x506251FB64ECAF39 0.0069 0.0% 1 0.0069 CREATE TABLE login_bonus_masters +# 96 0x54051646874A08A3 0.0068 0.0% 1 0.0068 CREATE TABLE version_masters +# 97 0x8EABCDAC39D801DC 0.0067 0.0% 1 0.0067 CREATE TABLE login_bonus_reward_masters +# 98 0x81A09BAD722C2AD4 0.0066 0.0% 4 0.0017 SELECT admin_users +# 99 0x3E22CE721AAF52A6 0.0065 0.0% 6 0.0011 SELECT admin_sessions +# 100 0x7DD5F6760F2D2EBB 0.0061 0.0% 1 0.0061 SHOW +# 101 0xA9A1BD1B654D33D9 0.0060 0.0% 1 0.0060 CREATE TABLE admin_users +# 102 0xD20899B0F0556337 0.0059 0.0% 1 0.0059 DROP TABLE user_decks +# 103 0xE0D26BE905B5D79F 0.0059 0.0% 1 0.0059 CREATE TABLE gacha_masters +# 104 0xFADCC181D6675A71 0.0057 0.0% 1 0.0057 DROP TABLE gacha_masters +# 105 0x05631FDCC2F141A1 0.0056 0.0% 1 0.0056 CREATE TABLE present_all_masters +# 106 0xF722041A0576C426 0.0049 0.0% 1 0.0049 DROP TABLE gacha_item_masters +# 107 0x5CBA2034458B5BC9 0.0047 0.0% 2 0.0024 SHOW +# 108 0x29F808E286E92849 0.0040 0.0% 1 0.0040 DROP TABLE user_bans +# 109 0xD57560CE9D0852EE 0.0033 0.0% 1 0.0033 SHOW +# 110 0x791C5370A1021F19 0.0029 0.0% 1 0.0029 SHOW +# 111 0x99D2000A5879F724 0.0028 0.0% 1 0.0028 SELECT gacha_item_masters +# 112 0xE3A3649C5FAC418D 0.0024 0.0% 34 0.0001 SELECT +# 113 0x8981418B1DB454E0 0.0024 0.0% 1 0.0024 SELECT information_schema.tables +# 114 0xD2705E8CB293B336 0.0023 0.0% 1 0.0023 SELECT user_presents +# 115 0x82548DE9C4F3E046 0.0023 0.0% 1 0.0023 SHOW +# 116 0x000FB76CA510CECD 0.0023 0.0% 2 0.0011 SELECT information_schema.TABLES +# 117 0x911658842DA64DC4 0.0020 0.0% 1 0.0020 SHOW +# 118 0x19C8068B5C1997CD 0.0020 0.0% 6 0.0003 ROLLBACK +# 119 0xDC5AC4F51E1A7597 0.0018 0.0% 1 0.0018 SHOW +# 120 0xCB0FD3921A5E73CD 0.0018 0.0% 1 0.0018 DROP TABLE present_all_masters +# 121 0x21526B75CC7EEF39 0.0017 0.0% 2 0.0009 UPDATE admin_sessions +# 122 0x31DA25F95494CA95 0.0017 0.0% 1 0.0017 SHOW +# 123 0x6C099B0B73EA7633 0.0017 0.0% 1 0.0017 USE +# 124 0xCB0F56BDC7ECFD1E 0.0016 0.0% 1 0.0016 SHOW +# 125 0xF534C01A654A40CD 0.0016 0.0% 1 0.0016 SELECT information_schema.TABLES +# 126 0x439DEDC555DEACFF 0.0016 0.0% 1 0.0016 DROP TABLE login_bonus_reward_masters +# 127 0xFB38455BF7035609 0.0015 0.0% 2 0.0007 SELECT +# 128 0x90D18133B56F55D4 0.0013 0.0% 6 0.0002 SHOW +# 129 0xFCE24E325FEEEF91 0.0013 0.0% 1 0.0013 DROP TABLE version_masters +# 130 0x765037C2DBD450AB 0.0013 0.0% 1 0.0013 DROP TABLE admin_users +# 131 0x23E3E3AAC552EBC7 0.0010 0.0% 19 0.0001 UNLOCK TABLES +# 132 0x3181F2187117AC04 0.0010 0.0% 1 0.0010 SELECT login_bonus_reward_masters +# 133 0x591DCE6A753564F4 0.0009 0.0% 1 0.0009 SET +# 134 0x28FC5B5D583E2DA6 0.0009 0.0% 1 0.0009 SHOW +# 135 0xE7510B6AA8901368 0.0007 0.0% 1 0.0007 SELECT user_decks +# 136 0xED31E05ED5D27AD7 0.0007 0.0% 1 0.0007 INSERT version_masters +# 137 0x45788F3F8DFCDAFC 0.0006 0.0% 1 0.0006 SET +# 138 0xA5C7507EF8D09065 0.0004 0.0% 2 0.0002 INSERT admin_sessions +# 139 0x0633D3706780274F 0.0004 0.0% 1 0.0004 INSERT present_all_masters +# 140 0x21831F03D8A49DC5 0.0004 0.0% 1 0.0004 INSERT item_masters +# 141 0xDC9F1034A1E27BC4 0.0003 0.0% 2 0.0002 UPDATE admin_users +# 142 0x13A9838C463C3D30 0.0003 0.0% 1 0.0003 LOCK TABLES admin_sessions +# 143 0x5A6E75D209C861F8 0.0003 0.0% 1 0.0003 SELECT gacha_masters +# 144 0xF393E1CDB5570428 0.0003 0.0% 1 0.0003 INSERT gacha_masters +# 145 0xCA839F188167DAF3 0.0003 0.0% 1 0.0003 SELECT item_masters +# 146 0xD249D00DC91E5422 0.0003 0.0% 1 0.0003 INSERT login_bonus_reward_masters +# 147 0x2822DF40707B636A 0.0003 0.0% 1 0.0003 INSERT user_bans +# 148 0x3FE59A86BDAD6C68 0.0003 0.0% 1 0.0003 SELECT present_all_masters +# 149 0x2CFBEEFAB0034497 0.0003 0.0% 1 0.0003 INSERT present_all_masters +# 150 0xC16CEC7CCAF67259 0.0003 0.0% 1 0.0003 LOCK TABLES user_one_time_tokens +# 151 0x3D4B0BB5334BDE56 0.0002 0.0% 1 0.0002 LOCK TABLES user_login_bonuses +# 152 0xE90F9E9547E89206 0.0002 0.0% 1 0.0002 LOCK TABLES version_masters +# 153 0x1D3211FC8C502FA2 0.0002 0.0% 1 0.0002 LOCK TABLES user_sessions +# 154 0x1F6740BFCFE03A20 0.0002 0.0% 1 0.0002 LOCK TABLES admin_users +# 155 0xE0FEC9821064B3B8 0.0002 0.0% 1 0.0002 LOCK TABLES user_present_all_received_history +# 156 0xA5DAC22A01A07C48 0.0002 0.0% 1 0.0002 LOCK TABLES user_devices +# 157 0x3D5B45015389B55D 0.0002 0.0% 1 0.0002 SELECT login_bonus_masters +# 158 0xCA743B363A3AD922 0.0002 0.0% 1 0.0002 SELECT user_items +# 159 0xDFD5504726EB3549 0.0002 0.0% 1 0.0002 LOCK TABLES user_cards +# 160 0x529A1666173F6816 0.0002 0.0% 1 0.0002 LOCK TABLES gacha_item_masters +# 161 0xF63BEE146310AA5E 0.0002 0.0% 1 0.0002 UPDATE admin_sessions +# 162 0x919C4CD1A84CA2E5 0.0002 0.0% 1 0.0002 LOCK TABLES user_decks +# 163 0x800F18B12242617F 0.0002 0.0% 1 0.0002 LOCK TABLES user_items +# 164 0xD83BFF7AF61CCFC2 0.0002 0.0% 1 0.0002 SELECT version_masters +# 165 0x6D10EB097E9787D2 0.0002 0.0% 1 0.0002 SELECT user_login_bonuses +# 166 0xC4772BE419CD0C6D 0.0002 0.0% 1 0.0002 LOCK TABLES user_bans +# 167 0x87BC99050ED44E56 0.0001 0.0% 1 0.0001 LOCK TABLES gacha_masters +# 168 0xCC581D476064ED08 0.0001 0.0% 1 0.0001 SELECT user_devices +# 169 0x78C64A7A6F0B8C0D 0.0001 0.0% 1 0.0001 LOCK TABLES login_bonus_masters +# 170 0xAD2BCB166581B9BE 0.0001 0.0% 1 0.0001 LOCK TABLES item_masters +# 171 0x35CD16F9891E955B 0.0001 0.0% 1 0.0001 LOCK TABLES login_bonus_reward_masters +# 172 0xF2F72CDA74B98AB4 0.0001 0.0% 1 0.0001 LOCK TABLES users +# 173 0x6991460B87D28F36 0.0001 0.0% 1 0.0001 LOCK TABLES present_all_masters +# 174 0x0868D48EF26DB526 0.0001 0.0% 1 0.0001 INSERT admin_users +# 175 0x2CFF86204BE26813 0.0001 0.0% 1 0.0001 SELECT information_schema.ENGINES +# 176 0xFF9B70EBBE41B32D 0.0001 0.0% 1 0.0001 INSERT version_masters # 177 0x2AE2B3044B313A97 0.0001 0.0% 1 0.0001 SET -# 178 0x0109404F4FF70855 0.0001 0.0% 2 0.0000 INIT -# 179 0x880B089EBD9A2CAD 0.0001 0.0% 1 0.0001 SET -# 180 0x05171C9B2C3DBE62 0.0001 0.0% 1 0.0001 SET -# 181 0x404C7B72CAF91ECA 0.0000 0.0% 1 0.0000 SET -# 182 0x7F22BBB9FF2EFA83 0.0000 0.0% 1 0.0000 SET -# 183 0x135A37D729549779 0.0000 0.0% 1 0.0000 SET -# 184 0xD9F25F1131019AB8 0.0000 0.0% 1 0.0000 SET -# 185 0x0C25EDC6C64F42DC 0.0000 0.0% 1 0.0000 SELECT -# 186 0x7F8290E05162B254 0.0000 0.0% 1 0.0000 SET -# 187 0x42191676D8F14F5E 0.0000 0.0% 1 0.0000 SHOW -# 188 0xF3D856BFA86157CE 0.0000 0.0% 1 0.0000 SET -# 189 0x576EF5EB51F5D753 0.0000 0.0% 1 0.0000 SET -# 190 0x7047E58B2A5815B3 0.0000 0.0% 1 0.0000 SELECT -# 191 0xEBA5220D6ABC29D5 0.0000 0.0% 1 0.0000 SELECT -# 192 0xD58C2EC55E332D45 0.0000 0.0% 1 0.0000 SET -# 193 0xCF298A80F7E31AF9 0.0000 0.0% 1 0.0000 SET -# 194 0xC6794245484061FB 0.0000 0.0% 1 0.0000 SET -# 195 0x7A1208BDC805D902 0.0000 0.0% 1 0.0000 SET -# 196 0x23F6EB3A0ECD9E84 0.0000 0.0% 1 0.0000 SET -# 197 0x45788F3F8DFCDAFC 0.0000 0.0% 1 0.0000 SET -# 198 0xD7288668D3824DC6 0.0000 0.0% 1 0.0000 SELECT -# 199 0x1D410B4BE5060972 0.0000 0.0% 1 0.0000 PING -# 200 0x876951F96EBB256F 0.0000 0.0% 1 0.0000 STATISTICS +# 178 0x788E5E772F279047 0.0001 0.0% 1 0.0001 INSERT login_bonus_masters +# 179 0xA3C958A64E1E64AB 0.0001 0.0% 1 0.0001 SHOW +# 180 0x576EF5EB51F5D753 0.0001 0.0% 1 0.0001 SET +# 181 0xCF298A80F7E31AF9 0.0001 0.0% 1 0.0001 SET +# 182 0xD58C2EC55E332D45 0.0001 0.0% 1 0.0001 SET +# 183 0x7A1208BDC805D902 0.0001 0.0% 1 0.0001 SET +# 184 0x880B089EBD9A2CAD 0.0001 0.0% 1 0.0001 SET +# 185 0xC6794245484061FB 0.0001 0.0% 1 0.0001 SET +# 186 0x0109404F4FF70855 0.0001 0.0% 2 0.0000 INIT +# 187 0x7047E58B2A5815B3 0.0001 0.0% 1 0.0001 SELECT +# 188 0x7B8FDA41126FA26B 0.0001 0.0% 1 0.0001 SET +# 189 0x404C7B72CAF91ECA 0.0001 0.0% 1 0.0001 SET +# 190 0x05171C9B2C3DBE62 0.0001 0.0% 1 0.0001 SET +# 191 0xD9F25F1131019AB8 0.0000 0.0% 1 0.0000 SET +# 192 0x23F6EB3A0ECD9E84 0.0000 0.0% 1 0.0000 SET +# 193 0x42191676D8F14F5E 0.0000 0.0% 1 0.0000 SHOW +# 194 0x7F8290E05162B254 0.0000 0.0% 1 0.0000 SET +# 195 0xF3D856BFA86157CE 0.0000 0.0% 1 0.0000 SET +# 196 0x7F22BBB9FF2EFA83 0.0000 0.0% 1 0.0000 SET +# 197 0x135A37D729549779 0.0000 0.0% 1 0.0000 SET +# 198 0xEBA5220D6ABC29D5 0.0000 0.0% 1 0.0000 SELECT +# 199 0x0C25EDC6C64F42DC 0.0000 0.0% 1 0.0000 SELECT +# 200 0xD7288668D3824DC6 0.0000 0.0% 1 0.0000 SELECT +# 201 0x1D410B4BE5060972 0.0000 0.0% 1 0.0000 PING +# 202 0x876951F96EBB256F 0.0000 0.0% 1 0.0000 STATISTICS # Query 1: ID 0xEBB5213FE4967021 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 7084 -# Exec time 16 300.03s 63.0us 1.88s 42.4ms 206.7ms 7.3ms -# Lock time 30 1.92s 0 1.32s 270.6us 1.0us 1.0us +# Count 1 7472 +# Exec time 19 393.54s 63.0us 1.07s 52.7ms 233.4ms 13.4ms +# Lock time 18 1.19s 0 646.0ms 159.8us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_presents(user_id, sent_at, item_type, item_id, amount, present_message, created_at, updated_at) VALUES (100000001216, 1661666337, 1, 1, 3000, 'リリース記念プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 1000, '1ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 1000, '2ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '3ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '4ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '5ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 3000, 'ハーフアニバーサリープレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '7ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '8ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '9ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '10ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '11ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 3000, '1周年突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 6000, '周年記念プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '13ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '14ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '15ヶ月突破プレゼントです1', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '16ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '17ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '18ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '19ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '20ヶ月突破プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '21ヶ月プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '22ヶ月プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 2000, '23ヶ月プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 6000, '2周年記念プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 6000, '2.5周年プレゼントです!', 1661666337, 1661666337),(100000001216, 1661666337, 1, 1, 6000, 'CM放映記念プレゼントです!', 1661666337, 1661666337)\G +INSERT INTO user_presents(user_id, sent_at, item_type, item_id, amount, present_message, created_at, updated_at) VALUES (100000001584, 1661667287, 1, 1, 3000, 'リリース記念プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 1000, '1ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 1000, '2ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '3ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '4ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '5ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 3000, 'ハーフアニバーサリープレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '7ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '8ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '9ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '10ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '11ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 3000, '1周年突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 6000, '周年記念プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '13ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '14ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '15ヶ月突破プレゼントです1', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '16ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '17ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '18ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '19ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '20ヶ月突破プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '21ヶ月プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '22ヶ月プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 2000, '23ヶ月プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 6000, '2周年記念プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 6000, '2.5周年プレゼントです!', 1661667287, 1661667287),(100000001584, 1661667287, 1, 1, 6000, 'CM放映記念プレゼントです!', 1661667287, 1661667287)\G -# Query 2: ID 0xBC7DAD888BA0794F +# Query 2: ID 0x56F8736857272508 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 11 59871 -# Exec time 16 286.32s 44.0us 284.7ms 4.8ms 26.2ms 225.0us -# Lock time 4 263.0ms 0 45.7ms 4.4us 1.0us 1.0us -# Rows sent 6 59.87k 1 1 1.00 1 1 -# Rows examined 2 59.87k 1 1 1.00 1 1 +# Count 1 5590 +# Exec time 15 325.61s 126.0us 862.2ms 58.2ms 257.7ms 17.2ms +# Lock time 1 35.3ms 0 10.2ms 6.3us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 4 117.05k 1 64 20.00 37 23 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM item_masters WHERE id=19 AND item_type=3\G +UPDATE user_presents SET deleted_at=1661667289, updated_at=1661667289 WHERE id IN (100000093200, 100000093201, 100000093202, 100000093203, 100000093204, 100000093205, 100000093206, 100000093207, 100000093208, 100000093209, 100000093210, 100000093211, 100000093212, 100000093213, 100000093214, 93256823141, 42008452099, 68698834034, 31804340737, 66384292685, 46932100568, 45782528507, 28625912859, 68277583320, 27669446765, 293690263, 58423521387, 94359797239, 44955681967, 32812229136, 56230959425, 48255562970, 80249605557, 99098711560, 81556996288, 21044672391) AND deleted_at IS NULL\G -# Query 3: ID 0x56F8736857272508 +# Query 3: ID 0xBC7DAD888BA0794F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5149 -# Exec time 16 284.56s 156.0us 1.04s 55.3ms 236.0ms 17.3ms -# Lock time 1 51.3ms 0 14.8ms 10.0us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 4 109.15k 1 65 21.00 38 23 +# Count 9 48713 +# Exec time 13 277.65s 43.0us 549.4ms 5.7ms 31.7ms 172.0us +# Lock time 4 298.0ms 0 18.5ms 6.1us 1.0us 1.0us +# Rows sent 5 48.71k 1 1 1.00 1 1 +# Rows examined 2 48.71k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_presents SET deleted_at=1661666338, updated_at=1661666338 WHERE id IN (100000076981, 100000076982, 100000076983, 100000076984, 100000076985, 100000076986, 100000076987, 100000076988, 100000076989, 100000076990, 100000076991, 100000076992, 100000076993, 100000076994, 100000076995, 88279153548, 13979718054, 81929677035, 13640785191, 90510216454, 50148097237, 20805860600, 70676261101, 1133664479, 41924672573, 23949104505, 22311518795, 82861271461, 45730810674, 84692162326, 35741251990, 74036335681, 39280263382, 36668403550, 18195776664, 89201212129) AND deleted_at IS NULL\G +SELECT * FROM item_masters WHERE id=21 AND item_type=4\G # Query 4: ID 0x09738B32BB32FCDF # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5166 -# Exec time 7 134.69s 130.0us 570.1ms 26.1ms 121.7ms 3.9ms -# Lock time 0 25.9ms 0 3.9ms 5.0us 1.0us 1.0us -# Rows sent 11 109.43k 0 65 21.00 38 23 -# Rows examined 4 109.43k 0 65 21.00 38 23 +# Count 1 5661 +# Exec time 8 176.12s 123.0us 693.0ms 31.1ms 146.4ms 5.6ms +# Lock time 0 33.3ms 0 9.2ms 5.9us 1.0us 1.0us +# Rows sent 11 118.66k 0 64 20.00 37 23 +# Rows examined 4 118.66k 0 64 20.00 37 23 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ SELECT * FROM user_presents - WHERE user_id = 100000001275 AND deleted_at IS NULL + WHERE user_id = 100000001567 AND deleted_at IS NULL ORDER BY created_at DESC, id LIMIT 100 OFFSET 0\G # Query 5: ID 0xD1412EE5B13BB9A4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5149 -# Exec time 6 106.92s 75.0us 353.6ms 20.8ms 105.7ms 3.6ms -# Lock time 0 23.3ms 0 4.0ms 4.5us 1.0us 1.0us -# Rows sent 11 109.15k 1 65 21.00 38 23 -# Rows examined 4 109.15k 1 65 21.00 38 23 +# Count 1 5590 +# Exec time 6 119.95s 81.0us 391.5ms 21.5ms 100.4ms 3.4ms +# Lock time 1 36.3ms 0 7.1ms 6.5us 1.0us 1.0us +# Rows sent 11 117.05k 1 64 20.00 37 23 +# Rows examined 4 117.05k 1 64 20.00 37 23 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_presents WHERE id IN (100000065271, 100000065272, 100000065273, 100000065274, 100000065275, 100000065276, 100000065277, 100000065278, 100000065279, 100000065280) AND deleted_at IS NULL\G +SELECT * FROM user_presents WHERE id IN (100000091532, 100000091533, 100000091534, 100000091535, 100000091536, 100000091537, 100000091538, 100000091539, 100000091540, 100000091541, 100000091542, 100000091543, 100000091544, 100000091545, 100000091546, 100000091547, 100000091548, 100000091549, 100000091550, 100000091551, 100000091552, 100000091553, 100000091554, 100000091555, 100000091556, 100000091557, 100000091558, 100000091559) AND deleted_at IS NULL\G -# Query 6: ID 0x8C5E75A7D84792D9 +# Query 6: ID 0x47559BA8268C9646 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 10 55946 -# Exec time 4 76.99s 44.0us 250.9ms 1.4ms 5.8ms 121.0us -# Lock time 4 282.9ms 0 38.2ms 5.1us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 2 55.95k 1 1 1.00 1 1 +# Count 1 5661 +# Exec time 5 99.40s 89.0us 471.3ms 17.6ms 94.6ms 712.0us +# Lock time 1 54.5ms 0 9.3ms 9.6us 1.0us 1.0us +# Rows sent 1 5.66k 1 1 1.00 1 1 +# Rows examined 4 118.66k 0 64 20.00 37 23 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE users SET isu_coin=isu_coin+2000 WHERE id=100000001227\G +SELECT COUNT(*) FROM user_presents WHERE user_id = 100000001513 AND deleted_at IS NULL\G -# Query 7: ID 0x47559BA8268C9646 +# Query 7: ID 0x25DDB691D46B02B6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5166 -# Exec time 4 71.86s 90.0us 374.0ms 13.9ms 80.0ms 829.0us -# Lock time 0 25.7ms 0 9.9ms 5.0us 1.0us 1.0us -# Rows sent 1 5.17k 1 1 1.00 1 1 -# Rows examined 4 109.43k 0 65 21.00 38 23 +# Count 9 48713 +# Exec time 3 70.52s 62.0us 199.4ms 1.4ms 6.6ms 136.0us +# Lock time 5 350.6ms 0 101.4ms 7.2us 1.0us 1.0us +# Rows sent 4 41.05k 0 1 0 1 1 +# Rows examined 1 41.05k 0 1 0 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT COUNT(*) FROM user_presents WHERE user_id = 5193664959 AND deleted_at IS NULL\G +SELECT * FROM user_items WHERE user_id=9685255870 AND item_id=25\G -# Query 8: ID 0x25DDB691D46B02B6 +# Query 8: ID 0xD84F496A9784760B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 9 48287 -# Exec time 3 59.40s 61.0us 199.9ms 1.2ms 5.5ms 178.0us -# Lock time 3 192.4ms 0 10.4ms 4.0us 1.0us 1.0us -# Rows sent 4 41.67k 0 1 0 1 1 -# Rows examined 1 41.67k 0 1 0 1 1 +# Count 8 42642 +# Exec time 3 54.04s 51.0us 293.9ms 1.3ms 5.5ms 100.0us +# Lock time 4 286.9ms 0 22.9ms 6.7us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 1 42.64k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_items WHERE user_id=8093918023 AND item_id=17\G +UPDATE user_items SET amount=69, updated_at=1661667288 WHERE id=61458833464\G -# Query 9: ID 0xD84F496A9784760B +# Query 9: ID 0x71524C1BC27B2602 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 8 43019 -# Exec time 3 48.17s 50.0us 238.8ms 1.1ms 5.0ms 133.0us -# Lock time 3 174.4ms 0 17.8ms 4.1us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 2 43.02k 1 1 1.00 1 1 +# Count 6 30307 +# Exec time 2 51.78s 78.0us 291.3ms 1.7ms 7.7ms 148.0us +# Lock time 4 246.9ms 0 26.6ms 8.1us 1.0us 1.0us +# Rows sent 3 30.31k 0 1 0 1 1 +# Rows examined 1 30.31k 0 1 0 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_items SET amount=6, updated_at=1661666329 WHERE id=22319806936\G +SELECT * FROM user_sessions WHERE session_id='f10bfcee-fd8b-4b4b-bde3-04f683c8e9db' AND deleted_at IS NULL\G -# Query 10: ID 0x71524C1BC27B2602 +# Query 10: ID 0xB70C17C590E82A7F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 5 28022 -# Exec time 2 38.15s 80.0us 150.8ms 1.4ms 6.0ms 180.0us -# Lock time 2 114.5ms 0 7.5ms 4.1us 1.0us 1.0us -# Rows sent 3 28.02k 0 1 0 1 1 -# Rows examined 1 28.02k 0 1 0 1 1 +# Count 7 35296 +# Exec time 2 35.85s 45.0us 208.5ms 1.0ms 4.4ms 97.0us +# Lock time 4 249.0ms 0 50.0ms 7.1us 1.0us 1.0us +# Rows sent 3 35.30k 1 1 1.00 1 1 +# Rows examined 2 58.82k 1 2 1.00 2 2 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_sessions WHERE session_id='b3c4fe6a-bd00-4270-a0bc-d62ab94afce6' AND deleted_at IS NULL\G +SELECT * FROM version_masters WHERE status=1\G -# Query 11: ID 0xE3F2CC3C5133F3D5 +# Query 11: ID 0x9FF08D4D58684CB6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 14933 -# Exec time 2 30.54s 100.0us 255.2ms 2.0ms 9.1ms 287.0us -# Lock time 2 96.9ms 0 6.3ms 6.5us 1.0us 1.0us -# Rows sent 42 425.58k 27 29 28.00 29 29 -# Rows examined 30 851.17k 54 58 56.00 58 58 +# Count 2 11707 +# Exec time 2 33.83s 79.0us 478.3ms 2.9ms 12.1ms 161.0us +# Lock time 2 119.0ms 0 23.2ms 10.2us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 11.71k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM gacha_item_masters WHERE gacha_id=40 ORDER BY id ASC\G +INSERT INTO user_cards(user_id, card_id, amount_per_sec, level, total_exp, created_at, updated_at) SELECT 8709883036, id, amount_per_sec, 1, 0, 1661667290, 1661667290 FROM item_masters WHERE id=5 AND item_type=2\G -# Query 12: ID 0xB70C17C590E82A7F +# Query 12: ID 0xE3F2CC3C5133F3D5 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 6 32653 -# Exec time 2 28.24s 46.0us 252.2ms 864.8us 3.6ms 108.0us -# Lock time 3 180.3ms 0 21.4ms 5.5us 1.0us 1.0us -# Rows sent 3 32.65k 1 1 1.00 1 1 -# Rows examined 2 54.80k 1 2 1.00 2 2 +# Count 3 15636 +# Exec time 2 33.26s 100.0us 178.5ms 2.1ms 10.3ms 210.0us +# Lock time 2 103.3ms 0 18.0ms 6.6us 1.0us 1.0us +# Rows sent 42 445.61k 27 29 28.00 29 29 +# Rows examined 30 891.22k 54 58 56.00 58 58 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM version_masters WHERE status=1\G +SELECT * FROM gacha_item_masters WHERE gacha_id=31 ORDER BY id ASC\G # Query 13: ID 0x4018A132A84A16C9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 6 31213 -# Exec time 1 24.23s 41.0us 244.7ms 776.3us 3.3ms 93.0us -# Lock time 3 179.5ms 0 54.5ms 5.8us 1.0us 1.0us -# Rows sent 0 777 0 1 0 0 0 -# Rows examined 0 777 0 1 0 0 0 +# Count 6 33506 +# Exec time 1 31.72s 41.0us 287.3ms 946.6us 4.1ms 83.0us +# Lock time 3 179.3ms 0 15.8ms 5.4us 1.0us 1.0us +# Rows sent 0 818 0 1 0 0 0 +# Rows examined 0 818 0 1 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_bans WHERE user_id=8692418017\G +SELECT * FROM user_bans WHERE user_id=2426865772\G -# Query 14: ID 0xCFBB5352F61B370B +# Query 14: ID 0x40353479CEB359A1 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 18295 -# Exec time 1 23.30s 43.0us 215.8ms 1.3ms 5.1ms 120.0us -# Lock time 2 116.2ms 0 16.7ms 6.4us 1.0us 1.0us -# Rows sent 2 18.29k 0 1 0 1 1 -# Rows examined 1 18.29k 0 1 0 1 1 +# Count 3 17411 +# Exec time 1 31.00s 83.0us 284.8ms 1.8ms 8.5ms 160.0us +# Lock time 2 102.9ms 0 7.5ms 5.9us 1.0us 1.0us +# Rows sent 2 17.41k 1 1 1.00 1 1 +# Rows examined 1 17.41k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM users WHERE id=100000001377\G +SELECT * FROM user_devices WHERE user_id=5689218258 AND platform_id='12111394'\G -# Query 15: ID 0x40353479CEB359A1 +# Query 15: ID 0xCFBB5352F61B370B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 16375 -# Exec time 1 23.21s 85.0us 129.3ms 1.4ms 6.3ms 197.0us -# Lock time 1 64.3ms 0 4.0ms 3.9us 1.0us 1.0us -# Rows sent 2 16.38k 1 1 1.00 1 1 -# Rows examined 1 16.38k 1 2 1.00 1 1 +# Count 4 19217 +# Exec time 1 22.32s 44.0us 217.1ms 1.2ms 5.5ms 99.0us +# Lock time 3 198.2ms 0 34.1ms 10.3us 1.0us 1.0us +# Rows sent 2 19.22k 0 1 0 1 1 +# Rows examined 1 19.22k 0 1 0 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_devices WHERE user_id=9138150472 AND platform_id='6629116'\G +SELECT * FROM users WHERE id=932399426\G # Query 16: ID 0x0AD3A20E4E0B9976 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 2 11493 -# Exec time 1 16.29s 66.0us 122.2ms 1.4ms 6.0ms 176.0us -# Lock time 1 37.9ms 0 2.5ms 3.3us 1.0us 1.0us -# Rows sent 1 7.24k 0 1 0 1 1 -# Rows examined 0 7.24k 0 1 0 1 1 +# Count 2 12345 +# Exec time 1 20.38s 67.0us 195.9ms 1.7ms 7.7ms 141.0us +# Lock time 1 62.9ms 0 17.8ms 5.1us 1.0us 1.0us +# Rows sent 1 7.13k 0 1 0 1 1 +# Rows examined 0 7.13k 0 1 0 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_login_bonuses WHERE user_id=3785682746 AND login_bonus_id=2\G +SELECT * FROM user_login_bonuses WHERE user_id=7690043261 AND login_bonus_id=1\G -# Query 17: ID 0x01FBEC3C6355A8D7 +# Query 17: ID 0xB62AA641054EFD00 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 15838 -# Exec time 1 15.95s 42.0us 115.2ms 1.0ms 4.6ms 111.0us -# Lock time 2 144.7ms 0 64.3ms 9.1us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Count 0 1595 +# Exec time 1 18.94s 87.0us 230.4ms 11.9ms 57.8ms 1.1ms +# Lock time 0 4.8ms 0 1.1ms 3.0us 2.0us 1.0us +# Rows sent 0 1.59k 1 1 1.00 1 1 +# Rows examined 0 1.59k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_cards(user_id, card_id, amount_per_sec, level, total_exp, created_at, updated_at) VALUES (3402629335, 6, 20, 1, 0, 1661666343, 1661666343)\G +SELECT uc.id , uc.user_id , uc.card_id , uc.amount_per_sec , uc.level, uc.total_exp, im.amount_per_sec as 'base_amount_per_sec', im.max_level , im.max_amount_per_sec , im.base_exp_per_level + FROM user_cards as uc + INNER JOIN item_masters as im ON uc.card_id = im.id + WHERE uc.id = 100000015347 AND uc.user_id=100000001566\G -# Query 18: ID 0xB62AA641054EFD00 +# Query 18: ID 0x3E0CC69500F839DC # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1349 -# Exec time 1 14.54s 87.0us 175.1ms 10.8ms 55.4ms 1.0ms -# Lock time 0 5.4ms 0 1.3ms 4.0us 2.0us 1.0us -# Rows sent 0 1.35k 1 1 1.00 1 1 -# Rows examined 0 1.35k 1 1 1.00 1 1 +# Count 1 5490 +# Exec time 1 17.93s 98.0us 327.8ms 3.3ms 14.8ms 184.0us +# Lock time 4 238.7ms 0 196.9ms 43.5us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 5.49k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT uc.id , uc.user_id , uc.card_id , uc.amount_per_sec , uc.level, uc.total_exp, im.amount_per_sec as 'base_amount_per_sec', im.max_level , im.max_amount_per_sec , im.base_exp_per_level - FROM user_cards as uc - INNER JOIN item_masters as im ON uc.card_id = im.id - WHERE uc.id = 100000015092 AND uc.user_id=100000001358\G +UPDATE user_one_time_tokens SET deleted_at=1661667290 WHERE token='8e986ecf-e2d1-44de-acce-8876d2abef62'\G -# Query 19: ID 0x3E0CC69500F839DC +# Query 19: ID 0x43A3321C1A2C0D43 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5071 -# Exec time 1 14.35s 98.0us 218.2ms 2.8ms 12.7ms 245.0us -# Lock time 1 50.7ms 0 16.1ms 10.0us 1.0us 1.0us +# Count 0 2377 +# Exec time 1 17.55s 57.0us 193.5ms 7.4ms 40.1ms 292.0us +# Lock time 0 3.6ms 0 722.0us 1.5us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 5.07k 1 1 1.00 1 1 +# Rows examined 0 2.38k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_one_time_tokens SET deleted_at=1661666319 WHERE token='5ce4e9b2-8492-44f8-9f05-4f114378ea19'\G +UPDATE user_login_bonuses SET last_reward_sequence=9, loop_count=2050, updated_at=1661667268 WHERE id=18566502502\G -# Query 20: ID 0xEDD5122276668036 +# Query 20: ID 0x813031B8BBC3B329 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5097 -# Exec time 1 14.33s 57.0us 164.3ms 2.8ms 12.7ms 235.0us -# Lock time 0 30.7ms 0 21.7ms 6.0us 1.0us 1.0us +# Count 3 16806 +# Exec time 1 16.69s 13.0us 311.6ms 992.9us 3.3ms 43.0us +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_one_time_tokens(user_id, token, token_type, created_at, updated_at, expired_at) VALUES (5797404194, '910fc7ee-61cf-46e8-acb5-6103b6991a7a', 1, 1661666338, 1661666338, 1661666938)\G +COMMIT\G # Query 21: ID 0xB79DB1067F375C1F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3831 -# Exec time 1 12.47s 169.0us 272.7ms 3.3ms 14.0ms 520.0us -# Lock time 0 25.5ms 0 3.9ms 6.6us 1.0us 1.0us -# Rows sent 5 52.10k 0 28 13.00 28 15 -# Rows examined 6 163.81k 28 56 42.00 56 42 +# Count 1 4115 +# Exec time 1 15.99s 146.0us 326.3ms 3.9ms 19.9ms 371.0us +# Lock time 1 35.7ms 0 4.6ms 8.7us 1.0us 1.0us +# Rows sent 6 60.64k 0 28 14.00 28 15 +# Rows examined 6 179.03k 28 83 43.00 83 42 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM present_all_masters WHERE registered_start_at <= 1661666344 AND registered_end_at >= 1661666344 AND id NOT IN (SELECT present_all_id FROM user_present_all_received_history WHERE user_id=7107813072)\G +SELECT * FROM present_all_masters WHERE registered_start_at <= 1661667290 AND registered_end_at >= 1661667290 AND id NOT IN (SELECT present_all_id FROM user_present_all_received_history WHERE user_id=100000001691)\G -# Query 22: ID 0x813031B8BBC3B329 +# Query 22: ID 0x38D4F86FA36095E4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 15401 -# Exec time 1 12.37s 16.0us 248.3ms 803.1us 2.7ms 46.0us -# Lock time 0 0 0 0 0 0 0 +# Count 1 5548 +# Exec time 1 15.15s 68.0us 266.0ms 2.7ms 12.2ms 133.0us +# Lock time 1 49.0ms 0 7.9ms 8.8us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 6 0 2 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -COMMIT\G +UPDATE user_one_time_tokens SET deleted_at=1661667262 WHERE user_id=3954464653 AND deleted_at IS NULL\G -# Query 23: ID 0x38D4F86FA36095E4 +# Query 23: ID 0x0FE1CFCA3C629D6F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5097 -# Exec time 1 11.92s 70.0us 209.9ms 2.3ms 11.2ms 178.0us -# Lock time 0 17.7ms 0 4.8ms 3.5us 1.0us 1.0us +# Count 1 3587 +# Exec time 1 14.50s 51.0us 231.3ms 4.0ms 17.9ms 303.0us +# Lock time 0 18.0ms 0 4.6ms 5.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 4 0 2 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_one_time_tokens SET deleted_at=1661666343 WHERE user_id=2552592815 AND deleted_at IS NULL\G +INSERT INTO user_present_all_received_history(user_id, present_all_id, received_at, created_at, updated_at) VALUES (100000001639, 1, 1661667289, 1661667289, 1661667289),(100000001639, 3, 1661667289, 1661667289, 1661667289),(100000001639, 4, 1661667289, 1661667289, 1661667289),(100000001639, 5, 1661667289, 1661667289, 1661667289),(100000001639, 6, 1661667289, 1661667289, 1661667289),(100000001639, 7, 1661667289, 1661667289, 1661667289),(100000001639, 8, 1661667289, 1661667289, 1661667289),(100000001639, 9, 1661667289, 1661667289, 1661667289),(100000001639, 10, 1661667289, 1661667289, 1661667289),(100000001639, 11, 1661667289, 1661667289, 1661667289),(100000001639, 12, 1661667289, 1661667289, 1661667289),(100000001639, 13, 1661667289, 1661667289, 1661667289),(100000001639, 14, 1661667289, 1661667289, 1661667289),(100000001639, 15, 1661667289, 1661667289, 1661667289),(100000001639, 16, 1661667289, 1661667289, 1661667289),(100000001639, 17, 1661667289, 1661667289, 1661667289),(100000001639, 18, 1661667289, 1661667289, 1661667289),(100000001639, 19, 1661667289, 1661667289, 1661667289),(100000001639, 20, 1661667289, 1661667289, 1661667289),(100000001639, 21, 1661667289, 1661667289, 1661667289),(100000001639, 22, 1661667289, 1661667289, 1661667289),(100000001639, 23, 1661667289, 1661667289, 1661667289),(100000001639, 24, 1661667289, 1661667289, 1661667289),(100000001639, 25, 1661667289, 1661667289, 1661667289),(100000001639, 26, 1661667289, 1661667289, 1661667289),(100000001639, 27, 1661667289, 1661667289, 1661667289),(100000001639, 28, 1661667289, 1661667289, 1661667289),(100000001639, 29, 1661667289, 1661667289, 1661667289)\G -# Query 24: ID 0xB5D7DDC9D01010C7 +# Query 24: ID 0x735EF8318301520F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 46 -# Exec time 1 10.94s 197.3ms 290.0ms 237.9ms 285.6ms 232.6ms -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Count 1 5514 +# Exec time 1 12.79s 86.0us 257.2ms 2.3ms 11.4ms 165.0us +# Lock time 1 45.4ms 0 3.7ms 8.2us 1.0us 1.0us +# Rows sent 1 5.49k 0 1 0 1 1 +# Rows examined 0 5.49k 0 1 0 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_cards` VALUES (37125645528,8815925564,5,390,39,9273,1562268412,1562268412,NULL),(37126173359,9590570948,2,38,38,7235,1581803498,1581803498,NULL),(37126618017,1733879349,2,39,39,9772,1580611592,1580611592,NULL),(37126636563,1883563516,6,780,39,9790,1588641829,1588641829,NULL),(37127033415,1830931510,4,185,37,6980,1572332979,1572332979,NULL),(37127094817,4198279506,3,78,39,9921,1561477426,1561477426,NULL),(37127276944,6492155318,4,170,34,3679,1568652157,1568652157,NULL),(37127426521,8573284484,3,60,30,1855,1641642629,1641642629,NULL),(37127510976,2747908550,5,340,34,3596,1568703677,1568703677,NULL),(37127526090,8735563585,4,175,35,4575,1564172055,1564172055,NULL),(37127567085,2568356455,2,26,26,918,1652206361,1652206361,NULL),(37127652197,8855920880,2,39,39,9385,1566467316,1566467316,NULL),(37127828535,5541944482,3,74,37,7041,1569823739,1569823739,NULL),(37127860418,4421582766,5,320,32,2493,1564864734,1564864734,NULL),(37127894205,3269372057,3,54,27,998,1576033581,1576033581,NULL),(37127937682,3124049382,7,1800,36,5698,1586325707,1586325707,NULL),(37127997099,9169128111,6,680,34,3849,1570987689,1570987689,NULL),(37127999695,3561260605,3,76,38,7422,1561308153,1561308153,NULL),(37128005361,5156991671,2,37,37,6744,1583068837,1583068837,NULL),(37128271149,6230327913,7,1500,30,1958,1582514718,1582514718,NULL),(37128375399,2220416803,3,78,39,9288,1563246170,1563246170,NULL),(37128664415,1125058385,4,160,32,2633,1591136727,1591136727,NULL),(37128929647,219472299,4,190,38,8056,1586150428,1586150428,NULL),(37129073797,4917759307,3,72,36,5063,1575850147,1575850147,NULL),(37129094047,6353026684,3,72,36,5380,1572530866,1572530866,NULL),(37129399699,7755555345,3,60,30,1976,1584125607,1584125607,NULL),(37129469720,5213356759,4,150,30,1670,1588012831,1588012831,NULL),(37129771103,5669219241,6,760,38,8238,1579355932,1579355932,NULL),(37130004206,5132219086,3,54,27,996,1651541194,1651541194,NULL),(37130281624,7859544925,6,500,25,675,1563839275,1563839275,NULL),(37130333179,8919246246,2,30,30,1723,1590623044,1590623044,NULL),(37130390145,9669017581,3,68,34,4084,1581690336,1581690336,NULL),(37130510845,8109996942,5,380,38,8177,1562816875,1562816875,NULL),(37130516367,6591898577,4,195,39,8616,1574782739,1574782739,NULL),(37130525324,8649372732,2,31,31,2129,1645494236,1645494236,NULL),(37130749580,4572051148,3,70,35,4140,1583354543,1583354543,NULL),(37130915715,8509755400,4,180,36,5089,1580250165,1580250165,NULL),(37130928827,9847804433,3,66,33,3382,1565047692,1565047692,NULL),(37130936462,6257530673,2,39,39,9914,1567733719,1567733719,NULL),(37131222333,7436449711,6,780,39,9663,1572936640,1572936640,NULL),(37131532270,4472555009,6,740,37,6084,1642556116,1642556116,NULL),(37131594932,2742560854,8,3400,34,4193,1591032934,1591032934,NULL),(37131617679,5412122570,4,180,36,5435,1584552214,1584552214,NULL),(37131711106,5520380125,6,680,34,3692,1562395401,1562395401,NULL),(37131735569,852091620,3,58,29,1543,1582878466,1582878466,NULL),(37131867647,8962444991,2,39,39,9292,1576236792,1576236792,NULL),(37131884164,1590268330,2,31,31,2064,1643078163,1643078163,NULL),(37131906624,3614186109,4,175,35,4917,1564706018,1564706018,NULL),(37132009692,2268209299,8,3400,34,4303,1563027038,1563027038,NULL),(37132260526,9400744626,2,35,35,4209,1571434393,1571434393,NULL),(37132437352,9853737243,5,360,36,5157,1572024733,1572024733,NULL),(37132437914,1004495434,6,700,35,4855,1578210323,1578210323,NULL),(37132599404,9937188599,7,1950,39,9127,1585437630,1585437630,NULL),(37132688825,4894213571,2,30,30,1738,1584919375,1584919375,NULL),(37132722497,6098938442,3,60,30,1752,1582662996,1582662996,NULL),(37133153225,8325066911,2,37,37,6253,1585191508,1585191508,NULL),(37133156730,3987343439,3,78,39,8872,1570448988,1570448988,NULL),(37133290879,3218147274,2,38,38,7489,1586553446,1586553446,NULL),(37133346929,1198085671,3,76,38,8260,1584544886,1584544886,NULL),(37133824798,3206213137,5,390,39,9440,1588638170,1588638170,NULL),(37133935949,1814771480,3,78,39,9466,1559953470,1559953470,NULL),(37133992044,5582123770,2,36,36,5253,1580383361,1580383361,NULL),(37134325321,7452465272,3,60,30,1870,1565254349,1565254349,NULL),(37134511772,2541733858,2,37,37,6774,1638271013,1638271013,NULL),(37134706094,1562378751,6,780,39,9622,1586533697,1586533697,NULL),(37134772138,2535150879,2,34,34,3846,1623029956,1623029956,NULL),(37134868529,7420556125,4,190,38,7727,1575669500,1575669500,NULL),(37134919236,9921560934,3,68,34,4010,1584465993,1584465993,NULL),(37135104557,9176422687,4,140,28,1306,1584053077,1584053077,NULL),(37135228285,3428136840,3,68,34,3780,1577331377,1577331377,NULL),(37135377333,2032602153,2,37,37,6266,1590384016,1590384016,NULL),(37135545857,7055035209,3,76,38,7994,1572539786,1572539786,NULL),(37135594720,2808907156,4,180,36,5328,1570487594,1570487594,NULL),(37136075117,9043113439,5,380,38,8394,1575874411,1575874411,NULL),(37136170362,6684250464,3,78,39,9592,1570263170,1570263170,NULL),(37136430492,4891766993,4,155,31,2324,1642857093,1642857093,NULL),(37136721237,6589340348,4,195,39,8583,1567123531,1567123531,NULL),(37137230356,8294950173,4,195,39,9959,1581793107,1581793107,NULL),(37137290979,3875524855,4,35,7,27,1585003290,1585003290,NULL),(37137301253,1455448459,7,1450,29,1408,1572691271,1572691271,NULL),(37137343794,4084010476,2,39,39,9499,1651863597,1651863597,NULL),(37137524301,2522290645,5,370,37,7045,1573528632,1573528632,NULL),(37137539617,8446820840,5,230,23,471,1577927129,1577927129,NULL),(37137607164,4009129897,7,1900,38,7624,1588945106,1588945106,NULL),(37137781526,4518071594,6,720,36,5744,1572915265,1572915265,NULL),(37137872561,9286989260,5,360,36,5454,1568204522,1568204522,NULL),(37138011228,2352734330,4,190,38,8348,1573024931,1573024931,NULL),(37138115031,5365434322,4,190,38,7152,1649216063,1649216063,NULL),(37138751462,5977576674,5,330,33,3293,1573176289,1573176289,NULL),(37138754614,816823250,5,310,31,2352,1577022683,1577022683,NULL),(37138851651,3422158712,4,195,39,9387,1574791953,1574791953,NULL),(37138997690,1894970484,6,720,36,5870,1566020250,1566020250,NULL),(37139351339,538842799,6,680,34,3511,1562936352,1562936352,NULL),(37139470004,6028743302,4,160,32,2708,1584643753,1584643753,NULL),(37139552378,1981595624,2,37,37,6245,1575550222,1575550222,NULL),(37139644407,5771217725,2,20,20,285,1582236271,1582236271,NULL),(37139847310,9018043137,3,76,38,7542,1636081893,1636081893,NULL),(37139850197,4894239031,4,165,33,3247,1578030932,1578030932,NULL),(37139883700,4901014967,6,740,37,6498,1580882201,1580882201,NULL),(37140155207,5673745877,4,95,19,252,1564822596,1564822596,NULL),(37140210696,3122896962,3,36,18,207,1575446264,1575446264,NULL),(37140265368,2235817817,3,76,38,8016,1570111184,1570111184,NULL),(37140372301,6748466176,3,78,39,9238,1587480709,1587480709,NULL),(37140743448,3210507549,6,780,39,8881,1579623449,1579623449,NULL),(37140822352,7115972878,6,620,31,2307,1585856262,1585856262,NULL),(37140892384,1333769121,5,270,27,984,1585598187,1585598187,NULL),(37140904829,599011349,6,760,38,8373,1576931878,1576931878,NULL),(37140945091,7029958838,3,74,37,6159,1591020742,1591020742,NULL),(37141078727,531332205,3,76,38,7980,1561315051,1561315051,NULL),(37141413338,8490217549,3,70,35,4368,1590677566,1590677566,NULL),(37141715259,379226029,3,60,30,1747,1563523425,1563523425,NULL),(37141915348,2848375272,2,30,30,1651,1580696190,1580696190,NULL),(37142168650,1549200348,4,165,33,3242,1572057841,1572057841,NULL),(37142364764,596802153,2,38,38,8021,1643172154,1643172154,NULL),(37142586926,129885358,5,320,32,2491,1570743803,1570743803,NULL),(37142854810,7436449711,2,39,39,8900,1572936640,1572936640,NULL),(37143112974,4635969545,3,56,28,1247,1560215536,1560215536,NULL),(37143489109,5305785942,2,37,37,7057,1589482051,1589482051,NULL),(37143554893,5029187824,5,70,7,24,1565095984,1565095984,NULL),(37143686299,8360971323,8,3400,34,4305,1579368628,1579368628,NULL),(37143756407,3561260605,5,280,28,1242,1561308153,1561308153,NULL),(37143793559,6291816399,4,195,39,8877,1583334874,1583334874,NULL),(37143797581,514576678,2,27,27,1131,1584913578,1584913578,NULL),(37143858410,9298894600,2,34,34,3465,1634871085,1634871085,NULL),(37143861985,9658827538,5,350,35,4733,1589744941,1589744941,NULL),(37144265096,4722842006,2,39,39,9874,1584468326,1584468326,NULL),(37144392823,3906103174,4,180,36,5282,1641437503,1641437503,NULL),(37144436871,5472580970,6,420,21,365,1566909444,1566909444,NULL),(37144631473,2191930603,5,340,34,3716,1573662813,1573662813,NULL),(37144960138,5904866411,4,145,29,1555,1577904424,1577904424,NULL),(37145076944,2439103400,5,390,39,9669,1585904470,1585904470,NULL),(37145363881,9338154226,6,680,34,3475,1572437113,1572437113,NULL),(37145902023,3046222883,7,1850,37,6878,1575819954,1575819954,NULL),(37145915921,3020862705,8,3300,33,3221,1634183801,1634183801,NULL),(37145917940,2966927728,3,56,28,1327,1636027202,1636027202,NULL),(37146175976,6051031295,3,74,37,6733,1568514590,1568514590,NULL),(37146189545,8415729755,3,78,39,9179,1582770305,1582770305,NULL),(37146577230,8465442416,2,33,33,2861,1631758720,1631758720,NULL),(37146619493,5923893026,4,195,39,8857,1586141903,1586141903,NULL),(37146635177,1855481534,2,32,32,2425,1587328940,1587328940,NULL),(37146663997,6466758249,4,195,39,9562,1590518747,1590518747,NULL),(37146672338,2325825439,3,76,38,7714,1569407866,1569407866,NULL),(37146682574,3911441924,5,380,38,7308,1577776745,1577776745,NULL),(37147178814,9235485685,5,380,38,8302,1582343854,1582343854,NULL),(37147428123,1762953228,4,150,30,1756,1582767570,1582767570,NULL),(37147489996,3972616638,2,37,37,6433,1579594481,1579594481,NULL),(37147588665,9052320474,7,1600,32,2532,1579790473,1579790473,NULL),(37147883623,9401602633,8,3400,34,4275,1653017295,1653017295,NULL),(37148221860,2519351957,3,78,39,8977,1581830389,1581830389,NULL),(37148248421,6644350795,2,33,33,2970,1567068880,1567068880,NULL),(37148270103,2858450558,3,36,18,197,1559975165,1559975165,NULL),(37148317867,4705955888,3,70,35,4233,1578643503,1578643503,NULL),(37148384339,1401297696,2,35,35,4230,1590892377,1590892377,NULL),(37148489583,5264321007,4,185,37,7032,1586395732,1586395732,NULL),(37148651074,4210937014,2,38,38,8218,1586647652,1586647652,NULL),(37148668685,7127921258,4,55,11,54,1589866033,1589866033,NULL),(37148755388,6735638413,4,190,38,7486,1572359605,1572359605,NULL),(37148821223,4463129003,2,32,32,2403,1584225032,1584225032,NULL),(37148859984,7202530856,4,180,36,5701,1570599770,1570599770,NULL),(37149080073,6529939152,2,21,21,321,1579724622,1579724622,NULL),(37149124888,1644633276,4,185,37,6466,1578904393,1578904393,NULL),(37149144771,7891821228,5,290,29,1444,1587885638,1587885638,NULL),(37149147506,712259150,2,34,34,3496,1566356010,1566356010,NULL),(37149153704,7067031403,4,180,36,5331,1574894525,1574894525,NULL),(37149354123,6480413490,6,780,39,9443,1634525183,1634525183,NULL),(37149386833,5948509262,5,380,38,8482,1586417164,1586417164,NULL),(37149544781,6135134290,5,370,37,6414,1569277447,1569277447,NULL),(37149630893,3545704351,3,78,39,8916,1583326316,1583326316,NULL),(37149701672,848886549,3,76,38,7884,1589274317,1589274317,NULL),(37149701913,4764804678,4,170,34,4028,1564857853,1564857853,NULL),(37149832171,9084877900,5,240,24,552,1583086739,1583086739,NULL),(37149848132,9738851743,4,195,39,9157,1573507406,1573507406,NULL),(37149924582,256688162,4,160,32,2760,1649302690,1649302690,NULL),(37149925225,1811487712,2,25,25,701,1573622416,1573622416,NULL),(37149958268,7661644958,6,680,34,3786,1624229847,1624229847,NULL),(37150082162,473164013,4,180,36,5084,1568488304,1568488304,NULL),(37150179478,2173649776,5,340,34,4037,1570000600,1570000600,NULL),(37150382486,2168312067,4,195,39,9990,1560275036,1560275036,NULL),(37150455447,8486070511,2,37,37,6882,1574449449,1574449449,NULL),(37150560268,7292559034,3,68,34,3605,1574695074,1574695074,NULL),(37150599235,1663623003,5,390,39,9487,1590981330,1590981330,NULL),(37150715746,7477903610,4,190,38,7560,1573003123,1573003123,NULL),(37150755583,2014450047,7,1900,38,7944,1560414980,1560414980,NULL),(37150809122,2297491321,2,36,36,5101,1578269183,1578269183,NULL),(37150809999,649523687,3,76,38,8066,1583684110,1583684110,NULL),(37150994883,7176280103,2,39,39,9937,1576316518,1576316518,NULL),(37151223678,3614489400,7,1050,21,364,1563500081,1563500081,NULL),(37151471656,9012207516,5,390,39,8573,1576505999,1576505999,NULL),(37151580549,8638161461,3,74,37,7069,1581201328,1581201328,NULL),(37151601240,931925534,7,1200,24,582,1588065820,1588065820,NULL),(37152139917,9968487249,3,72,36,5250,1588710922,1588710922,NULL),(37152262241,6929168568,2,30,30,1759,1575698146,1575698146,NULL),(37152285704,8536432434,2,38,38,8414,1561318207,1561318207,NULL),(37152492876,6433882791,2,37,37,6282,1563011268,1563011268,NULL),(37152530097,8562993147,3,78,39,9817,1584330492,1584330492,NULL),(37152621610,6557419751,3,78,39,8754,1590220565,1590220565,NULL),(37152721003,6436575643,2,24,24,631,1633476085,1633476085,NULL),(37152767773,5069743418,2,38,38,7798,1580788486,1580788486,NULL),(37152918761,7089931456,5,350,35,4251,1589470361,1589470361,NULL),(37153053736,5469681879,4,180,36,5142,1586367602,1586367602,NULL),(37153185634,3842190644,3,76,38,8158,1579032773,1579032773,NULL),(37153765857,4173815770,4,185,37,7032,1585941162,1585941162,NULL),(37153817305,9246114478,2,30,30,1882,1579808981,1579808981,NULL),(37153817992,3613151431,4,155,31,2110,1566991937,1566991937,NULL),(37153888323,6702094257,4,170,34,4081,1572667815,1572667815,NULL),(37153960022,5910402046,3,36,18,196,1560106787,1560106787,NULL),(37154030572,1936569006,3,46,23,498,1574218133,1574218133,NULL),(37154076043,8455594198,3,78,39,9008,1581497342,1581497342,NULL),(37154185770,5776608493,6,700,35,4743,1575586385,1575586385,NULL),(37154298108,6238234438,2,32,32,2552,1561158944,1561158944,NULL),(37154326233,5802034127,3,78,39,9237,1565655957,1565655957,NULL),(37154430701,4645743809,2,32,32,2692,1562214828,1562214828,NULL),(37154813598,150118609,3,72,36,5428,1571349795,1571349795,NULL),(37154852692,8149636905,3,78,39,9496,1566090419,1566090419,NULL),(37154952454,8257093521,3,78,39,8829,1569387177,1569387177,NULL),(37155121791,8187862460,5,270,27,984,1588432548,1588432548,NULL),(37155131553,848501430,2,37,37,6929,1583009914,1583009914,NULL),(37155306243,4877966346,2,39,39,9316,1564393601,1564393601,NULL),(37155322376,8141571665,4,195,39,8649,1643816234,1643816234,NULL),(37155425115,9148040686,2,29,29,1420,1582756336,1582756336,NULL),(37155717999,4303292769,3,36,18,219,1571480102,1571480102,NULL),(37155739725,3231179138,4,195,39,9903,1573635505,1573635505,NULL),(37155762706,7644552362,4,195,39,9638,1565515815,1565515815,NULL),(37155771124,9928731680,4,175,35,4157,1580686470,1580686470,NULL),(37155925298,3959483630,3,50,25,720,1578565026,1578565026,NULL),(37155968588,1573893405,5,330,33,3154,1563619956,1563619956,NULL),(37156021277,9716268687,7,1700,34,3929,1565334647,1565334647,NULL),(37156082200,6137147746,2,30,30,1849,1636457977,1636457977,NULL),(37156235885,9278671937,2,39,39,8766,1559892676,1559892676,NULL),(37156262114,8205721264,5,250,25,742,1644653756,1644653756,NULL),(37156542023,1391164096,2,32,32,2732,1566007508,1566007508,NULL),(37156649623,2881164865,7,1900,38,7366,1561160691,1561160691,NULL),(37156976137,4629340020,8,3000,30,2030,1564399787,1564399787,NULL),(37157015043,7782481020,3,76,38,7362,1565629554,1565629554,NULL),(37157089928,8392929405,3,78,39,8851,1572595736,1572595736,NULL),(37157373537,3341470586,7,1750,35,4209,1577600391,1577600391,NULL),(37157400790,1566240009,2,29,29,1501,1572328130,1572328130,NULL),(37157406945,7734509214,2,35,35,4826,1572631224,1572631224,NULL),(37157769823,6612984888,2,29,29,1466,1561622123,1561622123,NULL),(37157825385,2965210589,8,3200,32,2992,1564231556,1564231556,NULL),(37157903917,8016208203,4,180,36,5286,1576112400,1576112400,NULL),(37158149722,1856169995,4,105,21,338,1564453775,1564453775,NULL),(37158576342,304702490,3,70,35,4814,1587311397,1587311397,NULL),(37158697179,4518237311,2,34,34,3603,1579223638,1579223638,NULL),(37159022860,6187970206,2,38,38,8138,1581459929,1581459929,NULL),(37159131019,8709883036,6,540,27,1001,1648151939,1648151939,NULL),(37159142966,400670094,5,370,37,6021,1584906405,1584906405,NULL),(37159244596,5913905158,4,190,38,8418,1573239146,1573239146,NULL),(37159345138,1374944853,5,380,38,7845,1567396172,1567396172,NULL),(37159374925,9614042306,4,120,24,607,1559804110,1559804110,NULL),(37159389810,5590790501,2,34,34,4042,1583024622,1583024622,NULL),(37159782733,4725233480,4,195,39,9368,1579758431,1579758431,NULL),(37159788509,2761905882,6,760,38,7951,1568937882,1568937882,NULL),(37159801712,8877861219,5,350,35,4204,1561351130,1561351130,NULL),(37159902147,6793623529,6,680,34,4054,1584193198,1584193198,NULL),(37160308449,1151949844,3,78,39,8837,1569770545,1569770545,NULL),(37160568835,5930215887,3,68,34,3999,1564901713,1564901713,NULL),(37160646062,3959462420,2,32,32,2567,1642729051,1642729051,NULL),(37160647917,8097035647,2,34,34,3431,1566419034,1566419034,NULL),(37160672805,4969329384,2,36,36,5643,1578674789,1578674789,NULL),(37160799386,7401463052,3,54,27,1028,1568313775,1568313775,NULL),(37161248113,9601173454,3,76,38,7285,1587808819,1587808819,NULL),(37161458219,2997637620,2,30,30,1814,1566478841,1566478841,NULL),(37161735868,4700242850,7,1800,36,5177,1565862666,1565862666,NULL),(37162172313,9877807609,3,48,24,565,1574550150,1574550150,NULL),(37162225457,3942470648,2,27,27,1118,1560178707,1560178707,NULL),(37162258657,1368408833,3,74,37,6035,1583616168,1583616168,NULL),(37162410588,4987323233,2,37,37,6538,1576587887,1576587887,NULL),(37162488241,4949059302,3,78,39,9492,1569713858,1569713858,NULL),(37162493935,7269000241,3,70,35,4101,1580173930,1580173930,NULL),(37162904443,2026063328,2,37,37,6929,1587242427,1587242427,NULL),(37163314455,3357335089,2,38,38,7465,1581714952,1581714952,NULL),(37163328868,6504490965,5,380,38,8203,1588048901,1588048901,NULL),(37163513415,5346935787,4,185,37,6612,1586622861,1586622861,NULL),(37163610155,845272639,3,70,35,4731,1588237422,1588237422,NULL),(37164236859,5678759376,2,34,34,3448,1575170075,1575170075,NULL),(37164421078,9065168516,5,390,39,9094,1572452846,1572452846,NULL),(37164494768,280606619,4,180,36,5369,1585435713,1585435713,NULL),(37164498950,262056618,5,380,38,7220,1590938750,1590938750,NULL),(37164749214,4853216823,2,34,34,4042,1574527447,1574527447,NULL),(37164776618,9306430212,2,27,27,995,1585685432,1585685432,NULL),(37164809240,7032665335,2,36,36,5096,1573689258,1573689258,NULL),(37165213955,8213185915,4,190,38,8328,1581741110,1581741110,NULL),(37165271714,8257845075,3,76,38,8065,1571554071,1571554071,NULL),(37165280998,5299358388,7,1900,38,7141,1563636804,1563636804,NULL),(37165303116,3746572617,3,76,38,8397,1559985798,1559985798,NULL),(37165396003,3357335089,4,160,32,2687,1581714952,1581714952,NULL),(37165441471,3218593877,3,70,35,4542,1642418359,1642418359,NULL),(37165470045,7690737029,4,165,33,3082,1575248548,1575248548,NULL),(37165649653,8375609359,2,38,38,7949,1563109622,1563109622,NULL),(37165782642,8504717355,2,26,26,903,1568337770,1568337770,NULL),(37166251818,9786953989,5,360,36,5068,1570272358,1570272358,NULL),(37166308604,6684425348,2,35,35,4320,1583961542,1583961542,NULL),(37166484085,2708938502,4,175,35,4261,1567918102,1567918102,NULL),(37166612775,7070339946,8,3100,31,2378,1582156637,1582156637,NULL),(37166655610,6994537075,3,76,38,8129,1560346581,1560346581,NULL),(37166800896,2948389249,2,33,33,3345,1576884260,1576884260,NULL),(37166823846,7283630939,3,64,32,2550,1568762004,1568762004,NULL),(37167409518,4370650537,6,720,36,5423,1562317769,1562317769,NULL),(37167462454,3793729279,6,640,32,2611,1560703896,1560703896,NULL),(37167570512,2338266922,2,39,39,8975,1560798201,1560798201,NULL),(37167616950,5433018760,3,66,33,3339,1578744806,1578744806,NULL),(37167654291,861483725,4,190,38,8089,1582303999,1582303999,NULL),(37167699669,1135753108,2,38,38,7761,1588949097,1588949097,NULL),(37167718297,62461721,2,37,37,6781,1567282345,1567282345,NULL),(37167882753,2514414703,4,160,32,2430,1562936056,1562936056,NULL),(37168019187,6589494309,4,195,39,9318,1572923550,1572923550,NULL),(37168056214,8618768322,7,1800,36,5033,1573083753,1573083753,NULL),(37168428328,6697978628,3,70,35,4870,1564411839,1564411839,NULL),(37168520317,3431683043,4,160,32,2838,1561842342,1561842342,NULL),(37168524711,2835349741,3,68,34,3918,1572367944,1572367944,NULL),(37169395552,9553139019,3,66,33,2900,1564450603,1564450603,NULL),(37169409113,2816586709,4,170,34,3712,1586829332,1586...\G +SELECT * FROM user_one_time_tokens WHERE token='85311dc2-fd7b-4ed5-8cdf-59a3c623b3a2' AND token_type=1 AND deleted_at IS NULL\G -# Query 25: ID 0x0FE1CFCA3C629D6F +# Query 25: ID 0xEDD5122276668036 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3362 -# Exec time 1 10.82s 47.0us 191.9ms 3.2ms 14.8ms 327.0us -# Lock time 0 9.4ms 0 1.1ms 2.8us 1.0us 1.0us +# Count 1 5548 +# Exec time 1 12.58s 54.0us 246.6ms 2.3ms 10.7ms 158.0us +# Lock time 1 92.3ms 0 51.1ms 16.6us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_present_all_received_history(user_id, present_all_id, received_at, created_at, updated_at) VALUES (100000001111, 1, 1661666333, 1661666333, 1661666333),(100000001111, 3, 1661666333, 1661666333, 1661666333),(100000001111, 4, 1661666333, 1661666333, 1661666333),(100000001111, 5, 1661666333, 1661666333, 1661666333),(100000001111, 6, 1661666333, 1661666333, 1661666333),(100000001111, 7, 1661666333, 1661666333, 1661666333),(100000001111, 8, 1661666333, 1661666333, 1661666333),(100000001111, 9, 1661666333, 1661666333, 1661666333),(100000001111, 10, 1661666333, 1661666333, 1661666333),(100000001111, 11, 1661666333, 1661666333, 1661666333),(100000001111, 12, 1661666333, 1661666333, 1661666333),(100000001111, 13, 1661666333, 1661666333, 1661666333),(100000001111, 14, 1661666333, 1661666333, 1661666333),(100000001111, 15, 1661666333, 1661666333, 1661666333),(100000001111, 16, 1661666333, 1661666333, 1661666333),(100000001111, 17, 1661666333, 1661666333, 1661666333),(100000001111, 18, 1661666333, 1661666333, 1661666333),(100000001111, 19, 1661666333, 1661666333, 1661666333),(100000001111, 20, 1661666333, 1661666333, 1661666333),(100000001111, 21, 1661666333, 1661666333, 1661666333),(100000001111, 22, 1661666333, 1661666333, 1661666333),(100000001111, 23, 1661666333, 1661666333, 1661666333),(100000001111, 24, 1661666333, 1661666333, 1661666333),(100000001111, 25, 1661666333, 1661666333, 1661666333),(100000001111, 26, 1661666333, 1661666333, 1661666333),(100000001111, 27, 1661666333, 1661666333, 1661666333),(100000001111, 28, 1661666333, 1661666333, 1661666333),(100000001111, 29, 1661666333, 1661666333, 1661666333)\G +INSERT INTO user_one_time_tokens(user_id, token, token_type, created_at, updated_at, expired_at) VALUES (100000001622, 'f61d1a85-3ca4-44e1-b8f5-a4149b413a18', 2, 1661667290, 1661667290, 1661667890)\G -# Query 26: ID 0x735EF8318301520F +# Query 26: ID 0x5E1254C1FDBF900B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 5073 -# Exec time 1 10.49s 86.0us 202.9ms 2.1ms 9.6ms 206.0us -# Lock time 0 30.0ms 0 4.0ms 5.9us 1.0us 1.0us -# Rows sent 1 5.07k 0 1 0 1 1 -# Rows examined 0 5.07k 1 1 1.00 1 1 +# Count 2 7992 +# Exec time 1 12.33s 71.0us 128.3ms 1.5ms 7.8ms 144.0us +# Lock time 1 63.1ms 0 7.0ms 7.9us 1.0us 1.0us +# Rows sent 2 23.98k 3 3 3.00 3 3 +# Rows examined 1 23.98k 3 3 3.00 3 3 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_one_time_tokens WHERE token='8d873981-fdd6-42fe-a7d8-896fbfe5d777' AND token_type=1 AND deleted_at IS NULL\G +SELECT * FROM user_cards WHERE id IN (61438962079, 29749850694, 55784754499)\G -# Query 27: ID 0x5E1254C1FDBF900B +# Query 27: ID 0x46E831BB9D45501A # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 7535 -# Exec time 1 10.38s 69.0us 178.1ms 1.4ms 6.3ms 180.0us -# Lock time 1 53.6ms 0 16.1ms 7.1us 1.0us 1.0us -# Rows sent 2 22.61k 3 3 3.00 3 3 -# Rows examined 1 22.61k 3 3 3.00 3 3 +# Count 1 7591 +# Exec time 1 11.37s 62.0us 191.3ms 1.5ms 7.1ms 124.0us +# Lock time 1 46.9ms 0 5.3ms 6.2us 1.0us 1.0us +# Rows sent 1 7.59k 1 1 1.00 1 1 +# Rows examined 11 318.82k 42 42 42.00 42 42 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_cards WHERE id IN (19152654629, 65138766865, 9237531759)\G +SELECT * FROM login_bonus_reward_masters WHERE login_bonus_id=1 AND reward_sequence=1\G -# Query 28: ID 0x2CE978E42A81CC00 +# Query 28: ID 0x0BF61C5CE8BB8E5E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 6188 -# Exec time 0 8.27s 77.0us 208.7ms 1.3ms 5.9ms 185.0us -# Lock time 1 37.5ms 0 9.8ms 6.1us 1.0us 1.0us -# Rows sent 1 6.19k 1 1 1.00 1 1 -# Rows examined 0 6.19k 1 1 1.00 1 1 +# Count 1 5214 +# Exec time 1 11.35s 40.0us 318.3ms 2.2ms 7.2ms 79.0us +# Lock time 1 37.4ms 0 8.8ms 7.2us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_decks WHERE user_id=7720977344 AND deleted_at IS NULL\G +INSERT INTO user_login_bonuses(user_id, login_bonus_id, last_reward_sequence, loop_count, created_at, updated_at) VALUES (100000001674, 1, 1, 1, 1661667290, 1661667290)\G -# Query 29: ID 0x46E831BB9D45501A +# Query 29: ID 0x2CE978E42A81CC00 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 6667 -# Exec time 0 8.16s 63.0us 153.7ms 1.2ms 5.6ms 160.0us -# Lock time 0 23.5ms 0 7.1ms 3.5us 1.0us 1.0us -# Rows sent 1 6.67k 1 1 1.00 1 1 -# Rows examined 10 280.01k 42 42 42.00 42 42 +# Count 1 6374 +# Exec time 0 10.32s 78.0us 98.7ms 1.6ms 8.2ms 151.0us +# Lock time 1 54.2ms 0 8.0ms 8.5us 1.0us 1.0us +# Rows sent 1 6.37k 1 1 1.00 1 1 +# Rows examined 0 6.37k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM login_bonus_reward_masters WHERE login_bonus_id=1 AND reward_sequence=1\G +SELECT * FROM user_decks WHERE user_id=8421458352 AND deleted_at IS NULL\G -# Query 30: ID 0x55BF7704455C98AA +# Query 30: ID 0x8C5E75A7D84792D9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3722 -# Exec time 0 7.01s 98.0us 202.1ms 1.9ms 8.5ms 237.0us -# Lock time 1 35.2ms 0 14.9ms 9.4us 1.0us 1.0us -# Rows sent 0 3.72k 1 1 1.00 1 1 -# Rows examined 4 107.94k 29 29 29.00 29 29 +# Count 1 5616 +# Exec time 0 9.66s 54.0us 176.1ms 1.7ms 8.2ms 104.0us +# Lock time 0 24.3ms 0 5.1ms 4.3us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 5.62k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT SUM(weight) FROM gacha_item_masters WHERE gacha_id='37'\G +UPDATE users SET isu_coin=isu_coin+3000 WHERE id=100000001046\G -# Query 31: ID 0x517F86F6D70065B6 +# Query 31: ID 0xA9E358AEC901D3FA # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 6.82s 6.82s 6.82s 6.82s 6.82s 6.82s -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Count 1 7666 +# Exec time 0 9.56s 39.0us 103.8ms 1.2ms 5.5ms 78.0us +# Lock time 0 17.1ms 0 2.5ms 2.2us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOAD DATA INFILE '/var/lib/mysql-files/5_user_presents_not_receive_data.tsv' REPLACE INTO TABLE user_presents FIELDS ESCAPED BY '|' IGNORE 1 LINES\G - -# Query 32: ID 0x7CA1FDC8C5362D5B -# Attribute pct total min max avg 95% median -# ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3722 -# Exec time 0 6.67s 60.0us 198.7ms 1.8ms 6.7ms 150.0us -# Lock time 0 29.3ms 0 5.8ms 7.9us 1.0us 1.0us -# Rows sent 0 3.72k 1 1 1.00 1 1 -# Rows examined 0 3.72k 1 1 1.00 1 1 -# String: -# Databases -# -# EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM gacha_masters WHERE id='37' AND start_at <= 1661666345 AND end_at >= 1661666345\G +INSERT INTO user_items(user_id, item_id, item_type, amount, created_at, updated_at) VALUES (100000000947, 17, 3, 1, 1661667265, 1661667265)\G -# Query 33: ID 0xA9E358AEC901D3FA +# Query 32: ID 0xB5D7DDC9D01010C7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 6617 -# Exec time 0 6.66s 38.0us 136.3ms 1.0ms 4.5ms 96.0us -# Lock time 0 25.8ms 0 8.6ms 3.9us 1.0us 1.0us +# Count 0 46 +# Exec time 0 9.31s 157.1ms 349.6ms 202.3ms 242.4ms 200.1ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_items(user_id, item_id, item_type, amount, created_at, updated_at) VALUES (100000000764, 17, 3, 1, 1661666319, 1661666319)\G +INSERT INTO `user_cards` VALUES (1042148,9904038980,6,720,36,5336,1639932222,1639932222,NULL),(1244938,6377796084,2,37,37,6401,1587895275,1587895275,NULL),(1416794,6308985003,3,78,39,8936,1579495898,1579495898,NULL),(1529355,3633505667,4,190,38,7351,1589078870,1589078870,NULL),(1533565,4531804141,2,27,27,992,1568761236,1568761236,NULL),(1688704,7619017513,2,38,38,7175,1560286058,1560286058,NULL),(1871445,8038102514,4,190,38,7132,1651880395,1651880395,NULL),(2139290,3988025015,2,38,38,7571,1571675059,1571675059,NULL),(2142430,9114509791,6,680,34,4009,1650229517,1650229517,NULL),(2261704,6507085784,5,220,22,439,1567775670,1567775670,NULL),(2521277,9836185994,2,38,38,7437,1561718808,1561718808,NULL),(2559963,1814096909,5,380,38,7710,1566918119,1566918119,NULL),(2561556,1868649358,3,52,26,936,1561574057,1561574057,NULL),(3386042,4968746984,2,30,30,1819,1573831617,1573831617,NULL),(3390241,3275401265,3,68,34,3468,1573168446,1573168446,NULL),(3685095,7408856467,4,180,36,5543,1588642077,1588642077,NULL),(3759998,8460923741,2,37,37,6467,1574381045,1574381045,NULL),(3879076,4803867675,2,39,39,8606,1584530944,1584530944,NULL),(3986003,6467720550,4,120,24,630,1589976728,1589976728,NULL),(4254523,9774621052,2,37,37,6572,1560394874,1560394874,NULL),(4275720,6073303372,4,175,35,4688,1569290794,1569290794,NULL),(4633981,6526445159,8,3700,37,7731,1575258716,1575258716,NULL),(4869579,7925823987,5,330,33,2891,1588944028,1588944028,NULL),(4966275,6265633668,2,39,39,8551,1635709081,1635709081,NULL),(5379842,6662822735,5,350,35,4394,1568045506,1568045506,NULL),(5440489,9273593974,7,1900,38,7351,1572641760,1572641760,NULL),(5707604,2747908550,3,66,33,3413,1568703677,1568703677,NULL),(5757257,9186071752,2,30,30,1758,1649927959,1649927959,NULL),(5906842,677178456,4,150,30,1697,1588244997,1588244997,NULL),(6153275,3904897793,2,39,39,8658,1566279739,1566279739,NULL),(6475922,4838384066,2,36,36,4996,1571617167,1571617167,NULL),(6510433,9003417202,3,58,29,1424,1567766969,1567766969,NULL),(6637893,2435369136,2,39,39,8728,1590890847,1590890847,NULL),(7074693,6205275430,3,68,34,3579,1578445415,1578445415,NULL),(7104382,1978965407,2,19,19,239,1559782627,1559782627,NULL),(7315542,3942805941,2,38,38,7138,1582730783,1582730783,NULL),(7418535,7506701589,2,26,26,872,1584381645,1584381645,NULL),(7422601,2314668063,2,37,37,6093,1566168777,1566168777,NULL),(7625098,8051649102,4,145,29,1639,1574956849,1574956849,NULL),(7776198,7239610127,6,480,24,580,1587481551,1587481551,NULL),(8238488,9030911329,5,280,28,1336,1584473146,1584473146,NULL),(8273805,2899375336,5,340,34,3667,1570960096,1570960096,NULL),(8650103,5816774884,5,300,30,1882,1587703917,1587703917,NULL),(8767319,7227289271,6,720,36,5076,1643589156,1643589156,NULL),(9079184,3959483630,7,1900,38,7938,1578565026,1578565026,NULL),(9208109,7788727447,2,24,24,639,1588495410,1588495410,NULL),(9269764,59355076,2,20,20,273,1587761535,1587761535,NULL),(9431710,9611548593,2,33,33,2929,1650749923,1650749923,NULL),(9533265,8808931084,3,72,36,5870,1572315181,1572315181,NULL),(9901175,3089695961,5,330,33,3364,1568037074,1568037074,NULL),(10209659,468343015,4,190,38,7973,1589966521,1589966521,NULL),(10238224,7071631692,5,370,37,6703,1565426069,1565426069,NULL),(10349587,946106436,7,1400,28,1250,1567237140,1567237140,NULL),(10556234,3456430098,3,72,36,5541,1576930078,1576930078,NULL),(10661562,5422571128,3,68,34,3451,1589574585,1589574585,NULL),(10715304,4841414231,4,155,31,2143,1572074796,1572074796,NULL),(10902378,6183308173,3,58,29,1433,1583015815,1583015815,NULL),(11054785,813795754,2,35,35,4551,1577918354,1577918354,NULL),(11103415,7885194918,4,195,39,9113,1571293405,1571293405,NULL),(11133842,2828314155,5,390,39,8999,1566998850,1566998850,NULL),(11330018,7948844482,5,250,25,699,1584598558,1584598558,NULL),(11341671,1698518612,2,34,34,3619,1562563869,1562563869,NULL),(11342276,7106607824,3,78,39,9493,1586479326,1586479326,NULL),(11717339,8913929573,6,680,34,3566,1587725389,1587725389,NULL),(11760174,9892526245,5,330,33,2861,1563794362,1563794362,NULL),(11941241,5662877834,2,38,38,7843,1561925017,1561925017,NULL),(12002196,9750095331,4,130,26,849,1572213418,1572213418,NULL),(12033661,4429816437,4,175,35,4253,1581346892,1581346892,NULL),(12231507,6779308633,3,78,39,8668,1638428701,1638428701,NULL),(12629841,5326556528,7,1900,38,7918,1565320831,1565320831,NULL),(12636946,1728544529,4,180,36,5039,1563711654,1563711654,NULL),(12857486,1699083899,2,36,36,5444,1577757401,1577757401,NULL),(13127444,9134963464,2,25,25,705,1564450349,1564450349,NULL),(13145608,4636118502,2,37,37,6261,1583152998,1583152998,NULL),(13149610,7743061977,4,195,39,9907,1577001237,1577001237,NULL),(13203634,9903364419,3,72,36,5741,1577866359,1577866359,NULL),(13233249,8639056571,2,38,38,8309,1567468282,1567468282,NULL),(13263911,9896096899,4,165,33,3145,1649761560,1649761560,NULL),(13402821,497081891,5,320,32,2522,1636447797,1636447797,NULL),(13454126,8533731915,3,74,37,6385,1591092809,1591092809,NULL),(13491059,3863132342,5,360,36,5845,1564045260,1564045260,NULL),(14319430,8462850297,4,165,33,3196,1579320805,1579320805,NULL),(14365402,8657844709,3,68,34,3730,1566575590,1566575590,NULL),(14444790,4491949404,7,1950,39,9179,1561311031,1561311031,NULL),(14446356,8036535366,4,190,38,7663,1641620307,1641620307,NULL),(14469355,127166874,7,1750,35,4837,1569769451,1569769451,NULL),(14675701,3987343439,2,36,36,5192,1570448988,1570448988,NULL),(14720895,5425866307,2,28,28,1284,1579752772,1579752772,NULL),(14734560,5288022802,2,34,34,3478,1564957283,1564957283,NULL),(15052436,7634019447,2,19,19,241,1574052465,1574052465,NULL),(15197367,7882616109,2,34,34,3527,1575630714,1575630714,NULL),(15463447,712102024,2,36,36,5231,1573878219,1573878219,NULL),(15876531,8084246891,4,180,36,5606,1577353414,1577353414,NULL),(15926916,4276548930,2,34,34,3929,1560551582,1560551582,NULL),(16043355,3396651201,5,180,18,186,1563963277,1563963277,NULL),(16075246,4141821632,2,38,38,7616,1582480957,1582480957,NULL),(16153578,784768125,6,760,38,7544,1572732835,1572732835,NULL),(16177835,8086887291,2,39,39,9889,1570618867,1570618867,NULL),(16237244,7659700327,4,190,38,7352,1569822082,1569822082,NULL),(16242939,2902948799,6,380,19,258,1585511495,1585511495,NULL),(16491385,4366951317,3,76,38,8061,1583209758,1583209758,NULL),(16549575,4037086600,6,600,30,1696,1639192067,1639192067,NULL),(16685979,8038130321,6,720,36,5253,1562805730,1562805730,NULL),(16822775,5015804080,7,1850,37,7072,1570499669,1570499669,NULL),(17055036,5658164116,5,370,37,6194,1587059482,1587059482,NULL),(17100853,5540755083,3,70,35,4187,1571424319,1571424319,NULL),(17302581,6542944085,2,37,37,6571,1572459125,1572459125,NULL),(17481785,5810778410,5,370,37,6771,1572299381,1572299381,NULL),(17502550,3663728459,3,78,39,9859,1575219275,1575219275,NULL),(17619896,6700142535,5,390,39,9167,1586417557,1586417557,NULL),(17655233,1651566623,5,320,32,2386,1587973769,1587973769,NULL),(17733963,1422062996,2,32,32,2544,1570182054,1570182054,NULL),(17930543,5271667256,2,33,33,3298,1585590383,1585590383,NULL),(18020119,4682340150,3,66,33,3340,1581711031,1581711031,NULL),(18067521,8148046279,3,66,33,3368,1567282350,1567282350,NULL),(18391571,5975873914,5,370,37,6352,1573075085,1573075085,NULL),(18502353,3733337540,6,760,38,7099,1576840440,1576840440,NULL),(18585209,1001761615,2,38,38,7958,1568139615,1568139615,NULL),(18886391,2588034038,2,39,39,9517,1578854559,1578854559,NULL),(19009740,4297541872,2,37,37,7063,1586877958,1586877958,NULL),(19224963,9154881782,5,360,36,5783,1563743705,1563743705,NULL),(19256748,8359235134,2,36,36,5451,1589131559,1589131559,NULL),(19281901,2999506640,3,76,38,7816,1589295630,1589295630,NULL),(19314871,4629495676,7,1900,38,8496,1573054212,1573054212,NULL),(19819721,2755157757,4,185,37,6222,1579748612,1579748612,NULL),(19880887,230361868,2,36,36,5520,1581638249,1581638249,NULL),(20022560,5682145215,4,150,30,1774,1582965184,1582965184,NULL),(20185801,8224738173,4,180,36,5352,1585039859,1585039859,NULL),(20220520,7025843861,5,250,25,689,1562405442,1562405442,NULL),(20357434,5423596187,8,3600,36,5512,1568465423,1568465423,NULL),(20473195,2317930570,5,380,38,7777,1584954970,1584954970,NULL),(20638093,2385876598,7,1900,38,7088,1648314373,1648314373,NULL),(20770465,6562315819,4,195,39,9883,1572864494,1572864494,NULL),(20865476,9376048775,2,9,9,36,1570095577,1570095577,NULL),(20919814,5302043090,2,39,39,9211,1584230237,1584230237,NULL),(20985513,8894020678,5,350,35,4875,1569040019,1569040019,NULL),(21044682,6425865870,4,190,38,7795,1573078232,1573078232,NULL),(21095554,5554162396,6,640,32,2665,1570848007,1570848007,NULL),(21097185,4764804678,2,35,35,4755,1564857853,1564857853,NULL),(21121267,3924338977,4,190,38,7146,1582246231,1582246231,NULL),(21394015,390289479,3,42,21,380,1576299192,1576299192,NULL),(21452599,8500410585,2,35,35,4347,1567048017,1567048017,NULL),(22095616,8120569383,7,1700,34,3532,1575891493,1575891493,NULL),(22314996,9691149785,5,370,37,6108,1644287207,1644287207,NULL),(22408191,9254318773,3,78,39,8708,1562316216,1562316216,NULL),(22590344,6542455549,2,36,36,5170,1588860625,1588860625,NULL),(22598139,5456632007,5,370,37,6438,1570223044,1570223044,NULL),(22647722,2068050069,4,175,35,4394,1580480422,1580480422,NULL),(22809188,9138150472,2,39,39,9675,1577634077,1577634077,NULL),(22960874,6669146329,5,320,32,2412,1590717489,1590717489,NULL),(23173586,8275255656,7,1900,38,7100,1565038982,1565038982,NULL),(23180316,5221334539,4,170,34,3834,1571072091,1571072091,NULL),(23210807,6699870724,2,35,35,4704,1578271508,1578271508,NULL),(23215716,7141658759,7,1900,38,8190,1583386979,1583386979,NULL),(23377448,4479810946,2,35,35,4202,1623548226,1623548226,NULL),(23532542,2522722115,3,66,33,3066,1575995180,1575995180,NULL),(23589023,9847160718,2,29,29,1558,1569010260,1569010260,NULL),(23672689,9161195155,5,380,38,7730,1563918560,1563918560,NULL),(23753988,9596027425,5,380,38,7696,1569215688,1569215688,NULL),(24153775,2311244360,2,36,36,5181,1569041931,1569041931,NULL),(24254116,9196773621,5,280,28,1330,1575686895,1575686895,NULL),(24302529,2486659574,4,130,26,943,1589649517,1589649517,NULL),(24374624,9554446991,4,155,31,2172,1564564812,1564564812,NULL),(24724834,221709839,3,72,36,5103,1572413337,1572413337,NULL),(24807189,2163077856,4,170,34,3638,1580160560,1580160560,NULL),(24927943,3121999595,4,180,36,4923,1587277546,1587277546,NULL),(25104407,1311144009,2,36,36,5769,1648432360,1648432360,NULL),(25141946,7437294560,7,1750,35,4819,1581588145,1581588145,NULL),(25343773,4019553641,7,1300,26,893,1624039828,1624039828,NULL),(25417632,5252326480,2,37,37,6334,1579700361,1579700361,NULL),(25452794,4057024371,3,62,31,2362,1561373795,1561373795,NULL),(25454032,4950863967,6,760,38,8296,1565452712,1565452712,NULL),(25511453,4556127119,5,380,38,7654,1629223375,1629223375,NULL),(25714957,7077451637,2,38,38,7685,1582544977,1582544977,NULL),(25716683,4228486570,2,37,37,6181,1572031893,1572031893,NULL),(25798958,6538302923,2,36,36,5143,1588408598,1588408598,NULL),(25922394,4476180710,3,72,36,5673,1567718366,1567718366,NULL),(26558514,7902563458,4,195,39,9805,1572428099,1572428099,NULL),(26564929,2109642186,2,31,31,2145,1564519006,1564519006,NULL),(26742450,5854809968,5,390,39,8521,1565700975,1565700975,NULL),(26758487,7115972878,6,620,31,2198,1585856262,1585856262,NULL),(26876467,8357243620,2,26,26,916,1588417988,1588417988,NULL),(27094050,8614147773,6,720,36,5465,1565947414,1565947414,NULL),(27158126,5458537664,3,68,34,3572,1581728791,1581728791,NULL),(27185403,6863848504,3,76,38,8425,1584928330,1584928330,NULL),(27236076,7831910352,3,64,32,2840,1571856336,1571856336,NULL),(27476341,2023577681,7,1600,32,2551,1585961513,1585961513,NULL),(27721872,7040773234,2,39,39,8788,1578257060,1578257060,NULL),(27879472,7120200464,5,370,37,5923,1568212000,1568212000,NULL),(27923020,9501184670,6,780,39,8744,1560887599,1560887599,NULL),(28138674,1767041350,2,34,34,4005,1647266061,1647266061,NULL),(28170399,8120409225,5,290,29,1631,1627005355,1627005355,NULL),(28315954,4961895490,3,76,38,8006,1588334454,1588334454,NULL),(28515157,3914701035,6,660,33,3380,1570718815,1570718815,NULL),(28627908,1945794587,4,170,34,3790,1567444479,1567444479,NULL),(28707179,1316434971,5,320,32,2516,1569205579,1569205579,NULL),(28714661,6035301032,2,39,39,8876,1577483939,1577483939,NULL),(28897827,2572324764,7,1900,38,8234,1578182717,1578182717,NULL),(29224911,5110470314,7,1650,33,3276,1562952726,1562952726,NULL),(29434556,2461509641,2,38,38,7432,1588681995,1588681995,NULL),(29551350,103782730,2,37,37,6836,1574606956,1574606956,NULL),(29615883,9319133367,2,39,39,8767,1573833581,1573833581,NULL),(29738034,7326212191,2,31,31,2194,1570397831,1570397831,NULL),(29750776,3474621283,2,36,36,5727,1576030326,1576030326,NULL),(29752788,5456632007,2,39,39,9630,1570223044,1570223044,NULL),(29880135,5738034972,4,145,29,1482,1561917421,1561917421,NULL),(30239604,14005829,3,56,28,1336,1565397164,1565397164,NULL),(30392499,2425816641,2,39,39,9781,1587033783,1587033783,NULL),(30513129,704243451,3,62,31,2270,1590192627,1590192627,NULL),(30695381,9650479986,3,54,27,1025,1575497115,1575497115,NULL),(30766040,9274473700,2,31,31,2071,1584887290,1584887290,NULL),(30874882,3417486755,2,36,36,4940,1581567199,1581567199,NULL),(31015843,6170639694,5,370,37,6284,1566212779,1566212779,NULL),(31608865,7755555345,3,56,28,1236,1584125607,1584125607,NULL),(31676913,9286759908,2,30,30,1736,1632603135,1632603135,NULL),(31884912,5589240055,3,64,32,2656,1579979540,1579979540,NULL),(32018356,5835575893,4,155,31,2001,1588343781,1588343781,NULL),(32026598,2923559572,3,48,24,646,1590608857,1590608857,NULL),(32049719,6946362046,6,580,29,1373,1573551672,1573551672,NULL),(32140114,4068950254,4,150,30,1854,1578955096,1578955096,NULL),(32154339,4576518295,6,720,36,4967,1572486977,1572486977,NULL),(32248449,3029193823,5,310,31,2351,1564000610,1564000610,NULL),(32403810,7095573116,3,72,36,5548,1566963287,1566963287,NULL),(32420278,2244101503,2,32,32,2554,1584260449,1584260449,NULL),(32492448,3663728459,5,280,28,1271,1575219275,1575219275,NULL),(32810369,2948389249,2,38,38,8397,1576884260,1576884260,NULL),(32963871,5749692120,2,25,25,746,1590270944,1590270944,NULL),(33018909,7719403878,3,60,30,1905,1582321296,1582321296,NULL),(33371656,9522151998,3,70,35,4597,1570370948,1570370948,NULL),(33596890,9021121795,2,37,37,6539,1591083288,1591083288,NULL),(33658399,8444420126,2,36,36,5547,1586992870,1586992870,NULL),(34329730,1227553935,4,145,29,1592,1576431999,1576431999,NULL),(34350980,716972742,6,780,39,9890,1575979875,1575979875,NULL),(34447067,3017404096,3,70,35,4298,1579173231,1579173231,NULL),(34631941,9563148374,7,1650,33,3230,1583822825,1583822825,NULL),(34764102,908071389,4,155,31,2011,1568845325,1568845325,NULL),(34959221,4793615997,3,72,36,5579,1589287788,1589287788,NULL),(35295616,4614790043,3,76,38,8440,1625721914,1625721914,NULL),(35343898,6708980447,6,520,26,905,1638271797,1638271797,NULL),(35507722,3856562442,2,37,37,6221,1563356636,1563356636,NULL),(35521481,7873010100,4,150,30,1750,1568084147,1568084147,NULL),(35824542,6548096816,5,260,26,950,1590814434,1590814434,NULL),(35871337,8302434571,2,35,35,4201,1646677888,1646677888,NULL),(35952332,5990170438,2,37,37,6143,1580947210,1580947210,NULL),(36038800,5213356759,5,390,39,9248,1588012831,1588012831,NULL),(36253239,5316366771,4,185,37,6418,1583199172,1583199172,NULL),(36346815,1125145184,3,74,37,7035,1628977296,1628977296,NULL),(36403924,7007868470,3,68,34,3819,1576100862,1576100862,NULL),(36470540,6529939152,3,60,30,1828,1579724622,1579724622,NULL),(36498365,6724943521,2,39,39,9872,1588041229,1588041229,NULL),(36565930,7922348306,2,39,39,8589,1565351242,1565351242,NULL),(36893875,7324826989,2,39,39,8800,1561673145,1561673145,NULL),(36928951,8709883036,2,39,39,9922,1648151939,1648151939,NULL),(37192312,6508412991,5,380,38,7456,1586620097,1586620097,NULL),(37257616,739499315,6,700,35,4404,1564783824,1564783824,NULL),(37357221,8446820840,4,185,37,6919,1577927129,1577927129,NULL),(37637758,587297302,3,74,37,6657,1584854974,1584854974,NULL),(37871295,7930927603,6,780,39,9099,1587625892,1587625892,NULL),(38368736,9435930277,2,24,24,581,1590962749,1590962749,NULL),(38649604,2644892013,4,190,38,7293,1640258512,1640258512,NULL),(38840271,1229613436,2,34,34,4085,1628847321,1628847321,NULL),(39087329,7043461221,2,32,32,2378,1583149145,1583149145,NULL),(39119704,1924442075,3,46,23,521,1590470521,1590470521,NULL),(39302018,3034070511,3,58,29,1387,1562519836,1562519836,NULL),(39346700,5589240055,2,39,39,8921,1579979540,1579979540,NULL),(39509054,436574551,2,33,33,3006,1576981686,1576981686,NULL),(39636434,2086808606,5,360,36,5007,1624784640,1624784640,NULL),(39842955,208816451,4,150,30,1841,1587290898,1587290898,NULL),(39868738,590404621,5,380,38,8316,1563462106,1563462106,NULL),(39907132,7292559034,2,12,12,67,1574695074,1574695074,NULL),(39965874,1671951818,6,720,36,5349,1577714720,1577714720,NULL),(39967575,4918849835,5,370,37,6230,1580306752,1580306752,NULL),(40223687,8595814446,2,35,35,4277,1567284586,1567284586,NULL),(40568484,4925664609,3,78,39,9806,1570503935,1570503935,NULL),(40712417,3652293996,2,38,38,7201,1585389055,1585389055,NULL),(40896663,7014041028,6,260,13,83,1585094172,1585094172,NULL),(41273633,7056801003,5,310,31,2229,1568319196,1568319196,NULL),(41303340,4212179271,2,39,39,8518,1562330424,1562330424,NULL),(41353139,7481183395,2,19,19,264,1588900669,1588900669,NULL),(41375747,7438092370,4,130,26,807,1573202980,1573202980,NULL),(41504196,1496356729,2,37,37,5999,1579018720,1579018720,NULL),(41555652,5892914470,4,195,39,9788,1573559115,1573559115,NULL),(41824761,3912546754,6,780,39,9976,1583591662,1583591662,NULL),(41987060,5563662359,3,76,38,8394,1584708500,1584708500,NULL),(42040929,3633928420,3,78,39,9277,1559831353,1559831353,NULL),(42105929,8209660754,5,360,36,5637,1587409402,1587409402,NULL),(42349601,1334656217,3,60,30,1964,1565396922,1565396922,NULL),(42409626,8472081928,3,74,37,5920,1584003157,1584003157,NULL),(42414912,1561046309,3,64,32,2475,1577560664,1577560664,NULL),(42573085,4601239456,5,390,39,9521,1574412134,1574412134,NULL),(42645721,1833769815,7,1900,38,7249,1561536381,1561536381,NULL),(42679812,1735377389,2,37,37,6309,1561770392,1561770392,NULL),(43013580,2621499860,4,185,37,6176,1627325761,1627325761,NULL),(43326671,3545704351,3,64,32,2541,1583326316,1583326316,NULL),(43621445,4322667860,4,195,39,8711,1569470317,1569470317,NULL),(43832830,5120864118,2,38,38,7568,1574295829,1574295829,NULL),(43875403,9590447611,2,31,31,2347,1631413710,1631413710,NULL),(43900418,1920330888,2,35,35,4460,1561507112,1561507112,NULL),(43946747,9578842769,2,37,37,6725,1586557423,1586557423,NULL),(44049538,1930949632,7,1650,33,3252,1566247656,1566247656,NULL),(44052805,7292510508,3,78,39,9128,1634068039,1634068039,NULL),(44164966,6384652731,7,1950,39,8834,1570038091,1570038091,NULL),(44363157,5590790501,5,350,35,4216,1583024622,1583024622,NULL),(44474244,2622551255,3,70,35,4126,1563140527,1563140527,NULL),(44900058,2235817817,4,195,39,9420,1570111184,1570111184,NULL),(44978277,3284380080,3,74,37,6669,1585388483,1585388483,NULL),(45323235,8381878459,8,1900,19,245,1584174859,1584174859,NULL),(45707936,6895706022,2,33,33,3160,1574222629,1574222629,NULL),(46164690,9203335141,3,66,33,3354,1587486726,1587486726,NULL),(46262353,7866339521,2,33,33,2926,1576151382,1576151382,NULL),(46326380,6585235907,3,74,37,6726,1578553554,1578553554,NULL),(46463927,3085264248,3,76,38,7717,1564753165,1564753165,NULL),(46525521,1981619424,5,220,22,428,1578765698,1578765698,NULL),(46803694,4380592707,2,37,37,6455,1568355683,1568355683,NULL),(46842666,4644043627,4,125,25,717,1580313374,1580313374,NULL),(46903994,2092666404,7,1800,36,5611,1590518680,1590518680,NULL),(47108396,1915110818,2,29,29,1477,1564051220,1564051220,NULL),(47170785,6887436405,6,780,39,8592,1564717194,1564717194,NULL),(47303375,2137740745,2,8,8,31,1626311535,1626311535,NULL),(47775867,705300737,3,76,38,7578,1582351123,1582351123,NULL),(48011410,1420866108,5,370,37,6915,1561337870,1561337870,NULL),(48769084,946106436,2,39,39,8717,1567237140,1567237140,NULL),(48777262,2308775514,2,39,39,9495,1578226303,1578226303,NULL),(49092068,1832813306,2,38,38,8050,1561228919,1561228919,NULL),(49329355,9590570948,3,76,38,7847,1581803498,1581803498,NULL),(49507927,1995327904,3,78,39,8807,1567775018,1567775018,NULL),(49533999,9227557019,5,310,31,2276,1585643946,1585643946,NULL),(49802067,7510048294,7,1950,39,9849,1586430943,1586430943,NULL),(49849850,2292061829,2,37,37,6197,1644947641,16449...\G -# Query 34: ID 0x06648FA73445FA41 +# Query 33: ID 0xBE6AF9E2FEDAB9D1 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3832 -# Exec time 0 6.62s 47.0us 342.7ms 1.7ms 6.5ms 118.0us -# Lock time 26 1.68s 0 342.4ms 439.6us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Count 0 1595 +# Exec time 0 8.77s 80.0us 181.7ms 5.5ms 29.9ms 212.0us +# Lock time 0 31.9ms 0 12.6ms 20.0us 2.0us 1.0us +# Rows sent 0 1.59k 1 1 1.00 1 1 +# Rows examined 0 1.59k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_sessions(user_id, session_id, created_at, updated_at, expired_at) VALUES (3623635046, '7f6d931e-647c-415a-82cb-ea2e534052f1', 1661666344, 1661666344, 1661752744)\G +SELECT ui.id, ui.user_id, ui.item_id, ui.item_type, ui.amount, ui.created_at, ui.updated_at, im.gained_exp + FROM user_items as ui + INNER JOIN item_masters as im ON ui.item_id = im.id + WHERE ui.item_type = 3 AND ui.id=100000004680 AND ui.user_id=100000000998\G -# Query 35: ID 0x2B37DDA192ADC0D5 +# Query 34: ID 0x55BF7704455C98AA # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1418 -# Exec time 0 6.42s 50.0us 136.8ms 4.5ms 11.7ms 131.0us -# Lock time 0 2.6ms 0 1.2ms 1.8us 1.0us 1.0us -# Rows sent 0 1.42k 1 1 1.00 1 1 -# Rows examined 0 1.42k 1 1 1.00 1 1 +# Count 1 3885 +# Exec time 0 8.41s 98.0us 184.5ms 2.2ms 10.8ms 178.0us +# Lock time 0 21.9ms 0 4.8ms 5.6us 1.0us 1.0us +# Rows sent 0 3.88k 1 1 1.00 1 1 +# Rows examined 4 112.67k 29 29 29.00 29 29 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM item_masters WHERE id=2\G +SELECT SUM(weight) FROM gacha_item_masters WHERE gacha_id='37'\G -# Query 36: ID 0xE3844E34483B662E +# Query 35: ID 0x517F86F6D70065B6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3722 -# Exec time 0 5.83s 55.0us 123.1ms 1.6ms 6.8ms 141.0us -# Lock time 0 28.0ms 0 11.1ms 7.5us 1.0us 1.0us +# Count 0 1 +# Exec time 0 8.27s 8.27s 8.27s 8.27s 8.27s 8.27s +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 3.72k 1 1 1.00 1 1 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE users SET isu_coin=69500 WHERE id=100000001334\G +LOAD DATA INFILE '/var/lib/mysql-files/5_user_presents_not_receive_data.tsv' REPLACE INTO TABLE user_presents FIELDS ESCAPED BY '|' IGNORE 1 LINES\G -# Query 37: ID 0xBE6AF9E2FEDAB9D1 +# Query 36: ID 0x06648FA73445FA41 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1349 -# Exec time 0 5.77s 81.0us 124.6ms 4.3ms 22.5ms 255.0us -# Lock time 0 8.9ms 0 2.8ms 6.6us 2.0us 1.0us -# Rows sent 0 1.35k 1 1 1.00 1 1 -# Rows examined 0 1.35k 1 1 1.00 1 1 +# Count 1 4119 +# Exec time 0 7.92s 46.0us 359.5ms 1.9ms 7.3ms 103.0us +# Lock time 24 1.61s 0 359.3ms 389.8us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT ui.id, ui.user_id, ui.item_id, ui.item_type, ui.amount, ui.created_at, ui.updated_at, im.gained_exp - FROM user_items as ui - INNER JOIN item_masters as im ON ui.item_id = im.id - WHERE ui.item_type = 3 AND ui.id=100000005454 AND ui.user_id=100000001137\G +INSERT INTO user_sessions(user_id, session_id, created_at, updated_at, expired_at) VALUES (3398747, '4463e17b-459d-4f71-90fe-a80945c2a5fa', 1661667282, 1661667282, 1661753682)\G -# Query 38: ID 0x6B2814054AF2B6B3 +# Query 37: ID 0x01FBEC3C6355A8D7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3737 -# Exec time 0 5.67s 84.0us 128.2ms 1.5ms 6.2ms 193.0us -# Lock time 1 49.0ms 0 13.7ms 13.1us 1.0us 1.0us -# Rows sent 1 11.21k 3 3 3.00 3 3 -# Rows examined 6 160.69k 43 43 43.00 43 43 +# Count 1 5214 +# Exec time 0 6.26s 40.0us 119.9ms 1.2ms 5.8ms 82.0us +# Lock time 0 27.8ms 0 3.5ms 5.3us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM gacha_masters WHERE start_at <= 1661666344 AND end_at >= 1661666344 ORDER BY display_order ASC\G +INSERT INTO user_cards(user_id, card_id, amount_per_sec, level, total_exp, created_at, updated_at) VALUES (100000001060, 2, 1, 1, 0, 1661667269, 1661667269)\G -# Query 39: ID 0x0BF61C5CE8BB8E5E +# Query 38: ID 0x34E11DDE0FBF5564 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 4254 -# Exec time 0 5.17s 40.0us 149.0ms 1.2ms 4.8ms 97.0us -# Lock time 1 60.9ms 0 32.6ms 14.3us 1.0us 1.0us +# Count 3 16812 +# Exec time 0 5.97s 5.0us 95.9ms 354.8us 1.4ms 20.0us +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_login_bonuses(user_id, login_bonus_id, last_reward_sequence, loop_count, created_at, updated_at) VALUES (100000001304, 4, 1, 1, 1661666341, 1661666341)\G +START TRANSACTION\G -# Query 40: ID 0xFB271981D7248330 +# Query 39: ID 0x6B2814054AF2B6B3 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3831 -# Exec time 0 5.00s 52.0us 179.9ms 1.3ms 5.4ms 131.0us -# Lock time 0 22.5ms 0 13.9ms 5.9us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 3.83k 1 1 1.00 1 1 +# Count 1 3917 +# Exec time 0 5.69s 84.0us 104.7ms 1.5ms 6.7ms 146.0us +# Lock time 0 27.4ms 0 5.5ms 7.0us 1.0us 1.0us +# Rows sent 1 11.75k 3 3 3.00 3 3 +# Rows examined 6 168.43k 43 43 43.00 43 43 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE users SET updated_at=1661666339, last_activated_at=1661666339 WHERE id=7116221786\G +SELECT * FROM gacha_masters WHERE start_at <= 1661667292 AND end_at >= 1661667292 ORDER BY display_order ASC\G -# Query 41: ID 0x8C5B05EB6CB46F22 +# Query 40: ID 0xD5F72842478BEEBA # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3831 -# Exec time 0 4.55s 40.0us 166.4ms 1.2ms 5.4ms 109.0us -# Lock time 0 8.9ms 0 1.6ms 2.3us 1.0us 1.0us -# Rows sent 0 3.83k 1 1 1.00 1 1 -# Rows examined 0 3.83k 1 1 1.00 1 1 +# Count 1 4115 +# Exec time 0 5.61s 56.0us 171.6ms 1.4ms 5.9ms 115.0us +# Lock time 0 13.2ms 0 3.9ms 3.2us 1.0us 1.0us +# Rows sent 1 12.35k 3 3 3.00 3 3 +# Rows examined 1 16.46k 4 4 4.00 4 4 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT isu_coin FROM users WHERE id=5110556065\G +SELECT * FROM login_bonus_masters WHERE start_at <= 1661667290 AND end_at >= 1661667290\G -# Query 42: ID 0x34E11DDE0FBF5564 +# Query 41: ID 0xFB271981D7248330 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 3 15404 -# Exec time 0 4.28s 6.0us 57.1ms 277.8us 1.0ms 21.0us -# Lock time 0 0 0 0 0 0 0 +# Count 1 4115 +# Exec time 0 5.39s 53.0us 122.4ms 1.3ms 6.2ms 110.0us +# Lock time 0 30.3ms 0 11.6ms 7.4us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 4.12k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -START TRANSACTION\G +UPDATE users SET updated_at=1661667278, last_activated_at=1661667278 WHERE id=2952676472\G -# Query 43: ID 0xD5F72842478BEEBA +# Query 42: ID 0x7CA1FDC8C5362D5B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 3831 -# Exec time 0 4.02s 56.0us 124.4ms 1.0ms 4.6ms 140.0us -# Lock time 0 24.1ms 0 9.5ms 6.3us 1.0us 1.0us -# Rows sent 1 11.49k 3 3 3.00 3 3 -# Rows examined 1 15.32k 4 4 4.00 4 4 +# Count 1 3885 +# Exec time 0 5.18s 54.0us 96.5ms 1.3ms 6.2ms 115.0us +# Lock time 0 21.6ms 0 6.5ms 5.6us 1.0us 1.0us +# Rows sent 0 3.88k 1 1 1.00 1 1 +# Rows examined 0 3.88k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM login_bonus_masters WHERE start_at <= 1661666342 AND end_at >= 1661666342\G +SELECT * FROM gacha_masters WHERE id='37' AND start_at <= 1661667285 AND end_at >= 1661667285\G -# Query 44: ID 0x58309A1A758E1BB6 +# Query 43: ID 0xE3844E34483B662E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2394 -# Exec time 0 3.89s 62.0us 144.8ms 1.6ms 6.9ms 206.0us -# Lock time 0 23.9ms 0 8.1ms 10.0us 1.0us 1.0us +# Count 1 3885 +# Exec time 0 5.08s 58.0us 246.6ms 1.3ms 6.1ms 106.0us +# Lock time 1 35.7ms 0 17.0ms 9.2us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 2.39k 1 1 1.00 1 1 +# Rows examined 0 3.88k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE users SET isu_coin=9975125825, last_getreward_at=1661666342 WHERE id=8702260049\G +UPDATE users SET isu_coin=861449878 WHERE id=9817787847\G -# Query 45: ID 0x85341F0A4C9D5CB2 +# Query 44: ID 0x8C5B05EB6CB46F22 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1418 -# Exec time 0 2.92s 41.0us 150.6ms 2.1ms 9.3ms 91.0us -# Lock time 0 19.5ms 0 8.7ms 13.7us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Count 1 4115 +# Exec time 0 4.69s 38.0us 149.6ms 1.1ms 4.7ms 90.0us +# Lock time 0 23.2ms 0 8.5ms 5.6us 1.0us 1.0us +# Rows sent 0 4.12k 1 1 1.00 1 1 +# Rows examined 0 4.12k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO users(last_activated_at, registered_at, last_getreward_at, created_at, updated_at) VALUES(1661666342, 1661666342, 1661666342, 1661666342, 1661666342)\G +SELECT isu_coin FROM users WHERE id=5352519961\G -# Query 46: ID 0x2123230C14227939 +# Query 45: ID 0xAAC6B00145710C91 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1347 -# Exec time 0 2.78s 101.0us 74.8ms 2.1ms 10.8ms 230.0us -# Lock time 3 196.5ms 0 44.6ms 145.9us 1.0us 1.0us +# Count 1 3456 +# Exec time 0 4.57s 56.0us 106.8ms 1.3ms 6.5ms 108.0us +# Lock time 0 22.6ms 0 3.1ms 6.5us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 2.69k 2 2 2.00 2 2 +# Rows examined 0 3.46k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_decks SET updated_at=1661666317, deleted_at=1661666317 WHERE user_id=100000000704 AND deleted_at IS NULL\G +UPDATE users SET isu_coin=isu_coin+46000 WHERE id = 9055049910\G -# Query 47: ID 0x1ECF31A65E32E96B +# Query 46: ID 0x2123230C14227939 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2414 -# Exec time 0 2.78s 66.0us 115.4ms 1.2ms 5.0ms 135.0us -# Lock time 0 6.4ms 0 1.0ms 2.7us 1.0us 1.0us +# Count 0 1618 +# Exec time 0 4.50s 103.0us 126.0ms 2.8ms 14.2ms 194.0us +# Lock time 5 343.0ms 0 108.0ms 212.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 26 0 2 0 0 0 +# Rows examined 0 3.24k 2 2 2.00 2 2 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_sessions SET deleted_at=1661666341 WHERE user_id=6853109649 AND deleted_at IS NULL\G +UPDATE user_decks SET updated_at=1661667282, deleted_at=1661667282 WHERE user_id=100000001382 AND deleted_at IS NULL\G -# Query 48: ID 0x0001A24863DBA0F1 +# Query 47: ID 0xDF7D7112E66C930F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 16 -# Exec time 0 2.71s 50.7ms 284.1ms 169.1ms 284.1ms 173.5ms -# Lock time 0 0 0 0 0 0 0 +# Count 1 3356 +# Exec time 0 4.34s 42.0us 115.6ms 1.3ms 6.8ms 82.0us +# Lock time 0 24.6ms 0 15.1ms 7.3us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_present_all_received_history` VALUES (1148363,538842799,21,1635692400,1635692400,1635692400,NULL),(1860518,8448218013,3,1590937200,1590937200,1590937200,NULL),(3193645,2407481332,13,1617202800,1617202800,1617202800,NULL),(3472840,8230919118,27,1651330800,1651330800,1651330800,NULL),(3877493,383198957,24,1643641200,1643641200,1643641200,NULL),(3919685,5101905405,8,1604156400,1604156400,1604156400,NULL),(4070548,7437651261,27,1651330800,1651330800,1651330800,NULL),(4124751,4278059749,16,1622473200,1622473200,1622473200,NULL),(4507163,3423956366,20,1633014000,1633014000,1633014000,NULL),(4607359,8958533070,6,1598886000,1598886000,1598886000,NULL),(5092659,1009975321,14,1619794800,1619794800,1619794800,NULL),(5175145,9917821664,10,1609426800,1609426800,1609426800,NULL),(5224941,8378973152,2,1588258800,1588258800,1588258800,NULL),(5960925,4156597343,26,1648738800,1648738800,1648738800,NULL),(6341003,3700937960,9,1606748400,1606748400,1606748400,NULL),(6794793,9246249222,4,1593529200,1593529200,1593529200,NULL),(7165483,6465067601,23,1640962800,1640962800,1640962800,NULL),(7392393,8233263716,18,1627743600,1627743600,1627743600,NULL),(7610220,2020890204,12,1614524400,1614524400,1614524400,NULL),(7628876,1073233116,21,1635692400,1635692400,1635692400,NULL),(7765643,8709299260,14,1619794800,1619794800,1619794800,NULL),(7984671,8682151099,1,1588258800,1588258800,1588258800,NULL),(8243090,616130165,8,1604156400,1604156400,1604156400,NULL),(8303232,8396285715,20,1633014000,1633014000,1633014000,NULL),(9228108,1686024127,11,1612105200,1612105200,1612105200,NULL),(9683521,1420866108,28,1667228400,1667228400,1667228400,NULL),(10027296,9554222469,7,1601478000,1601478000,1601478000,NULL),(10282232,9937188599,8,1604156400,1604156400,1604156400,NULL),(10898642,31527932,1,1588258800,1588258800,1588258800,NULL),(11132596,2025685897,24,1643641200,1643641200,1643641200,NULL),(11201048,5754514020,12,1614524400,1614524400,1614524400,NULL),(11256008,3897113259,19,1630422000,1630422000,1630422000,NULL),(11545158,6858877744,26,1648738800,1648738800,1648738800,NULL),(11595418,5477866325,10,1609426800,1609426800,1609426800,NULL),(12065085,2835643431,11,1612105200,1612105200,1612105200,NULL),(12641880,9188489387,3,1590937200,1590937200,1590937200,NULL),(13491233,7255341746,5,1596207600,1596207600,1596207600,NULL),(13875019,3600452358,9,1606748400,1606748400,1606748400,NULL),(13967866,2032484699,13,1617202800,1617202800,1617202800,NULL),(13993734,9062555820,10,1609426800,1609426800,1609426800,NULL),(14292226,932399426,7,1601478000,1601478000,1601478000,NULL),(14972718,5347036009,12,1614524400,1614524400,1614524400,NULL),(15061403,9403450036,20,1633014000,1633014000,1633014000,NULL),(15100992,2021708122,20,1633014000,1633014000,1633014000,NULL),(16021685,1555740936,14,1619794800,1619794800,1619794800,NULL),(16937143,6382869439,5,1596207600,1596207600,1596207600,NULL),(16991602,8308630008,25,1646060400,1646060400,1646060400,NULL),(17331288,1827695529,13,1617202800,1617202800,1617202800,NULL),(17931764,5313313287,12,1614524400,1614524400,1614524400,NULL),(18475159,4710164057,12,1614524400,1614524400,1614524400,NULL),(19252252,9215439706,2,1588258800,1588258800,1588258800,NULL),(19780029,1224073105,9,1606748400,1606748400,1606748400,NULL),(20647099,4725233480,25,1646060400,1646060400,1646060400,NULL),(21265652,7514047461,12,1614524400,1614524400,1614524400,NULL),(21353593,8756058052,1,1588258800,1588258800,1588258800,1588258800),(21353594,8756058052,1,1588258800,1588258800,1588258800,NULL),(22252817,8125078044,19,1630422000,1630422000,1630422000,NULL),(22854212,4252510654,4,1593529200,1593529200,1593529200,NULL),(22925936,2673994484,8,1604156400,1604156400,1604156400,NULL),(23059355,1023222021,13,1617202800,1617202800,1617202800,NULL),(23281424,1742391054,8,1604156400,1604156400,1604156400,NULL),(23674747,3235639730,14,1619794800,1619794800,1619794800,NULL),(23702956,6389278073,15,1619794800,1619794800,1619794800,NULL),(23703453,5347491899,4,1593529200,1593529200,1593529200,NULL),(24179831,1388286468,23,1640962800,1640962800,1640962800,NULL),(24650577,2655275313,28,1667228400,1667228400,1667228400,NULL),(24812188,8495809205,21,1635692400,1635692400,1635692400,NULL),(24987592,3732062731,28,1667228400,1667228400,1667228400,NULL),(25373357,8727881343,24,1643641200,1643641200,1643641200,NULL),(27140590,982548262,15,1619794800,1619794800,1619794800,NULL),(27489820,3753482693,10,1609426800,1609426800,1609426800,NULL),(28092077,306095136,20,1633014000,1633014000,1633014000,NULL),(28116991,5421842119,12,1614524400,1614524400,1614524400,NULL),(29243688,3542158692,7,1601478000,1601478000,1601478000,NULL),(29270179,5294065454,6,1598886000,1598886000,1598886000,NULL),(29608664,1263245469,27,1651330800,1651330800,1651330800,NULL),(29865849,1383961563,12,1614524400,1614524400,1614524400,NULL),(30465400,5656595121,18,1627743600,1627743600,1627743600,NULL),(30561218,9957617223,5,1596207600,1596207600,1596207600,NULL),(30584185,482156200,18,1627743600,1627743600,1627743600,NULL),(31243089,8382850213,22,1638284400,1638284400,1638284400,NULL),(31250271,150118609,7,1601478000,1601478000,1601478000,NULL),(31450301,923539748,9,1606748400,1606748400,1606748400,NULL),(31775688,8412000934,27,1651330800,1651330800,1651330800,NULL),(31776580,460427249,18,1627743600,1627743600,1627743600,NULL),(31863705,5696439279,7,1601478000,1601478000,1601478000,NULL),(32337222,6272919905,1,1588258800,1588258800,1588258800,NULL),(33036836,151441646,26,1648738800,1648738800,1648738800,NULL),(33178568,3606772825,8,1604156400,1604156400,1604156400,NULL),(33543581,1258081508,12,1614524400,1614524400,1614524400,NULL),(35145981,548873028,6,1598886000,1598886000,1598886000,NULL),(35177439,2310115322,18,1627743600,1627743600,1627743600,NULL),(35383193,5318107777,23,1640962800,1640962800,1640962800,NULL),(36024959,1912847775,4,1593529200,1593529200,1593529200,NULL),(36477843,6726818727,10,1609426800,1609426800,1609426800,NULL),(37280503,8355441835,21,1635692400,1635692400,1635692400,NULL),(37431846,2131784314,10,1609426800,1609426800,1609426800,NULL),(37914674,195265593,14,1619794800,1619794800,1619794800,NULL),(38019001,8037293563,8,1604156400,1604156400,1604156400,NULL),(38204560,4057024371,3,1590937200,1590937200,1590937200,NULL),(38216977,4572656859,26,1648738800,1648738800,1648738800,NULL),(38253408,6481559857,6,1598886000,1598886000,1598886000,NULL),(38435009,8411387339,16,1622473200,1622473200,1622473200,NULL),(38491198,2374950622,7,1601478000,1601478000,1601478000,NULL),(39146246,7290033337,12,1614524400,1614524400,1614524400,NULL),(39264076,5735551470,4,1593529200,1593529200,1593529200,NULL),(39396862,4658925441,6,1598886000,1598886000,1598886000,NULL),(39639428,2636836710,14,1619794800,1619794800,1619794800,NULL),(39727034,8962444991,20,1633014000,1633014000,1633014000,NULL),(40105914,3308207575,22,1638284400,1638284400,1638284400,NULL),(41750212,8399080111,16,1622473200,1622473200,1622473200,NULL),(42378012,4081021366,18,1627743600,1627743600,1627743600,NULL),(42799326,5205386988,12,1614524400,1614524400,1614524400,NULL),(43059508,3705182330,14,1619794800,1619794800,1619794800,NULL),(43202686,8065460566,14,1619794800,1619794800,1619794800,NULL),(43614964,6559875896,5,1596207600,1596207600,1596207600,NULL),(44262960,3781745917,8,1604156400,1604156400,1604156400,NULL),(44318599,7772885082,18,1627743600,1627743600,1627743600,NULL),(44598945,8623346234,13,1617202800,1617202800,1617202800,NULL),(44680303,2739179113,25,1646060400,1646060400,1646060400,NULL),(45103846,9400744626,7,1601478000,1601478000,1601478000,NULL),(45349632,842041515,23,1640962800,1640962800,1640962800,NULL),(45933089,4372573673,20,1633014000,1633014000,1633014000,NULL),(46101878,659919247,9,1606748400,1606748400,1606748400,NULL),(46488076,1904375014,10,1609426800,1609426800,1609426800,NULL),(47231657,1163905592,14,1619794800,1619794800,1619794800,NULL),(47402695,8008873858,15,1619794800,1619794800,1619794800,NULL),(47633371,7116650312,5,1596207600,1596207600,1596207600,NULL),(47770934,9475650229,6,1598886000,1598886000,1598886000,NULL),(47883895,1066980289,23,1640962800,1640962800,1640962800,NULL),(48197835,6772469456,26,1648738800,1648738800,1648738800,NULL),(48908898,2086808606,26,1648738800,1648738800,1648738800,NULL),(49009393,786784355,25,1646060400,1646060400,1646060400,NULL),(49373287,1318844492,21,1635692400,1635692400,1635692400,NULL),(49678303,3558652629,11,1612105200,1612105200,1612105200,NULL),(49722314,103782730,17,1625065200,1625065200,1625065200,NULL),(51583725,2219327293,25,1646060400,1646060400,1646060400,NULL),(51831146,8823347972,7,1601478000,1601478000,1601478000,NULL),(52212409,6323107634,22,1638284400,1638284400,1638284400,NULL),(52588897,7993165577,2,1588258800,1588258800,1588258800,NULL),(52920420,4431676394,17,1625065200,1625065200,1625065200,NULL),(53102905,683169881,14,1619794800,1619794800,1619794800,NULL),(53770367,7481700759,3,1590937200,1590937200,1590937200,NULL),(54081561,3317494502,8,1604156400,1604156400,1604156400,NULL),(54151525,9227557019,8,1604156400,1604156400,1604156400,NULL),(55938343,6484232319,22,1638284400,1638284400,1638284400,NULL),(55938553,2056244935,22,1638284400,1638284400,1638284400,NULL),(57011061,5656727244,18,1627743600,1627743600,1627743600,NULL),(57675997,7214347085,23,1640962800,1640962800,1640962800,NULL),(57829820,9375099467,27,1651330800,1651330800,1651330800,NULL),(58655438,4061457002,23,1640962800,1640962800,1640962800,NULL),(58796348,3360751520,8,1604156400,1604156400,1604156400,NULL),(59165607,8964403558,10,1609426800,1609426800,1609426800,NULL),(59584462,5868024610,3,1590937200,1590937200,1590937200,NULL),(60493201,2087122592,2,1588258800,1588258800,1588258800,NULL),(61508034,79537068,1,1588258800,1588258800,1588258800,NULL),(61863628,7085147501,14,1619794800,1619794800,1619794800,NULL),(61982969,3992424682,8,1604156400,1604156400,1604156400,NULL),(61991610,2097150135,25,1646060400,1646060400,1646060400,NULL),(62267662,8722832545,9,1606748400,1606748400,1606748400,NULL),(63542971,8945770111,12,1614524400,1614524400,1614524400,NULL),(63892347,2969976665,13,1617202800,1617202800,1617202800,NULL),(64108184,2974090373,9,1606748400,1606748400,1606748400,NULL),(64227155,3170944281,21,1635692400,1635692400,1635692400,NULL),(64353525,6470524950,22,1638284400,1638284400,1638284400,NULL),(64456742,6153856322,8,1604156400,1604156400,1604156400,NULL),(64467334,9486669118,16,1622473200,1622473200,1622473200,NULL),(64840590,1655099222,8,1604156400,1604156400,1604156400,NULL),(64874069,7036005202,17,1625065200,1625065200,1625065200,NULL),(65392467,7079870938,2,1588258800,1588258800,1588258800,NULL),(66534290,6618695157,1,1588258800,1588258800,1588258800,NULL),(66914571,2574352454,14,1619794800,1619794800,1619794800,NULL),(67061968,8403495964,23,1640962800,1640962800,1640962800,NULL),(67103072,1601367982,19,1630422000,1630422000,1630422000,NULL),(67748260,7000375365,25,1646060400,1646060400,1646060400,NULL),(67769364,5860922629,22,1638284400,1638284400,1638284400,NULL),(69001732,9503691558,10,1609426800,1609426800,1609426800,NULL),(69122900,8545108067,7,1601478000,1601478000,1601478000,NULL),(70167532,9475153512,19,1630422000,1630422000,1630422000,NULL),(70547545,3707919768,8,1604156400,1604156400,1604156400,NULL),(70909265,8966253945,14,1619794800,1619794800,1619794800,NULL),(71660461,3266294770,4,1593529200,1593529200,1593529200,NULL),(71858302,1726326223,24,1643641200,1643641200,1643641200,NULL),(72355697,7204541771,28,1667228400,1667228400,1667228400,NULL),(72373441,5175950813,15,1619794800,1619794800,1619794800,NULL),(74000004,5689498526,11,1612105200,1612105200,1612105200,NULL),(74393725,1043497603,5,1596207600,1596207600,1596207600,NULL),(75593177,354000909,21,1635692400,1635692400,1635692400,NULL),(75814798,1296561757,17,1625065200,1625065200,1625065200,NULL),(75924076,4923752137,17,1625065200,1625065200,1625065200,NULL),(76256012,136312822,4,1593529200,1593529200,1593529200,NULL),(76953658,5097284905,9,1606748400,1606748400,1606748400,NULL),(76980845,6486364049,7,1601478000,1601478000,1601478000,NULL),(77179376,923233739,5,1596207600,1596207600,1596207600,NULL),(77635337,2373865838,18,1627743600,1627743600,1627743600,NULL),(77674631,9871536807,8,1604156400,1604156400,1604156400,NULL),(78188549,7338799984,11,1612105200,1612105200,1612105200,NULL),(78279978,1865835434,10,1609426800,1609426800,1609426800,NULL),(78403888,995028284,17,1625065200,1625065200,1625065200,NULL),(78625364,8840619962,15,1619794800,1619794800,1619794800,NULL),(79052580,5148872553,18,1627743600,1627743600,1627743600,NULL),(79170560,1686382592,14,1619794800,1619794800,1619794800,NULL),(79384885,9127828518,17,1625065200,1625065200,1625065200,NULL),(79716882,6006308617,21,1635692400,1635692400,1635692400,NULL),(79999828,60998754,18,1627743600,1627743600,1627743600,NULL),(80109626,3085264248,18,1627743600,1627743600,1627743600,NULL),(80192234,2099246939,2,1588258800,1588258800,1588258800,NULL),(80662604,7487499083,26,1648738800,1648738800,1648738800,NULL),(81665123,5607930648,20,1633014000,1633014000,1633014000,NULL),(81691248,71805998,9,1606748400,1606748400,1606748400,NULL),(82606824,8582251635,14,1619794800,1619794800,1619794800,NULL),(83244198,5763777023,28,1667228400,1667228400,1667228400,NULL),(84229920,866733915,8,1604156400,1604156400,1604156400,NULL),(84296583,4130461099,6,1598886000,1598886000,1598886000,NULL),(85283884,6626919828,18,1627743600,1627743600,1627743600,NULL),(85625701,3293325375,19,1630422000,1630422000,1630422000,NULL),(85806989,9449366756,1,1588258800,1588258800,1588258800,NULL),(85873748,6549261218,12,1614524400,1614524400,1614524400,NULL),(85906165,148385704,21,1635692400,1635692400,1635692400,NULL),(86667667,1196058747,15,1619794800,1619794800,1619794800,NULL),(86888556,7300619134,12,1614524400,1614524400,1614524400,NULL),(87681586,9718360427,8,1604156400,1604156400,1604156400,NULL),(87867586,6808006980,7,1601478000,1601478000,1601478000,NULL),(88027017,9716268687,21,1635692400,1635692400,1635692400,NULL),(88047455,6049279452,27,1651330800,1651330800,1651330800,NULL),(89083032,3204292224,7,1601478000,1601478000,1601478000,NULL),(89123428,9996060538,13,1617202800,1617202800,1617202800,NULL),(90265683,303142510,14,1619794800,1619794800,1619794800,NULL),(91068637,4036854123,7,1601478000,1601478000,1601478000,NULL),(91177132,4682480962,28,1667228400,1667228400,1667228400,NULL),(91723054,4336319019,4,1593529200,1593529200,1593529200,NULL),(92140992,7451597298,24,1643641200,1643641200,1643641200,NULL),(92828110,7765165277,27,1651330800,1651330800,1651330800,NULL),(93843394,9763453890,23,1640962800,1640962800,1640962800,NULL),(93987155,8651137779,18,1627743600,1627743600,1627743600,NULL),(94014767,6602109521,21,1635692400,1635692400,1635692400,NULL),(94637860,3293325375,11,1612105200,1612105200,1612105200,NULL),(94740799,8455594198,3,1590937200,1590937200,1590937200,NULL),(95610735,9898934142,9,1606748400,1606748400,1606748400,NULL),(95646824,7756652309,1,1588258800,1588258800,1588258800,NULL),(96747671,9904038980,8,1604156400,1604156400,1604156400,NULL),(97332315,972129615,9,1606748400,1606748400,1606748400,NULL),(97410542,3612737044,21,1635692400,1635692400,1635692400,NULL),(98884151,2110975333,5,1596207600,1596207600,1596207600,NULL),(98888241,8739788079,6,1598886000,1598886000,1598886000,NULL),(99100322,8676639368,12,1614524400,1614524400,1614524400,NULL),(100446303,8912784645,20,1633014000,1633014000,1633014000,NULL),(100520405,5658889995,13,1617202800,1617202800,1617202800,NULL),(100817231,1814096909,21,1635692400,1635692400,1635692400,NULL),(101065415,4665130860,3,1590937200,1590937200,1590937200,NULL),(101190641,531858931,10,1609426800,1609426800,1609426800,NULL),(101213550,5365434322,18,1627743600,1627743600,1627743600,NULL),(101492645,57954983,7,1601478000,1601478000,1601478000,NULL),(101677156,5590559640,6,1598886000,1598886000,1598886000,NULL),(102068992,7872528690,15,1619794800,1619794800,1619794800,NULL),(102867716,2944677568,10,1609426800,1609426800,1609426800,NULL),(103097777,24381866,17,1625065200,1625065200,1625065200,NULL),(103458650,8683481184,8,1604156400,1604156400,1604156400,NULL),(103817145,8396285715,6,1598886000,1598886000,1598886000,NULL),(104625400,3113682626,16,1622473200,1622473200,1622473200,NULL),(104740886,4512216592,28,1667228400,1667228400,1667228400,NULL),(104945022,655823203,18,1627743600,1627743600,1627743600,NULL),(105084464,9695764447,25,1646060400,1646060400,1646060400,NULL),(105090901,8692418017,5,1596207600,1596207600,1596207600,NULL),(106256720,2772018849,16,1622473200,1622473200,1622473200,NULL),(106570992,2036268204,7,1601478000,1601478000,1601478000,NULL),(107582579,1492186257,16,1622473200,1622473200,1622473200,NULL),(108427500,8399080111,4,1593529200,1593529200,1593529200,NULL),(108432906,5388894301,24,1643641200,1643641200,1643641200,NULL),(108690892,8884508453,10,1609426800,1609426800,1609426800,NULL),(108924115,2822610184,13,1617202800,1617202800,1617202800,NULL),(109356051,3423134299,14,1619794800,1619794800,1619794800,NULL),(110031912,8702334471,7,1601478000,1601478000,1601478000,NULL),(110291427,9444929888,18,1627743600,1627743600,1627743600,NULL),(110673046,437408266,1,1588258800,1588258800,1588258800,NULL),(112346956,1239721456,12,1614524400,1614524400,1614524400,NULL),(112617435,4398120550,4,1593529200,1593529200,1593529200,NULL),(112865181,1339404594,13,1617202800,1617202800,1617202800,NULL),(113127662,128187075,28,1667228400,1667228400,1667228400,NULL),(113426813,4391499833,8,1604156400,1604156400,1604156400,NULL),(113751227,1296900797,6,1598886000,1598886000,1598886000,NULL),(114484967,7934361733,28,1667228400,1667228400,1667228400,NULL),(115025735,2708762632,12,1614524400,1614524400,1614524400,NULL),(115374083,8768632954,10,1609426800,1609426800,1609426800,NULL),(115828117,3846596759,12,1614524400,1614524400,1614524400,NULL),(116460615,6235154237,6,1598886000,1598886000,1598886000,NULL),(116862745,9364805836,4,1593529200,1593529200,1593529200,NULL),(118049189,4124216667,1,1588258800,1588258800,1588258800,1588258800),(118049190,4124216667,1,1588258800,1588258800,1588258800,NULL),(118054390,3118739921,15,1619794800,1619794800,1619794800,NULL),(118310136,7904520664,1,1588258800,1588258800,1588258800,NULL),(119487420,2379771359,17,1625065200,1625065200,1625065200,NULL),(119601136,5438986283,12,1614524400,1614524400,1614524400,NULL),(120010683,5021649907,2,1588258800,1588258800,1588258800,NULL),(120320134,1169344596,7,1601478000,1601478000,1601478000,NULL),(120812574,9634768573,28,1667228400,1667228400,1667228400,NULL),(121113714,3719784190,22,1638284400,1638284400,1638284400,NULL),(121202024,9038104745,11,1612105200,1612105200,1612105200,NULL),(121979932,3415269799,9,1606748400,1606748400,1606748400,NULL),(122401533,3068228479,12,1614524400,1614524400,1614524400,NULL),(122717626,4442944011,5,1596207600,1596207600,1596207600,NULL),(122805777,6520371328,3,1590937200,1590937200,1590937200,NULL),(122934089,4394675938,3,1590937200,1590937200,1590937200,NULL),(123225813,1245727432,13,1617202800,1617202800,1617202800,NULL),(123280942,3336222063,4,1593529200,1593529200,1593529200,NULL),(123356487,5048074269,16,1622473200,1622473200,1622473200,NULL),(123614971,4174378558,23,1640962800,1640962800,1640962800,NULL),(123828274,1088326190,5,1596207600,1596207600,1596207600,NULL),(123848756,7434228787,13,1617202800,1617202800,1617202800,NULL),(124136231,5101905405,18,1627743600,1627743600,1627743600,NULL),(124475055,9434384219,14,1619794800,1619794800,1619794800,NULL),(124594774,3218034085,17,1625065200,1625065200,1625065200,NULL),(125166097,4868272183,9,1606748400,1606748400,1606748400,NULL),(125803902,9299087413,23,1640962800,1640962800,1640962800,NULL),(126117120,7511955848,12,1614524400,1614524400,1614524400,NULL),(128247577,4870935639,12,1614524400,1614524400,1614524400,NULL),(128655047,3353376701,21,1635692400,1635692400,1635692400,NULL),(129095710,8610396172,6,1598886000,1598886000,1598886000,NULL),(129896369,5154250661,2,1588258800,1588258800,1588258800,NULL),(129920250,250287778,3,1590937200,1590937200,1590937200,NULL),(131464072,4478033645,9,1606748400,1606748400,1606748400,NULL),(131952049,7810287260,4,1593529200,1593529200,1593529200,NULL),(132098749,8586772018,8,1604156400,1604156400,1604156400,NULL),(132461446,3748672972,13,1617202800,1617202800,1617202800,NULL),(132468987,1601367982,4,1593529200,1593529200,1593529200,NULL),(132553950,7575746380,10,1609426800,1609426800,...\G +INSERT INTO user_decks(user_id, user_card_id_1, user_card_id_2, user_card_id_3, created_at, updated_at) VALUES (100000000671, 100000006754, 100000006758, 100000006762, 1661667256, 1661667256)\G -# Query 49: ID 0xDF7D7112E66C930F +# Query 48: ID 0x58309A1A758E1BB6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2765 -# Exec time 0 2.67s 44.0us 113.0ms 966.8us 4.3ms 90.0us -# Lock time 0 7.7ms 0 2.4ms 2.8us 1.0us 1.0us +# Count 0 2332 +# Exec time 0 3.96s 62.0us 176.4ms 1.7ms 8.1ms 137.0us +# Lock time 1 35.1ms 0 8.8ms 15.1us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 2.33k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_decks(user_id, user_card_id_1, user_card_id_2, user_card_id_3, created_at, updated_at) VALUES (100000001130, 100000012664, 100000012665, 100000012671, 1661666335, 1661666335)\G +UPDATE users SET isu_coin=862499451, last_getreward_at=1661667292 WHERE id=2183190534\G -# Query 50: ID 0x43A3321C1A2C0D43 +# Query 49: ID 0x2B37DDA192ADC0D5 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2413 -# Exec time 0 2.63s 56.0us 60.0ms 1.1ms 4.8ms 130.0us -# Lock time 0 7.8ms 0 1.8ms 3.2us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 2.41k 1 1 1.00 1 1 +# Count 0 1738 +# Exec time 0 3.81s 49.0us 176.1ms 2.2ms 8.0ms 101.0us +# Lock time 0 4.7ms 0 1.4ms 2.7us 1.0us 1.0us +# Rows sent 0 1.74k 1 1 1.00 1 1 +# Rows examined 0 1.74k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_login_bonuses SET last_reward_sequence=3, loop_count=13, updated_at=1661666341 WHERE id=90883669951\G +SELECT * FROM item_masters WHERE id=2\G -# Query 51: ID 0xC4768A6E9C987261 +# Query 50: ID 0xC4768A6E9C987261 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1360 -# Exec time 0 2.12s 77.0us 136.3ms 1.6ms 6.1ms 179.0us -# Lock time 0 4.8ms 0 1.8ms 3.5us 1.0us 1.0us -# Rows sent 1 6.25k 1 12 4.00 6 5 -# Rows examined 0 6.25k 1 12 4.00 6 5 +# Count 0 1631 +# Exec time 0 3.56s 69.0us 144.9ms 2.2ms 10.2ms 140.0us +# Lock time 1 35.3ms 0 31.8ms 21.6us 1.0us 1.0us +# Rows sent 1 7.32k 0 12 4.00 6 5 +# Rows examined 0 7.32k 0 12 4.00 6 5 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_items WHERE user_id = 100000001362\G +SELECT * FROM user_items WHERE user_id = 100000001666\G -# Query 52: ID 0x9BB136538183B385 +# Query 51: ID 0x9BB136538183B385 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1361 -# Exec time 0 1.94s 78.0us 41.8ms 1.4ms 7.0ms 191.0us -# Lock time 0 2.8ms 0 608.0us 2.0us 1.0us 1.0us -# Rows sent 1 6.87k 3 24 5.00 7 5 -# Rows examined 0 6.87k 3 24 5.00 7 5 +# Count 0 1632 +# Exec time 0 3.54s 78.0us 173.8ms 2.2ms 10.9ms 155.0us +# Lock time 0 19.4ms 0 10.1ms 11.9us 1.0us 1.0us +# Rows sent 1 8.19k 3 23 5.00 7 5 +# Rows examined 0 8.19k 3 23 5.00 7 5 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_cards WHERE user_id=100000001263\G +SELECT * FROM user_cards WHERE user_id=100000000945\G -# Query 53: ID 0x7053C9B534F05D7B +# Query 52: ID 0x1ECF31A65E32E96B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1418 -# Exec time 0 1.72s 48.0us 105.0ms 1.2ms 4.8ms 95.0us -# Lock time 0 1.5ms 0 306.0us 1.1us 1.0us 1.0us +# Count 0 2381 +# Exec time 0 3.45s 68.0us 118.6ms 1.5ms 6.8ms 132.0us +# Lock time 0 5.8ms 0 1.0ms 2.4us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 52 0 2 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO user_devices(user_id, platform_id, platform_type, created_at, updated_at) VALUES (100000001374, '1943502', 1, 1661666344, 1661666344)\G +UPDATE user_sessions SET deleted_at=1661667291 WHERE user_id=9433518962 AND deleted_at IS NULL\G -# Query 54: ID 0xC3CEC5658CA257A8 +# Query 53: ID 0x0001A24863DBA0F1 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 8 -# Exec time 0 1.71s 144.9ms 312.0ms 213.2ms 312.0ms 209.6ms +# Count 0 16 +# Exec time 0 2.87s 70.7ms 264.7ms 179.1ms 264.7ms 182.1ms # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -977,69 +965,69 @@ INSERT INTO user_devices(user_id, platform_id, platform_type, created_at, update # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_items` VALUES (1167064,5412259060,3,20,2,1632245312,1632245312,NULL),(1372529,5146048786,4,21,73,1565006829,1565006829,NULL),(2097648,725028234,3,20,8,1567993230,1567993230,NULL),(2266592,4064412803,4,24,13,1586626996,1586626996,NULL),(2387797,7801190116,4,27,10,1570298529,1570298529,NULL),(2841086,1311869719,4,23,15,1563045732,1563045732,NULL),(2911804,7979820705,4,28,3,1586653410,1586653410,NULL),(5496531,6421980563,3,18,61,1565146067,1565146067,NULL),(5931034,5574217942,4,28,1,1561858846,1561858846,NULL),(7061759,9043113439,4,24,16,1575874411,1575874411,NULL),(7200298,7872912856,4,22,6,1643365313,1643365313,NULL),(7728536,7510718109,4,27,8,1566538873,1566538873,NULL),(8282180,6471247629,4,24,4,1626124507,1626124507,NULL),(8939473,576315856,3,20,12,1577420144,1577420144,NULL),(9101912,2339734049,4,21,14,1637320482,1637320482,NULL),(9191803,5895930634,3,18,68,1573540908,1573540908,NULL),(10211500,7809992049,4,30,3,1577768322,1577768322,NULL),(11223428,8506930990,4,26,8,1572474710,1572474710,NULL),(11371594,7828860175,4,24,4,1648478791,1648478791,NULL),(11648245,8933883439,3,19,7,1579701977,1579701977,NULL),(11995503,4905952294,4,25,18,1576907523,1576907523,NULL),(12282553,4158582762,3,19,5,1590400763,1590400763,NULL),(12732335,1372785915,4,22,20,1588368801,1588368801,NULL),(13708998,748293044,4,26,2,1640530962,1640530962,NULL),(14620748,7001133697,4,30,1,1566561445,1566561445,NULL),(15208860,8307649028,4,29,1,1648924242,1648924242,NULL),(15610621,3921776698,4,25,6,1567298267,1567298267,NULL),(15878994,1433445013,4,22,8,1626602901,1626602901,NULL),(16119346,3438762079,4,27,2,1576868062,1576868062,NULL),(16663224,5994768984,4,27,2,1560811232,1560811232,NULL),(16916731,8585441543,4,24,6,1569719551,1569719551,NULL),(17793483,9629437843,4,26,4,1571128675,1571128675,NULL),(18083339,2483377704,4,24,1,1650326415,1650326415,NULL),(18282622,9144056834,4,21,14,1627104500,1627104500,NULL),(18698154,2839002201,3,20,14,1580505991,1580505991,NULL),(20490958,2814771224,3,18,26,1584275451,1584275451,NULL),(21734720,390289479,4,24,9,1576299192,1576299192,NULL),(21963761,1674216717,4,23,21,1570843731,1570843731,NULL),(22450517,6960204496,4,22,20,1569264064,1569264064,NULL),(22857459,2880934344,4,21,12,1627206344,1627206344,NULL),(22929059,118549906,4,22,16,1587155422,1587155422,NULL),(23016506,3747330849,4,29,2,1570135029,1570135029,NULL),(24103810,9807378590,4,24,8,1565912354,1565912354,NULL),(24392111,2805642848,4,26,13,1587790238,1587790238,NULL),(25485406,2947852037,3,18,25,1567214381,1567214381,NULL),(26084651,8696962628,4,25,3,1564230466,1564230466,NULL),(26191337,3052528693,4,25,12,1570276736,1570276736,NULL),(26620043,5438005994,4,22,10,1567223271,1567223271,NULL),(26725600,9922407907,3,17,178,1565708286,1565708286,NULL),(26831259,1567190397,4,30,2,1561027721,1561027721,NULL),(27187200,5007468598,4,23,19,1563292672,1563292672,NULL),(28585653,7585299854,3,17,93,1582447624,1582447624,NULL),(28755305,6184304006,3,17,180,1575767338,1575767338,NULL),(29286621,4961895490,3,18,45,1588334454,1588334454,NULL),(29897478,6956028410,4,23,29,1586589570,1586589570,NULL),(30001139,5914942755,4,28,1,1587528220,1587528220,NULL),(30996205,3995217987,4,23,1,1631147476,1631147476,NULL),(32304491,7694980953,4,23,12,1584624145,1584624145,NULL),(32533047,765018073,4,27,3,1580644853,1580644853,NULL),(33354152,3314285979,4,26,10,1571934114,1571934114,NULL),(35557129,8911536604,4,23,23,1566253638,1566253638,NULL),(36295432,6466358321,3,20,3,1633592253,1633592253,NULL),(36309662,4615057146,4,24,7,1579187172,1579187172,NULL),(36406119,5703570648,4,24,11,1575400927,1575400927,NULL),(37536630,8050912216,4,22,10,1624804342,1624804342,NULL),(37669152,6122055585,3,17,41,1628817184,1628817184,NULL),(37757725,3222320725,4,24,13,1568041137,1568041137,NULL),(39326093,2507834473,4,21,55,1583707270,1583707270,NULL),(39403566,456333076,3,17,187,1589668318,1589668318,NULL),(39951978,2108358588,4,28,1,1626967175,1626967175,NULL),(40609059,2903933247,3,17,175,1578792266,1578792266,NULL),(42174996,7193877728,3,17,102,1560710253,1560710253,NULL),(42880366,1305202405,4,23,17,1573059873,1573059873,NULL),(43645905,6531864118,4,23,15,1568988005,1568988005,NULL),(43833387,7417028826,4,25,13,1588235736,1588235736,NULL),(45064318,8333419683,4,22,5,1587584977,1587584977,NULL),(45343704,7681190795,4,22,26,1580425039,1580425039,NULL),(45879277,9218380579,3,18,36,1587610434,1587610434,NULL),(46303304,9904038980,3,18,10,1639932222,1639932222,NULL),(47311592,6022961798,4,25,7,1563462956,1563462956,NULL),(48025423,229642563,4,24,2,1632030097,1632030097,NULL),(48781433,5264321007,3,18,62,1586395732,1586395732,NULL),(48986921,4017267208,3,20,10,1590904331,1590904331,NULL),(49802390,9360026334,4,26,10,1587086490,1587086490,NULL),(51711318,9865277994,4,24,9,1585109294,1585109294,NULL),(52003434,4351426860,4,21,18,1641009607,1641009607,NULL),(54475278,7205759177,4,26,6,1578843146,1578843146,NULL),(56075486,116199062,4,23,11,1575032828,1575032828,NULL),(57027819,368611111,4,27,3,1585185244,1585185244,NULL),(57647515,1002299276,3,19,7,1633901037,1633901037,NULL),(57650986,8678827236,3,17,172,1588485042,1588485042,NULL),(58273927,2000095052,4,29,2,1589044750,1589044750,NULL),(58316618,5950756126,3,17,170,1582896059,1582896059,NULL),(58806035,9821831355,4,30,1,1561132715,1561132715,NULL),(59607041,1825458989,4,21,49,1585305519,1585305519,NULL),(60156807,587297302,4,22,11,1584854974,1584854974,NULL),(60837813,4266022751,3,20,11,1575177027,1575177027,NULL),(62167640,6986560519,3,17,28,1630646918,1630646918,NULL),(63297564,1230783676,4,24,13,1560599013,1560599013,NULL),(63339972,7882798254,4,25,3,1591183011,1591183011,NULL),(63696180,5668017560,4,27,1,1635350848,1635350848,NULL),(64270784,4025654791,4,30,2,1576611084,1576611084,NULL),(64393162,3317494502,4,21,96,1581756405,1581756405,NULL),(64399859,1979926181,4,22,27,1565451559,1565451559,NULL),(65360524,5134859477,3,20,15,1567806926,1567806926,NULL),(65947875,4004355595,4,24,2,1630495323,1630495323,NULL),(66037930,9538988809,4,22,22,1567361019,1567361019,NULL),(67372596,4463708932,4,27,7,1562440371,1562440371,NULL),(67907636,3899779088,3,19,26,1578365453,1578365453,NULL),(69931534,356865215,4,21,90,1571570738,1571570738,NULL),(70680092,5341959060,4,24,13,1590622798,1590622798,NULL),(71077105,3290431575,4,21,13,1630601629,1630601629,NULL),(72294676,8349782200,4,28,2,1579971207,1579971207,NULL),(72494070,9420888937,4,28,7,1576106865,1576106865,NULL),(72788675,5557721752,3,20,4,1562333876,1562333876,NULL),(73722772,6253370109,4,29,4,1560799710,1560799710,NULL),(74254240,6612984888,4,24,9,1561622123,1561622123,NULL),(75604438,2016029700,3,19,27,1562648948,1562648948,NULL),(76190183,8822081629,4,21,18,1650262256,1650262256,NULL),(76329619,9319613392,3,17,168,1577681003,1577681003,NULL),(76370542,995800663,4,29,3,1588987740,1588987740,NULL),(77283924,1038606032,3,17,92,1561496418,1561496418,NULL),(77800799,5904952520,4,23,7,1631304150,1631304150,NULL),(77961567,9743673366,4,29,3,1589497081,1589497081,NULL),(78427342,7733435611,3,20,9,1583777199,1583777199,NULL),(78467619,7421273511,4,22,12,1581458357,1581458357,NULL),(78927611,7903850145,4,25,5,1578632103,1578632103,NULL),(79070384,4206080407,4,28,1,1627397289,1627397289,NULL),(79211005,7371657538,4,30,2,1580766721,1580766721,NULL),(79250207,4341480494,4,21,13,1633760180,1633760180,NULL),(79903738,2353850048,3,20,13,1575028207,1575028207,NULL),(80306538,3647104934,3,20,11,1560157305,1560157305,NULL),(80580285,6285999353,3,19,15,1573113959,1573113959,NULL),(80796602,4941132196,4,22,3,1587607772,1587607772,NULL),(81107958,9616641303,4,23,5,1653437592,1653437592,NULL),(81137580,5961176818,4,24,4,1566056718,1566056718,NULL),(83179616,3887370829,4,21,94,1590879374,1590879374,NULL),(84033206,1066980289,3,18,16,1636901749,1636901749,NULL),(84130837,508250362,4,30,1,1628233544,1628233544,NULL),(84523739,5281572898,4,25,14,1564302103,1564302103,NULL),(84536630,8082579840,4,28,9,1561902471,1561902471,NULL),(84797898,1033193666,4,25,1,1653255883,1653255883,NULL),(87992453,8767177037,4,29,1,1651978143,1651978143,NULL),(90242344,4074421765,4,27,1,1577700522,1577700522,NULL),(90609150,7593060419,4,21,11,1642059229,1642059229,NULL),(90728091,5794602076,4,21,88,1573076469,1573076469,NULL),(90841349,4160547300,4,23,19,1573748696,1573748696,NULL),(91133374,2529715186,4,26,3,1640630729,1640630729,NULL),(91337623,5494272488,3,19,10,1625667765,1625667765,NULL),(92715447,8677333565,3,19,15,1568047630,1568047630,NULL),(93730962,3417486755,4,22,21,1581567199,1581567199,NULL),(94069592,1207770714,4,30,1,1561360516,1561360516,NULL),(94074374,6805138659,3,17,25,1622770852,1622770852,NULL),(94386694,3231218369,4,23,5,1560995786,1560995786,NULL),(94546811,8012522091,4,23,5,1646546306,1646546306,NULL),(94779248,1914315780,3,17,93,1579531102,1579531102,NULL),(95455427,1565068033,4,29,4,1587990668,1587990668,NULL),(100255142,59529696,4,24,10,1578895908,1578895908,NULL),(100322934,117083620,4,23,5,1643906924,1643906924,NULL),(100622227,1694975723,4,24,17,1571111811,1571111811,NULL),(100638754,2256362148,4,27,1,1641717721,1641717721,NULL),(101359708,6647443611,3,17,31,1634518971,1634518971,NULL),(101665296,5962983598,4,25,13,1570881546,1570881546,NULL),(102229739,3113682626,3,20,6,1586190832,1586190832,NULL),(102542611,1567627558,4,24,13,1564373033,1564373033,NULL),(105195108,6447626037,4,25,4,1560254309,1560254309,NULL),(105431072,3655212919,4,30,2,1582494970,1582494970,NULL),(107103830,1287403171,3,20,4,1642864699,1642864699,NULL),(108601414,7215450250,4,22,7,1566857043,1566857043,NULL),(109700971,4720417724,4,21,33,1569596016,1569596016,NULL),(109838268,659679181,4,25,4,1579906455,1579906455,NULL),(109875589,5086194336,4,21,71,1579581791,1579581791,NULL),(110469461,7875360880,4,26,2,1652038636,1652038636,NULL),(110975472,5876156859,3,19,24,1571073994,1571073994,NULL),(112426413,9866871642,4,30,5,1584243788,1584243788,NULL),(112667816,62507429,4,21,14,1650613288,1650613288,NULL),(112820784,219472299,4,22,27,1586150428,1586150428,NULL),(112967004,5465512081,3,19,21,1588898761,1588898761,NULL),(113356246,2124884098,4,23,1,1652350296,1652350296,NULL),(113697421,1962418910,3,18,4,1630696728,1630696728,NULL),(115772661,704243451,3,19,46,1590192627,1590192627,NULL),(115817743,7146548684,4,23,1,1651243019,1651243019,NULL),(116496493,8355441835,4,27,2,1578848828,1578848828,NULL),(116680822,2847243588,4,24,7,1581692512,1581692512,NULL),(117602681,8653180388,4,26,2,1646861538,1646861538,NULL),(118118301,6290586169,4,23,4,1625171151,1625171151,NULL),(118530127,8141571665,4,24,5,1643816234,1643816234,NULL),(119359261,2131800134,4,26,10,1581748480,1581748480,NULL),(120812569,134031420,3,18,39,1586842620,1586842620,NULL),(120959744,3761357963,3,17,88,1578783067,1578783067,NULL),(122791626,4813562568,4,21,47,1562214462,1562214462,NULL),(123317569,7634954996,4,30,1,1642536611,1642536611,NULL),(123906537,9354318806,3,19,8,1633693046,1633693046,NULL),(125102460,745302491,3,20,12,1583608239,1583608239,NULL),(125899947,3819822059,4,29,1,1565809573,1565809573,NULL),(126711139,6647443611,3,20,3,1634518971,1634518971,NULL),(127290446,3166786152,4,25,4,1640029945,1640029945,NULL),(127524625,5148696198,4,21,53,1581963503,1581963503,NULL),(127636756,3782090459,4,22,30,1582909559,1582909559,NULL),(128482909,4123413498,4,25,9,1563236652,1563236652,NULL),(130341857,1964497590,4,23,19,1590098961,1590098961,NULL),(133607721,7882798254,4,24,6,1591183011,1591183011,NULL),(134132854,5049030005,3,19,36,1578886618,1578886618,NULL),(134299696,9386062156,4,30,2,1582139496,1582139496,NULL),(136540624,1055838121,4,25,10,1579101414,1579101414,NULL),(137406087,3198356750,3,17,88,1571588682,1571588682,NULL),(138535375,5590559640,4,29,1,1584964691,1584964691,NULL),(139782661,8462850297,4,26,6,1579320805,1579320805,NULL),(140486747,9960661997,4,22,20,1590091763,1590091763,NULL),(140986203,2618909127,3,17,184,1582810553,1582810553,NULL),(141971910,4741248810,4,24,2,1649652122,1649652122,NULL),(142316559,4677334043,4,27,8,1569439488,1569439488,NULL),(142382906,5829503856,4,24,10,1587616129,1587616129,NULL),(142410900,6772469456,3,18,15,1625495360,1625495360,NULL),(143643773,9674407097,4,26,11,1578895816,1578895816,NULL),(143664809,2491443843,4,22,15,1560273554,1560273554,NULL),(144140906,368611111,4,25,7,1585185244,1585185244,NULL),(144248272,8828409156,4,21,13,1629309530,1629309530,NULL),(144514842,1369216108,4,21,20,1626397054,1626397054,NULL),(144936403,6612984888,3,20,6,1561622123,1561622123,NULL),(145110484,9357818395,3,19,32,1574606889,1574606889,NULL),(145912952,9693382681,3,20,3,1572994028,1572994028,NULL),(148880990,6256793280,4,30,1,1650832871,1650832871,NULL),(149525165,5137550823,4,29,4,1582574341,1582574341,NULL),(149748950,1951012099,4,25,2,1584125235,1584125235,NULL),(150094253,60998754,4,26,2,1634222824,1634222824,NULL),(150256978,4163852424,4,23,3,1579936474,1579936474,NULL),(152785116,9599965088,4,27,11,1586718835,1586718835,NULL),(153156263,1972300112,3,20,13,1577692415,1577692415,NULL),(153917298,5032488242,4,24,12,1581156878,1581156878,NULL),(154507851,314620446,4,24,23,1587698481,1587698481,NULL),(155559813,4795034632,3,20,1,1650681236,1650681236,NULL),(155651618,1634241546,3,20,2,1642751365,1642751365,NULL),(156094581,1801587442,4,22,8,1576965652,1576965652,NULL),(156971434,9063065047,4,25,1,1633915144,1633915144,NULL),(157767870,3103489868,4,22,12,1578173778,1578173778,NULL),(159429320,3734722330,4,29,1,1640219679,1640219679,NULL),(161071475,1004906683,4,29,3,1572499477,1572499477,NULL),(161167854,1832724010,4,28,3,1571399922,1571399922,NULL),(163156024,7905462630,4,25,11,1566679079,1566679079,NULL),(163936912,7749966038,4,24,17,1570419945,1570419945,NULL),(164076919,2060865880,3,19,20,1576722547,1576722547,NULL),(164124144,1470235579,4,26,3,1571862499,1571862499,NULL),(164656789,3829099405,4,30,1,1560644998,1560644998,NULL),(164863496,2554758178,3,18,31,1584280639,1584280639,NULL),(164953317,1847041084,4,24,18,1565584570,1565584570,NULL),(165723855,6500742668,4,23,12,1565145928,1565145928,NULL),(166357115,8975445153,4,22,29,1578589316,1578589316,NULL),(166403035,3957093570,4,27,1,1650100276,1650100276,NULL),(166769743,1013508916,4,30,1,1582249998,1582249998,NULL),(169146143,4792962987,4,26,2,1646640885,1646640885,NULL),(170961569,1072200992,4,26,2,1625755618,1625755618,NULL),(171925575,8515635826,3,19,46,1560161725,1560161725,NULL),(172032561,8543797220,4,22,1,1640377500,1640377500,NULL),(172175981,2016083403,4,21,48,1567453416,1567453416,NULL),(172401537,5477866325,4,30,1,1622099950,1622099950,NULL),(174482360,3849765663,4,26,16,1589794717,1589794717,NULL),(174748901,4394077262,4,21,14,1646200930,1646200930,NULL),(175161265,6470524950,3,18,10,1634028543,1634028543,NULL),(179221924,6178948320,4,28,4,1572397081,1572397081,NULL),(179643697,7526302602,4,29,1,1585044424,1585044424,NULL),(179812209,8578661958,3,18,24,1573142794,1573142794,NULL),(179979547,1015109221,4,22,16,1570507970,1570507970,NULL),(181052046,2001205157,4,23,16,1569810099,1569810099,NULL),(182743664,5208752696,4,29,2,1573027694,1573027694,NULL),(182758201,2194504692,4,21,85,1577559236,1577559236,NULL),(182813755,7796736035,4,23,17,1565145185,1565145185,NULL),(184145805,2997719929,4,25,1,1650387296,1650387296,NULL),(185596233,2724699047,4,27,3,1581901036,1581901036,NULL),(185689397,357434720,4,23,2,1629113281,1629113281,NULL),(185780656,1009449207,4,23,2,1644734379,1644734379,NULL),(186050363,6536764919,3,20,10,1563831217,1563831217,NULL),(186197775,7972872377,4,25,3,1563630824,1563630824,NULL),(189183596,4283936950,4,30,1,1622854404,1622854404,NULL),(190012361,7659700327,4,25,3,1569822082,1569822082,NULL),(190066620,3404104369,4,30,3,1585523273,1585523273,NULL),(190527654,5770456059,4,30,6,1582921832,1582921832,NULL),(190713895,8413381351,4,27,1,1576140318,1576140318,NULL),(191618143,443204365,4,29,3,1580107679,1580107679,NULL),(192017109,7859564438,4,28,2,1581681203,1581681203,NULL),(192673468,311949929,3,19,28,1567255520,1567255520,NULL),(192752267,8910552320,4,26,2,1565449862,1565449862,NULL),(193151496,5175950813,4,25,12,1581742669,1581742669,NULL),(194129143,9208280540,4,29,6,1565289845,1565289845,NULL),(195325637,9203335141,4,21,87,1587486726,1587486726,NULL),(195486489,255419101,4,28,2,1627611055,1627611055,NULL),(196732215,4933237640,4,28,4,1628573225,1628573225,NULL),(197761274,8663172317,4,29,3,1578112832,1578112832,NULL),(197809920,2899587759,4,25,17,1587972493,1587972493,NULL),(198506069,4917750145,3,20,7,1568762772,1568762772,NULL),(199365789,4705264142,4,28,8,1590006725,1590006725,NULL),(199717276,5033763738,4,24,19,1583996671,1583996671,NULL),(200598115,6826515290,4,28,6,1582161251,1582161251,NULL),(201019235,5374747539,4,25,10,1566845891,1566845891,NULL),(201198221,3600053545,4,24,9,1577691593,1577691593,NULL),(201617415,7272040180,4,24,1,1623350344,1623350344,NULL),(201950194,1707335903,4,24,10,1577939163,1577939163,NULL),(202038329,1651950241,3,20,13,1576512359,1576512359,NULL),(203647202,6717106654,4,30,1,1563084916,1563084916,NULL),(204198272,8802333075,3,18,27,1590375840,1590375840,NULL),(204368492,9702958330,4,23,4,1639623200,1639623200,NULL),(206980258,5720543116,4,26,2,1588750103,1588750103,NULL),(207500917,194196024,4,22,11,1571224657,1571224657,NULL),(208328153,7235847496,4,22,3,1649342937,1649342937,NULL),(209173848,7263301926,3,18,6,1629607294,1629607294,NULL),(209999949,8657902957,4,26,4,1570474262,1570474262,NULL),(211571663,1549200348,4,30,5,1572057841,1572057841,NULL),(211921995,2673777690,3,20,6,1560126504,1560126504,NULL),(212734023,4484251889,3,20,10,1581691461,1581691461,NULL),(213246237,25188488,4,24,9,1590518601,1590518601,NULL),(214534567,9493686731,3,17,34,1643823702,1643823702,NULL),(214620494,5544251981,3,20,1,1626342169,1626342169,NULL),(214838923,6520097180,4,28,1,1622794610,1622794610,NULL),(215615017,9556023071,3,18,55,1562856308,1562856308,NULL),(215677993,4628076318,4,22,23,1562800240,1562800240,NULL),(217661905,6793431284,4,23,20,1564431371,1564431371,NULL),(217879329,195265593,4,24,8,1638834540,1638834540,NULL),(218083905,6961717218,3,17,184,1585625312,1585625312,NULL),(219317493,8422144333,4,25,17,1574580459,1574580459,NULL),(219360443,6509033322,3,18,39,1576493679,1576493679,NULL),(219597875,9247994774,4,24,15,1572548139,1572548139,NULL),(220334019,6961717218,3,19,49,1585625312,1585625312,NULL),(220548985,9892081727,4,30,1,1582126688,1582126688,NULL),(221327350,2024808466,4,25,20,1572139549,1572139549,NULL),(221334154,2379036423,4,21,41,1581339071,1581339071,NULL),(221525818,1379969452,4,24,3,1587000442,1587000442,NULL),(221726430,7855959284,4,24,7,1582822245,1582822245,NULL),(222253783,1801122974,4,26,7,1585602702,1585602702,NULL),(223289150,4812929717,4,22,26,1584303188,1584303188,NULL),(224839478,2061906325,3,19,17,1570844349,1570844349,NULL),(224920104,9401602633,4,29,4,1653017295,1653017295,NULL),(225351279,7656458651,4,26,5,1575911947,1575911947,NULL),(225656773,7959507962,4,21,15,1571106769,1571106769,NULL),(227090750,9169128111,4,26,8,1570987689,1570987689,NULL),(227819859,6046525626,4,25,7,1575253635,1575253635,NULL),(228210087,7045650942,4,29,4,1584206601,1584206601,NULL),(228647353,7582862169,4,26,2,1630482666,1630482666,NULL),(229489187,3380229762,4,30,4,1574997476,1574997476,NULL),(229706304,8340363581,4,21,80,1582740632,1582740632,NULL),(231422745,3895853897,4,29,1,1640592525,1640592525,NULL),(233194016,1149379259,4,26,4,1642344655,1642344655,NULL),(234595445,123140472,4,22,9,1649066510,1649066510,NULL),(235106510,8522381338,3,20,19,1575705988,1575705988,NULL),(235472007,9914420330,4,25,8,1583331839,1583331839,NULL),(235759411,5305844675,3,17,183,1582267779,1582267779,NULL),(236051553,6241632438,4,24,3,1635602365,1635602365,NULL),(236152627,8293120032,4,24,4,1639037537,1639037537,NULL),(236589013,8921078342,3,17,44,1632851806,1632851806,NULL),(237630836,8851370204,3,18,57,1569143959,1569143959,NULL),(237763658,6283471898,4,27,3,1652647704,1652647704,NULL),(238332470,9963097976,4,25,2,1636072737,1636072737,NULL),(238513237,8788929015,4,26,12,1580442454,1580442454,NULL),(238826659,931925534,4,28,7,1588065820,1588065820,NULL),(239307107,4956404903,4,25,12,1584093320,1584093320,NULL),(240629200,7166513992,4,27,8,1579518192,1579518192,NULL),(240736626,8211730064,4,26,1,1622814234,1622814234,NULL),(241045009,6802482714,4,23,13,1580235452,1580235452,NULL),(241656694,6291075776,4,23,1,1652999835,1652999835,NULL),(241676621,2326624347,4,22,17,1572933445,1572933445,NULL),(2419159...\G +INSERT INTO `user_present_all_received_history` VALUES (1148363,538842799,21,1635692400,1635692400,1635692400,NULL),(1860518,8448218013,3,1590937200,1590937200,1590937200,NULL),(3193645,2407481332,13,1617202800,1617202800,1617202800,NULL),(3472840,8230919118,27,1651330800,1651330800,1651330800,NULL),(3877493,383198957,24,1643641200,1643641200,1643641200,NULL),(3919685,5101905405,8,1604156400,1604156400,1604156400,NULL),(4070548,7437651261,27,1651330800,1651330800,1651330800,NULL),(4124751,4278059749,16,1622473200,1622473200,1622473200,NULL),(4507163,3423956366,20,1633014000,1633014000,1633014000,NULL),(4607359,8958533070,6,1598886000,1598886000,1598886000,NULL),(5092659,1009975321,14,1619794800,1619794800,1619794800,NULL),(5175145,9917821664,10,1609426800,1609426800,1609426800,NULL),(5224941,8378973152,2,1588258800,1588258800,1588258800,NULL),(5960925,4156597343,26,1648738800,1648738800,1648738800,NULL),(6341003,3700937960,9,1606748400,1606748400,1606748400,NULL),(6794793,9246249222,4,1593529200,1593529200,1593529200,NULL),(7165483,6465067601,23,1640962800,1640962800,1640962800,NULL),(7392393,8233263716,18,1627743600,1627743600,1627743600,NULL),(7610220,2020890204,12,1614524400,1614524400,1614524400,NULL),(7628876,1073233116,21,1635692400,1635692400,1635692400,NULL),(7765643,8709299260,14,1619794800,1619794800,1619794800,NULL),(7984671,8682151099,1,1588258800,1588258800,1588258800,NULL),(8243090,616130165,8,1604156400,1604156400,1604156400,NULL),(8303232,8396285715,20,1633014000,1633014000,1633014000,NULL),(9228108,1686024127,11,1612105200,1612105200,1612105200,NULL),(9683521,1420866108,28,1667228400,1667228400,1667228400,NULL),(10027296,9554222469,7,1601478000,1601478000,1601478000,NULL),(10282232,9937188599,8,1604156400,1604156400,1604156400,NULL),(10898642,31527932,1,1588258800,1588258800,1588258800,NULL),(11132596,2025685897,24,1643641200,1643641200,1643641200,NULL),(11201048,5754514020,12,1614524400,1614524400,1614524400,NULL),(11256008,3897113259,19,1630422000,1630422000,1630422000,NULL),(11545158,6858877744,26,1648738800,1648738800,1648738800,NULL),(11595418,5477866325,10,1609426800,1609426800,1609426800,NULL),(12065085,2835643431,11,1612105200,1612105200,1612105200,NULL),(12641880,9188489387,3,1590937200,1590937200,1590937200,NULL),(13491233,7255341746,5,1596207600,1596207600,1596207600,NULL),(13875019,3600452358,9,1606748400,1606748400,1606748400,NULL),(13967866,2032484699,13,1617202800,1617202800,1617202800,NULL),(13993734,9062555820,10,1609426800,1609426800,1609426800,NULL),(14292226,932399426,7,1601478000,1601478000,1601478000,NULL),(14972718,5347036009,12,1614524400,1614524400,1614524400,NULL),(15061403,9403450036,20,1633014000,1633014000,1633014000,NULL),(15100992,2021708122,20,1633014000,1633014000,1633014000,NULL),(16021685,1555740936,14,1619794800,1619794800,1619794800,NULL),(16937143,6382869439,5,1596207600,1596207600,1596207600,NULL),(16991602,8308630008,25,1646060400,1646060400,1646060400,NULL),(17331288,1827695529,13,1617202800,1617202800,1617202800,NULL),(17931764,5313313287,12,1614524400,1614524400,1614524400,NULL),(18475159,4710164057,12,1614524400,1614524400,1614524400,NULL),(19252252,9215439706,2,1588258800,1588258800,1588258800,NULL),(19780029,1224073105,9,1606748400,1606748400,1606748400,NULL),(20647099,4725233480,25,1646060400,1646060400,1646060400,NULL),(21265652,7514047461,12,1614524400,1614524400,1614524400,NULL),(21353593,8756058052,1,1588258800,1588258800,1588258800,1588258800),(21353594,8756058052,1,1588258800,1588258800,1588258800,NULL),(22252817,8125078044,19,1630422000,1630422000,1630422000,NULL),(22854212,4252510654,4,1593529200,1593529200,1593529200,NULL),(22925936,2673994484,8,1604156400,1604156400,1604156400,NULL),(23059355,1023222021,13,1617202800,1617202800,1617202800,NULL),(23281424,1742391054,8,1604156400,1604156400,1604156400,NULL),(23674747,3235639730,14,1619794800,1619794800,1619794800,NULL),(23702956,6389278073,15,1619794800,1619794800,1619794800,NULL),(23703453,5347491899,4,1593529200,1593529200,1593529200,NULL),(24179831,1388286468,23,1640962800,1640962800,1640962800,NULL),(24650577,2655275313,28,1667228400,1667228400,1667228400,NULL),(24812188,8495809205,21,1635692400,1635692400,1635692400,NULL),(24987592,3732062731,28,1667228400,1667228400,1667228400,NULL),(25373357,8727881343,24,1643641200,1643641200,1643641200,NULL),(27140590,982548262,15,1619794800,1619794800,1619794800,NULL),(27489820,3753482693,10,1609426800,1609426800,1609426800,NULL),(28092077,306095136,20,1633014000,1633014000,1633014000,NULL),(28116991,5421842119,12,1614524400,1614524400,1614524400,NULL),(29243688,3542158692,7,1601478000,1601478000,1601478000,NULL),(29270179,5294065454,6,1598886000,1598886000,1598886000,NULL),(29608664,1263245469,27,1651330800,1651330800,1651330800,NULL),(29865849,1383961563,12,1614524400,1614524400,1614524400,NULL),(30465400,5656595121,18,1627743600,1627743600,1627743600,NULL),(30561218,9957617223,5,1596207600,1596207600,1596207600,NULL),(30584185,482156200,18,1627743600,1627743600,1627743600,NULL),(31243089,8382850213,22,1638284400,1638284400,1638284400,NULL),(31250271,150118609,7,1601478000,1601478000,1601478000,NULL),(31450301,923539748,9,1606748400,1606748400,1606748400,NULL),(31775688,8412000934,27,1651330800,1651330800,1651330800,NULL),(31776580,460427249,18,1627743600,1627743600,1627743600,NULL),(31863705,5696439279,7,1601478000,1601478000,1601478000,NULL),(32337222,6272919905,1,1588258800,1588258800,1588258800,NULL),(33036836,151441646,26,1648738800,1648738800,1648738800,NULL),(33178568,3606772825,8,1604156400,1604156400,1604156400,NULL),(33543581,1258081508,12,1614524400,1614524400,1614524400,NULL),(35145981,548873028,6,1598886000,1598886000,1598886000,NULL),(35177439,2310115322,18,1627743600,1627743600,1627743600,NULL),(35383193,5318107777,23,1640962800,1640962800,1640962800,NULL),(36024959,1912847775,4,1593529200,1593529200,1593529200,NULL),(36477843,6726818727,10,1609426800,1609426800,1609426800,NULL),(37280503,8355441835,21,1635692400,1635692400,1635692400,NULL),(37431846,2131784314,10,1609426800,1609426800,1609426800,NULL),(37914674,195265593,14,1619794800,1619794800,1619794800,NULL),(38019001,8037293563,8,1604156400,1604156400,1604156400,NULL),(38204560,4057024371,3,1590937200,1590937200,1590937200,NULL),(38216977,4572656859,26,1648738800,1648738800,1648738800,NULL),(38253408,6481559857,6,1598886000,1598886000,1598886000,NULL),(38435009,8411387339,16,1622473200,1622473200,1622473200,NULL),(38491198,2374950622,7,1601478000,1601478000,1601478000,NULL),(39146246,7290033337,12,1614524400,1614524400,1614524400,NULL),(39264076,5735551470,4,1593529200,1593529200,1593529200,NULL),(39396862,4658925441,6,1598886000,1598886000,1598886000,NULL),(39639428,2636836710,14,1619794800,1619794800,1619794800,NULL),(39727034,8962444991,20,1633014000,1633014000,1633014000,NULL),(40105914,3308207575,22,1638284400,1638284400,1638284400,NULL),(41750212,8399080111,16,1622473200,1622473200,1622473200,NULL),(42378012,4081021366,18,1627743600,1627743600,1627743600,NULL),(42799326,5205386988,12,1614524400,1614524400,1614524400,NULL),(43059508,3705182330,14,1619794800,1619794800,1619794800,NULL),(43202686,8065460566,14,1619794800,1619794800,1619794800,NULL),(43614964,6559875896,5,1596207600,1596207600,1596207600,NULL),(44262960,3781745917,8,1604156400,1604156400,1604156400,NULL),(44318599,7772885082,18,1627743600,1627743600,1627743600,NULL),(44598945,8623346234,13,1617202800,1617202800,1617202800,NULL),(44680303,2739179113,25,1646060400,1646060400,1646060400,NULL),(45103846,9400744626,7,1601478000,1601478000,1601478000,NULL),(45349632,842041515,23,1640962800,1640962800,1640962800,NULL),(45933089,4372573673,20,1633014000,1633014000,1633014000,NULL),(46101878,659919247,9,1606748400,1606748400,1606748400,NULL),(46488076,1904375014,10,1609426800,1609426800,1609426800,NULL),(47231657,1163905592,14,1619794800,1619794800,1619794800,NULL),(47402695,8008873858,15,1619794800,1619794800,1619794800,NULL),(47633371,7116650312,5,1596207600,1596207600,1596207600,NULL),(47770934,9475650229,6,1598886000,1598886000,1598886000,NULL),(47883895,1066980289,23,1640962800,1640962800,1640962800,NULL),(48197835,6772469456,26,1648738800,1648738800,1648738800,NULL),(48908898,2086808606,26,1648738800,1648738800,1648738800,NULL),(49009393,786784355,25,1646060400,1646060400,1646060400,NULL),(49373287,1318844492,21,1635692400,1635692400,1635692400,NULL),(49678303,3558652629,11,1612105200,1612105200,1612105200,NULL),(49722314,103782730,17,1625065200,1625065200,1625065200,NULL),(51583725,2219327293,25,1646060400,1646060400,1646060400,NULL),(51831146,8823347972,7,1601478000,1601478000,1601478000,NULL),(52212409,6323107634,22,1638284400,1638284400,1638284400,NULL),(52588897,7993165577,2,1588258800,1588258800,1588258800,NULL),(52920420,4431676394,17,1625065200,1625065200,1625065200,NULL),(53102905,683169881,14,1619794800,1619794800,1619794800,NULL),(53770367,7481700759,3,1590937200,1590937200,1590937200,NULL),(54081561,3317494502,8,1604156400,1604156400,1604156400,NULL),(54151525,9227557019,8,1604156400,1604156400,1604156400,NULL),(55938343,6484232319,22,1638284400,1638284400,1638284400,NULL),(55938553,2056244935,22,1638284400,1638284400,1638284400,NULL),(57011061,5656727244,18,1627743600,1627743600,1627743600,NULL),(57675997,7214347085,23,1640962800,1640962800,1640962800,NULL),(57829820,9375099467,27,1651330800,1651330800,1651330800,NULL),(58655438,4061457002,23,1640962800,1640962800,1640962800,NULL),(58796348,3360751520,8,1604156400,1604156400,1604156400,NULL),(59165607,8964403558,10,1609426800,1609426800,1609426800,NULL),(59584462,5868024610,3,1590937200,1590937200,1590937200,NULL),(60493201,2087122592,2,1588258800,1588258800,1588258800,NULL),(61508034,79537068,1,1588258800,1588258800,1588258800,NULL),(61863628,7085147501,14,1619794800,1619794800,1619794800,NULL),(61982969,3992424682,8,1604156400,1604156400,1604156400,NULL),(61991610,2097150135,25,1646060400,1646060400,1646060400,NULL),(62267662,8722832545,9,1606748400,1606748400,1606748400,NULL),(63542971,8945770111,12,1614524400,1614524400,1614524400,NULL),(63892347,2969976665,13,1617202800,1617202800,1617202800,NULL),(64108184,2974090373,9,1606748400,1606748400,1606748400,NULL),(64227155,3170944281,21,1635692400,1635692400,1635692400,NULL),(64353525,6470524950,22,1638284400,1638284400,1638284400,NULL),(64456742,6153856322,8,1604156400,1604156400,1604156400,NULL),(64467334,9486669118,16,1622473200,1622473200,1622473200,NULL),(64840590,1655099222,8,1604156400,1604156400,1604156400,NULL),(64874069,7036005202,17,1625065200,1625065200,1625065200,NULL),(65392467,7079870938,2,1588258800,1588258800,1588258800,NULL),(66534290,6618695157,1,1588258800,1588258800,1588258800,NULL),(66914571,2574352454,14,1619794800,1619794800,1619794800,NULL),(67061968,8403495964,23,1640962800,1640962800,1640962800,NULL),(67103072,1601367982,19,1630422000,1630422000,1630422000,NULL),(67748260,7000375365,25,1646060400,1646060400,1646060400,NULL),(67769364,5860922629,22,1638284400,1638284400,1638284400,NULL),(69001732,9503691558,10,1609426800,1609426800,1609426800,NULL),(69122900,8545108067,7,1601478000,1601478000,1601478000,NULL),(70167532,9475153512,19,1630422000,1630422000,1630422000,NULL),(70547545,3707919768,8,1604156400,1604156400,1604156400,NULL),(70909265,8966253945,14,1619794800,1619794800,1619794800,NULL),(71660461,3266294770,4,1593529200,1593529200,1593529200,NULL),(71858302,1726326223,24,1643641200,1643641200,1643641200,NULL),(72355697,7204541771,28,1667228400,1667228400,1667228400,NULL),(72373441,5175950813,15,1619794800,1619794800,1619794800,NULL),(74000004,5689498526,11,1612105200,1612105200,1612105200,NULL),(74393725,1043497603,5,1596207600,1596207600,1596207600,NULL),(75593177,354000909,21,1635692400,1635692400,1635692400,NULL),(75814798,1296561757,17,1625065200,1625065200,1625065200,NULL),(75924076,4923752137,17,1625065200,1625065200,1625065200,NULL),(76256012,136312822,4,1593529200,1593529200,1593529200,NULL),(76953658,5097284905,9,1606748400,1606748400,1606748400,NULL),(76980845,6486364049,7,1601478000,1601478000,1601478000,NULL),(77179376,923233739,5,1596207600,1596207600,1596207600,NULL),(77635337,2373865838,18,1627743600,1627743600,1627743600,NULL),(77674631,9871536807,8,1604156400,1604156400,1604156400,NULL),(78188549,7338799984,11,1612105200,1612105200,1612105200,NULL),(78279978,1865835434,10,1609426800,1609426800,1609426800,NULL),(78403888,995028284,17,1625065200,1625065200,1625065200,NULL),(78625364,8840619962,15,1619794800,1619794800,1619794800,NULL),(79052580,5148872553,18,1627743600,1627743600,1627743600,NULL),(79170560,1686382592,14,1619794800,1619794800,1619794800,NULL),(79384885,9127828518,17,1625065200,1625065200,1625065200,NULL),(79716882,6006308617,21,1635692400,1635692400,1635692400,NULL),(79999828,60998754,18,1627743600,1627743600,1627743600,NULL),(80109626,3085264248,18,1627743600,1627743600,1627743600,NULL),(80192234,2099246939,2,1588258800,1588258800,1588258800,NULL),(80662604,7487499083,26,1648738800,1648738800,1648738800,NULL),(81665123,5607930648,20,1633014000,1633014000,1633014000,NULL),(81691248,71805998,9,1606748400,1606748400,1606748400,NULL),(82606824,8582251635,14,1619794800,1619794800,1619794800,NULL),(83244198,5763777023,28,1667228400,1667228400,1667228400,NULL),(84229920,866733915,8,1604156400,1604156400,1604156400,NULL),(84296583,4130461099,6,1598886000,1598886000,1598886000,NULL),(85283884,6626919828,18,1627743600,1627743600,1627743600,NULL),(85625701,3293325375,19,1630422000,1630422000,1630422000,NULL),(85806989,9449366756,1,1588258800,1588258800,1588258800,NULL),(85873748,6549261218,12,1614524400,1614524400,1614524400,NULL),(85906165,148385704,21,1635692400,1635692400,1635692400,NULL),(86667667,1196058747,15,1619794800,1619794800,1619794800,NULL),(86888556,7300619134,12,1614524400,1614524400,1614524400,NULL),(87681586,9718360427,8,1604156400,1604156400,1604156400,NULL),(87867586,6808006980,7,1601478000,1601478000,1601478000,NULL),(88027017,9716268687,21,1635692400,1635692400,1635692400,NULL),(88047455,6049279452,27,1651330800,1651330800,1651330800,NULL),(89083032,3204292224,7,1601478000,1601478000,1601478000,NULL),(89123428,9996060538,13,1617202800,1617202800,1617202800,NULL),(90265683,303142510,14,1619794800,1619794800,1619794800,NULL),(91068637,4036854123,7,1601478000,1601478000,1601478000,NULL),(91177132,4682480962,28,1667228400,1667228400,1667228400,NULL),(91723054,4336319019,4,1593529200,1593529200,1593529200,NULL),(92140992,7451597298,24,1643641200,1643641200,1643641200,NULL),(92828110,7765165277,27,1651330800,1651330800,1651330800,NULL),(93843394,9763453890,23,1640962800,1640962800,1640962800,NULL),(93987155,8651137779,18,1627743600,1627743600,1627743600,NULL),(94014767,6602109521,21,1635692400,1635692400,1635692400,NULL),(94637860,3293325375,11,1612105200,1612105200,1612105200,NULL),(94740799,8455594198,3,1590937200,1590937200,1590937200,NULL),(95610735,9898934142,9,1606748400,1606748400,1606748400,NULL),(95646824,7756652309,1,1588258800,1588258800,1588258800,NULL),(96747671,9904038980,8,1604156400,1604156400,1604156400,NULL),(97332315,972129615,9,1606748400,1606748400,1606748400,NULL),(97410542,3612737044,21,1635692400,1635692400,1635692400,NULL),(98884151,2110975333,5,1596207600,1596207600,1596207600,NULL),(98888241,8739788079,6,1598886000,1598886000,1598886000,NULL),(99100322,8676639368,12,1614524400,1614524400,1614524400,NULL),(100446303,8912784645,20,1633014000,1633014000,1633014000,NULL),(100520405,5658889995,13,1617202800,1617202800,1617202800,NULL),(100817231,1814096909,21,1635692400,1635692400,1635692400,NULL),(101065415,4665130860,3,1590937200,1590937200,1590937200,NULL),(101190641,531858931,10,1609426800,1609426800,1609426800,NULL),(101213550,5365434322,18,1627743600,1627743600,1627743600,NULL),(101492645,57954983,7,1601478000,1601478000,1601478000,NULL),(101677156,5590559640,6,1598886000,1598886000,1598886000,NULL),(102068992,7872528690,15,1619794800,1619794800,1619794800,NULL),(102867716,2944677568,10,1609426800,1609426800,1609426800,NULL),(103097777,24381866,17,1625065200,1625065200,1625065200,NULL),(103458650,8683481184,8,1604156400,1604156400,1604156400,NULL),(103817145,8396285715,6,1598886000,1598886000,1598886000,NULL),(104625400,3113682626,16,1622473200,1622473200,1622473200,NULL),(104740886,4512216592,28,1667228400,1667228400,1667228400,NULL),(104945022,655823203,18,1627743600,1627743600,1627743600,NULL),(105084464,9695764447,25,1646060400,1646060400,1646060400,NULL),(105090901,8692418017,5,1596207600,1596207600,1596207600,NULL),(106256720,2772018849,16,1622473200,1622473200,1622473200,NULL),(106570992,2036268204,7,1601478000,1601478000,1601478000,NULL),(107582579,1492186257,16,1622473200,1622473200,1622473200,NULL),(108427500,8399080111,4,1593529200,1593529200,1593529200,NULL),(108432906,5388894301,24,1643641200,1643641200,1643641200,NULL),(108690892,8884508453,10,1609426800,1609426800,1609426800,NULL),(108924115,2822610184,13,1617202800,1617202800,1617202800,NULL),(109356051,3423134299,14,1619794800,1619794800,1619794800,NULL),(110031912,8702334471,7,1601478000,1601478000,1601478000,NULL),(110291427,9444929888,18,1627743600,1627743600,1627743600,NULL),(110673046,437408266,1,1588258800,1588258800,1588258800,NULL),(112346956,1239721456,12,1614524400,1614524400,1614524400,NULL),(112617435,4398120550,4,1593529200,1593529200,1593529200,NULL),(112865181,1339404594,13,1617202800,1617202800,1617202800,NULL),(113127662,128187075,28,1667228400,1667228400,1667228400,NULL),(113426813,4391499833,8,1604156400,1604156400,1604156400,NULL),(113751227,1296900797,6,1598886000,1598886000,1598886000,NULL),(114484967,7934361733,28,1667228400,1667228400,1667228400,NULL),(115025735,2708762632,12,1614524400,1614524400,1614524400,NULL),(115374083,8768632954,10,1609426800,1609426800,1609426800,NULL),(115828117,3846596759,12,1614524400,1614524400,1614524400,NULL),(116460615,6235154237,6,1598886000,1598886000,1598886000,NULL),(116862745,9364805836,4,1593529200,1593529200,1593529200,NULL),(118049189,4124216667,1,1588258800,1588258800,1588258800,1588258800),(118049190,4124216667,1,1588258800,1588258800,1588258800,NULL),(118054390,3118739921,15,1619794800,1619794800,1619794800,NULL),(118310136,7904520664,1,1588258800,1588258800,1588258800,NULL),(119487420,2379771359,17,1625065200,1625065200,1625065200,NULL),(119601136,5438986283,12,1614524400,1614524400,1614524400,NULL),(120010683,5021649907,2,1588258800,1588258800,1588258800,NULL),(120320134,1169344596,7,1601478000,1601478000,1601478000,NULL),(120812574,9634768573,28,1667228400,1667228400,1667228400,NULL),(121113714,3719784190,22,1638284400,1638284400,1638284400,NULL),(121202024,9038104745,11,1612105200,1612105200,1612105200,NULL),(121979932,3415269799,9,1606748400,1606748400,1606748400,NULL),(122401533,3068228479,12,1614524400,1614524400,1614524400,NULL),(122717626,4442944011,5,1596207600,1596207600,1596207600,NULL),(122805777,6520371328,3,1590937200,1590937200,1590937200,NULL),(122934089,4394675938,3,1590937200,1590937200,1590937200,NULL),(123225813,1245727432,13,1617202800,1617202800,1617202800,NULL),(123280942,3336222063,4,1593529200,1593529200,1593529200,NULL),(123356487,5048074269,16,1622473200,1622473200,1622473200,NULL),(123614971,4174378558,23,1640962800,1640962800,1640962800,NULL),(123828274,1088326190,5,1596207600,1596207600,1596207600,NULL),(123848756,7434228787,13,1617202800,1617202800,1617202800,NULL),(124136231,5101905405,18,1627743600,1627743600,1627743600,NULL),(124475055,9434384219,14,1619794800,1619794800,1619794800,NULL),(124594774,3218034085,17,1625065200,1625065200,1625065200,NULL),(125166097,4868272183,9,1606748400,1606748400,1606748400,NULL),(125803902,9299087413,23,1640962800,1640962800,1640962800,NULL),(126117120,7511955848,12,1614524400,1614524400,1614524400,NULL),(128247577,4870935639,12,1614524400,1614524400,1614524400,NULL),(128655047,3353376701,21,1635692400,1635692400,1635692400,NULL),(129095710,8610396172,6,1598886000,1598886000,1598886000,NULL),(129896369,5154250661,2,1588258800,1588258800,1588258800,NULL),(129920250,250287778,3,1590937200,1590937200,1590937200,NULL),(131464072,4478033645,9,1606748400,1606748400,1606748400,NULL),(131952049,7810287260,4,1593529200,1593529200,1593529200,NULL),(132098749,8586772018,8,1604156400,1604156400,1604156400,NULL),(132461446,3748672972,13,1617202800,1617202800,1617202800,NULL),(132468987,1601367982,4,1593529200,1593529200,1593529200,NULL),(132553950,7575746380,10,1609426800,1609426800,...\G -# Query 55: ID 0xD5FEFD7BF42F0E17 +# Query 54: ID 0xD5FEFD7BF42F0E17 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1349 -# Exec time 0 1.38s 62.0us 94.9ms 1.0ms 3.7ms 142.0us -# Lock time 0 8.3ms 0 3.7ms 6.1us 1.0us 1.0us +# Count 0 1595 +# Exec time 0 2.32s 63.0us 129.5ms 1.5ms 7.4ms 114.0us +# Lock time 0 5.2ms 0 1.7ms 3.3us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 1.35k 1 1 1.00 1 1 +# Rows examined 0 1.59k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE user_cards SET amount_per_sec=2, level=2, total_exp=10, updated_at=1661666343 WHERE id=100000014542\G +UPDATE user_cards SET amount_per_sec=2, level=2, total_exp=10, updated_at=1661667287 WHERE id=100000015065\G -# Query 56: ID 0x7E11B8A86E73E369 +# Query 55: ID 0x85341F0A4C9D5CB2 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1349 -# Exec time 0 1.15s 47.0us 83.4ms 852.2us 3.7ms 107.0us -# Lock time 0 3.1ms 0 1.8ms 2.3us 1.0us 1.0us -# Rows sent 0 1.35k 1 1 1.00 1 1 -# Rows examined 0 1.35k 1 1 1.00 1 1 +# Count 0 1738 +# Exec time 0 2.18s 39.0us 55.4ms 1.3ms 6.0ms 83.0us +# Lock time 0 28.7ms 0 8.8ms 16.5us 1.0us 1.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_cards WHERE id=100000011535\G +INSERT INTO users(last_activated_at, registered_at, last_getreward_at, created_at, updated_at) VALUES(1661667274, 1661667274, 1661667274, 1661667274, 1661667274)\G -# Query 57: ID 0x0FDB82B41F5B3844 +# Query 56: ID 0x7053C9B534F05D7B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 1 4863 -# Exec time 0 970.7ms 10.0us 71.2ms 199.6us 357.0us 29.0us -# Lock time 0 0 0 0 0 0 0 +# Count 0 1738 +# Exec time 0 2.05s 44.0us 60.8ms 1.2ms 6.5ms 90.0us +# Lock time 0 30.6ms 0 26.3ms 17.6us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SET NAMES utf8mb4\G +INSERT INTO user_devices(user_id, platform_id, platform_type, created_at, updated_at) VALUES (100000001635, '1931286', 1, 1661667289, 1661667289)\G -# Query 58: ID 0x3C326B7DBDA9C787 +# Query 57: ID 0x7E11B8A86E73E369 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 880.6ms 880.6ms 880.6ms 880.6ms 880.6ms 880.6ms -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 3 82.07k 82.07k 82.07k 82.07k 82.07k 82.07k +# Count 0 1595 +# Exec time 0 1.81s 48.0us 87.2ms 1.1ms 5.4ms 89.0us +# Lock time 0 4.1ms 0 1.0ms 2.6us 1.0us 1.0us +# Rows sent 0 1.59k 1 1 1.00 1 1 +# Rows examined 0 1.59k 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -delete from user_presents where id > 100000000000\G +SELECT * FROM user_cards WHERE id=100000014681\G -# Query 59: ID 0xDD99773350309CB2 +# Query 58: ID 0xC3CEC5658CA257A8 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 510.3ms 148.7ms 361.6ms 255.1ms 361.6ms 361.6ms +# Count 0 8 +# Exec time 0 1.66s 134.1ms 268.0ms 207.7ms 268.0ms 208.3ms # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1047,13 +1035,13 @@ delete from user_presents where id > 100000000000\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_login_bonuses` VALUES (3134447,8767177037,4,7,1,1651978143,1654213748,NULL),(3260329,8709299260,2,7,1,1568089349,1568614949,NULL),(3276639,2883231672,4,7,1,1578663808,1654137455,NULL),(4747821,5763777023,2,7,1,1565356295,1653735933,NULL),(6906131,3203595700,1,22,2245,1563681828,1654231124,NULL),(7307025,6566258518,4,7,1,1590173358,1590698958,NULL),(7548066,4415681535,2,7,1,1624552840,1653929112,NULL),(11333228,4221087024,1,21,390,1638254883,1654009107,NULL),(16676016,8334696436,4,7,1,1562171721,1562697321,NULL),(16999636,3487541354,2,7,1,1564662806,1653693067,NULL),(20593963,6326360183,4,7,1,1567644098,1654151921,NULL),(20685904,3942457205,2,7,1,1622766582,1653722061,NULL),(22937960,7638751366,1,2,13,1586863586,1587389186,NULL),(23493256,1431348573,1,19,1813,1580584058,1653710386,NULL),(30064791,3169881792,4,7,1,1567901865,1568427465,NULL),(39577777,1198483804,1,12,284,1642510552,1653978085,NULL),(40220416,4992243040,2,7,1,1637614343,1654094091,NULL),(49976051,6098359308,4,7,1,1645509510,1654084539,NULL),(51343704,9273593974,2,7,1,1572641760,1653952470,NULL),(55695850,8344172389,2,7,1,1571061840,1571587440,NULL),(61128834,921123837,4,7,1,1570143474,1654039413,NULL),(64297614,7362174758,4,7,1,1575292036,1654003052,NULL),(69681084,252575082,2,7,1,1579494370,1654214017,NULL),(71743883,336096340,1,3,1724,1584265668,1653780544,NULL),(76090323,8445695437,4,7,1,1574455194,1654159336,NULL),(76550495,1722144314,2,7,1,1567989354,1568514954,NULL),(82242525,2763796691,1,2,13,1572576071,1573101671,NULL),(84691683,6906998270,1,21,578,1630615462,1653950366,NULL),(87487370,6484724332,4,7,1,1581086058,1654153364,NULL),(87991114,8113803567,2,7,1,1588079785,1588605385,NULL),(91601058,1567190397,4,7,1,1561027721,1653781349,NULL),(92219834,3711336099,2,7,1,1646513562,1653737659,NULL),(94763129,643015436,4,7,1,1560333948,1654183120,NULL),(97347790,9682030274,1,2,13,1579497228,1580022828,NULL),(103915261,5383699502,1,16,448,1635981261,1654067218,NULL),(106838510,9699526412,1,26,359,1639331904,1653843145,NULL),(110038613,8793062976,2,7,1,1565987039,1566512639,NULL),(110219526,9101643128,2,7,1,1574456676,1574982276,NULL),(111093592,6582851499,2,7,1,1631272977,1654061054,NULL),(111611560,1996005344,1,22,751,1623644684,1653955589,NULL),(112023180,8902693794,4,7,1,1572299808,1654155242,NULL),(121941769,1409942818,1,12,264,1643569542,1654230588,NULL),(129049524,6484232319,1,27,145,1647865439,1653750572,NULL),(139701672,3803055378,1,9,451,1635596541,1653792962,NULL),(143942095,4455381760,1,17,2289,1561367149,1653683583,NULL),(146087177,7996674190,4,7,1,1632644561,1653737827,NULL),(146789299,7483979241,1,2,13,1581648132,1582173732,NULL),(147053187,3283551674,1,13,727,1624605246,1653935471,NULL),(148407064,9359867565,2,7,1,1575321232,1653845314,NULL),(149433584,5348716051,2,7,1,1627896584,1653921152,NULL),(156018908,3336529742,1,20,68,1651462297,1654231430,NULL),(180370585,6674762532,4,7,1,1641018772,1654132467,NULL),(181978382,5972449038,4,7,1,1567268315,1653803464,NULL),(193949435,221709839,2,7,1,1572413337,1572938937,NULL),(198073648,2116953238,2,7,1,1588155820,1654083428,NULL),(200386427,6959183582,2,7,1,1584273540,1654139930,NULL),(203306317,5523867382,4,7,1,1646027606,1654079088,NULL),(209327969,4094440579,2,7,1,1565049848,1653677550,NULL),(215346665,7514721491,4,7,1,1564624756,1565150356,NULL),(215818819,7730499089,4,7,1,1637153220,1654208501,NULL),(221913685,3761306954,1,1,449,1636025821,1654130744,NULL),(225493530,4502913038,4,7,1,1580526900,1653956868,NULL),(226190276,484155114,4,7,1,1640798701,1653890247,NULL),(226544688,34087240,1,1,1871,1578624481,1654063701,NULL),(240080884,8301109528,4,7,1,1561482181,1654119982,NULL),(243552434,8325066911,4,7,1,1585191508,1585717108,NULL),(253526813,5242588511,2,7,1,1571420083,1653746947,NULL),(253627734,8658823190,4,7,1,1561094911,1653865662,NULL),(257859330,6767328277,2,7,1,1574372596,1653767207,NULL),(261105771,4992243040,4,7,1,1637614343,1654094091,NULL),(261222175,9997831052,2,7,1,1590491037,1591016637,NULL),(261468686,855261089,4,7,1,1638502860,1653754046,NULL),(261996138,5662400133,4,7,1,1559853295,1560378895,NULL),(265260958,5913905158,1,18,2006,1573239146,1654146342,NULL),(268636860,3671423633,1,7,2200,1565268807,1653982748,NULL),(275435301,4299733092,4,7,1,1565959132,1653967598,NULL),(275644009,9798655210,4,7,1,1562725418,1563251018,NULL),(281465662,8302434571,2,7,1,1646677888,1654176169,NULL),(281556938,1342041879,4,7,1,1646999075,1654180380,NULL),(283531256,1549518855,1,25,75,1651110104,1654169462,NULL),(284399438,4457509830,1,20,162,1647109015,1653668216,NULL),(286201974,6480615509,2,7,1,1634057867,1654123357,NULL),(293636031,6658849649,2,7,1,1571384436,1571910036,NULL),(301776434,6211542408,1,2,13,1562771093,1563296693,NULL),(306928223,6667808393,1,15,527,1632600467,1653869310,NULL),(315245578,7229432289,1,16,560,1631183543,1653785464,NULL),(319702210,6050395059,1,2,13,1568403222,1568928822,NULL),(321213118,494329171,4,7,1,1568879680,1569405280,NULL),(322381849,8657844709,1,6,2170,1566575590,1654077428,NULL),(325432934,9169128111,4,7,1,1570987689,1654137762,NULL),(327344558,7029958838,2,7,1,1591020742,1591546342,NULL),(329777345,3459447014,2,7,1,1567185468,1654238371,NULL),(331140628,2478329247,4,7,1,1563631312,1564156912,NULL),(332646655,2150291092,1,2,13,1561437009,1561962609,NULL),(335124458,1577474237,2,7,1,1632566519,1653740440,NULL),(339606473,1305202405,4,7,1,1573059873,1654175956,NULL),(341731982,7619603667,4,7,1,1560882261,1561407861,NULL),(341976343,8009723353,1,19,2068,1570513972,1653921830,NULL),(342469045,552701006,4,7,1,1588108587,1588634187,NULL),(342533588,5359936940,1,22,1649,1587251087,1653769128,NULL),(343356376,7801190116,1,28,2077,1570298529,1654082537,NULL),(344912841,8395034222,1,26,1737,1583635211,1653707793,NULL),(346667504,948292137,2,7,1,1635306764,1654120070,NULL),(350405063,548866049,4,7,1,1647180652,1653946331,NULL),(351203918,3245713526,4,7,1,1582201018,1582726618,NULL),(351300208,6542944085,4,7,1,1572459125,1653889837,NULL),(351933820,4394297139,4,7,1,1590469629,1590995229,NULL),(352099351,1741422291,2,7,1,1566383120,1566908720,NULL),(358036359,3789945083,2,7,1,1570652036,1654128379,NULL),(361866380,6058102603,4,7,1,1646127837,1653873472,NULL),(367776670,7091214751,2,7,1,1590235135,1590760735,NULL),(369673273,578096596,1,2,13,1565866152,1566391752,NULL),(371165425,710103896,1,21,1963,1574508881,1653686154,NULL),(371973629,758694296,2,7,1,1631497257,1653672615,NULL),(377589943,4819235938,1,2,13,1583451466,1583977066,NULL),(382872881,142250733,4,7,1,1587986931,1653977214,NULL),(384074390,2248624316,2,7,1,1646009307,1653672992,NULL),(397904163,6816147926,1,24,226,1644738669,1653884825,NULL),(398970948,5247743862,1,28,351,1639576828,1653768888,NULL),(400767167,1849395043,2,7,1,1642701412,1654255761,NULL),(402436695,6855087540,4,7,1,1584328202,1584853802,NULL),(403747752,3823224921,1,8,126,1648619028,1653710441,NULL),(405444748,3242254752,1,2,13,1567092057,1567617657,NULL),(417099783,636903146,1,2,13,1577951414,1578477014,NULL),(423295823,4930490732,1,2,13,1564537096,1565062696,NULL),(429880205,9784803024,2,7,1,1648729847,1654086841,NULL),(431655101,9954068686,1,21,2170,1566540602,1654064039,NULL),(438062444,17557615,4,7,1,1623185630,1653770532,NULL),(442887355,79010549,4,7,1,1572307306,1572832906,NULL),(443233135,7938271498,2,7,1,1568703369,1653711618,NULL),(445550541,9086731280,4,7,1,1568036485,1654007709,NULL),(448351506,8107304408,2,7,1,1650513659,1654257544,NULL),(451161305,4164200397,2,7,1,1644219352,1654140659,NULL),(452899752,5792456872,2,7,1,1623650752,1654046017,NULL),(453353696,2444227804,1,22,1923,1576442491,1654008916,NULL),(453576039,8281471080,1,2,13,1579889259,1580414859,NULL),(456386300,8896568848,2,7,1,1581238526,1653770710,NULL),(459443196,9191873231,4,7,1,1590588352,1591113952,NULL),(464185938,7816853964,1,2,741,1623789414,1653668329,NULL),(476390697,4317746938,4,7,1,1583884286,1584409886,NULL),(477173329,3707919768,4,7,1,1567463935,1567989535,NULL),(478940731,2605510124,2,7,1,1641195958,1653748545,NULL),(482616802,9208483637,2,7,1,1564289682,1564815282,NULL),(487994898,8239110008,1,20,510,1633468992,1654060749,NULL),(497505804,8980774314,4,7,1,1589240004,1589765604,NULL),(509982617,8884477625,1,27,2085,1569949236,1654054158,NULL),(512502892,7075725950,1,25,44,1652380725,1654190506,NULL),(514121119,3928023333,4,7,1,1589476690,1590002290,NULL),(518111896,9162028666,1,26,314,1641319267,1654016538,NULL),(520719056,3008712324,1,2,13,1582656980,1583182580,NULL),(525905837,1951037404,1,2,13,1570872986,1571398586,NULL),(527359817,7555814913,2,7,1,1642184366,1653986766,NULL),(528527396,3008712324,2,7,1,1582656980,1583182580,NULL),(529793509,1433445013,1,14,685,1626602901,1654241957,NULL),(530633406,5367465692,2,7,1,1637891081,1653836558,NULL),(536034585,597834130,2,7,1,1590174447,1590700047,NULL),(539124168,8294580351,2,7,1,1642549863,1654250290,NULL),(549653876,3440812463,2,7,1,1589682808,1653733580,NULL),(559939225,9931596209,4,7,1,1566228324,1654221605,NULL),(561393705,2055572758,1,26,172,1646795062,1653767245,NULL),(565441274,8257093521,1,17,2098,1569387177,1654002446,NULL),(574007002,1585988041,4,7,1,1574259065,1653797171,NULL),(574051901,1402976445,1,2,13,1587525624,1588051224,NULL),(581530064,8815925564,2,7,1,1562268412,1654086697,NULL),(585837711,9522151998,4,7,1,1570370948,1570896548,NULL),(590693000,2218538989,4,7,1,1643886910,1654172677,NULL),(598264619,4722842006,4,7,1,1584468326,1584993926,NULL),(606572112,93623630,2,7,1,1581966751,1653722302,NULL),(611701116,7048251657,1,4,603,1629673982,1653992604,NULL),(612302646,2635448192,1,1,2107,1568965608,1653921153,NULL),(612956038,9198525309,2,7,1,1635411019,1653682024,NULL),(613490780,7768408746,1,28,2097,1569271336,1653862297,NULL),(618420821,1996005344,2,7,1,1623644684,1653955589,NULL),(620513093,349789885,2,7,1,1590279879,1654064144,NULL),(628728074,8945770111,1,23,2159,1566722884,1653805691,NULL),(629535908,8020062815,1,18,1968,1574807726,1654182482,NULL),(646685476,9448951734,2,7,1,1589935294,1653831069,NULL),(648751442,6996991989,1,21,21,1653139060,1654015342,NULL),(649137754,2239820837,1,20,478,1634554526,1653855566,NULL),(650532281,9611548593,2,7,1,1650749923,1653768465,NULL),(655998808,245308056,1,2,13,1572382670,1572908270,NULL),(660097925,4039861335,1,2,13,1573162991,1573688591,NULL),(664000255,424994570,1,15,2100,1569373789,1654066661,NULL),(670029212,4682975263,2,7,1,1581600562,1654148101,NULL),(677834210,1704559703,2,7,1,1635493866,1653847694,NULL),(684121642,3545635248,4,7,1,1570891740,1571417340,NULL),(687476263,8884508453,4,7,1,1638982800,1654247518,NULL),(688584750,8828409156,2,7,1,1629309530,1654242717,NULL),(690086287,7863429863,4,7,1,1587682018,1588207618,NULL),(692651649,8098281322,4,7,1,1569560402,1654184979,NULL),(692816579,7780901236,2,7,1,1562821667,1654042316,NULL),(696868814,3781745917,1,2,13,1585239554,1585765154,NULL),(701593022,4384972092,1,2,13,1561716311,1562241911,NULL),(702327095,8398572223,4,7,1,1561853260,1562378860,NULL),(702387756,6438335107,4,7,1,1587268962,1587794562,NULL),(703231515,2738265631,1,2,13,1581019440,1581545040,NULL),(703921997,1874800427,2,7,1,1560785730,1654071875,NULL),(705539666,1922091049,1,25,2054,1571411500,1654263368,NULL),(707403804,5240675319,4,7,1,1586065243,1586590843,NULL),(714494021,4913049507,1,5,693,1626119230,1654068103,NULL),(718359677,6321091292,2,7,1,1577599674,1578125274,NULL),(723361119,123140472,1,1,121,1649066510,1653946482,NULL),(728936203,4569830837,4,7,1,1573858878,1574384478,NULL),(730673909,5123008027,1,5,381,1638444291,1653812553,NULL),(740633568,1039072156,1,27,557,1631661023,1654158078,NULL),(741201508,2835481957,1,2,13,1560351897,1560877497,NULL),(744195200,6401534557,1,23,762,1622985356,1653740945,NULL),(747337920,2546838297,1,2,13,1568519642,1569045242,NULL),(748532032,4346789449,1,3,665,1627404459,1654220439,NULL),(749128480,8295457088,2,7,1,1569624446,1570150046,NULL),(749164860,5068024302,4,7,1,1631174347,1654005031,NULL),(751164499,3265727611,1,21,1800,1581544587,1654149772,NULL),(752116829,1356438402,2,7,1,1633946672,1654230839,NULL),(753334514,9078039847,2,7,1,1590586777,1591112377,NULL),(753446635,5492265836,4,7,1,1564604219,1653806599,NULL),(754879063,4105533912,2,7,1,1636476647,1653987573,NULL),(756308558,5706382035,4,7,1,1572454904,1654231178,NULL),(756482174,789480774,4,7,1,1642466119,1654252815,NULL),(758776037,4885585677,4,7,1,1641630858,1653922920,NULL),(759115955,3044775905,2,7,1,1586237784,1586763384,NULL),(760608813,1894970484,1,6,2188,1566020250,1654248975,NULL),(762692395,7704783717,4,7,1,1563238981,1563764581,NULL),(770753976,4556752600,1,25,1673,1586759247,1654250214,NULL),(773974306,849406888,1,2,13,1576639988,1577165588,NULL),(775650891,4398373543,1,16,1806,1580925847,1653765657,NULL),(777121199,5393067908,2,7,1,1574860895,1654036682,NULL),(777869685,3947524773,1,2,13,1569563654,1570089254,NULL),(783168644,8919246246,1,19,1563,1590623044,1653669908,NULL),(787967753,3103489868,2,7,1,1578173778,1578699378,NULL),(789046272,3911628361,1,17,2090,1569896048,1654188111,NULL),(789894236,1577761292,2,7,1,1578252043,1578777643,NULL),(790318571,8399733522,1,2,13,1568169966,1568695566,NULL),(790320351,6362677151,1,2,137,1648295937,1653821703,NULL),(790743909,6852811592,1,7,1962,1574934295,1654051864,NULL),(791600081,383216146,2,7,1,1588880671,1589406271,NULL),(793309469,3786427032,2,7,1,1577893915,1578419515,NULL),(793712489,6948195993,1,2,13,1590492605,1591018205,NULL),(803583898,2857867547,4,7,1,1582413342,1582938942,NULL),(809265160,8306961432,1,2,13,1586899054,1587424654,NULL),(815483809,2275392416,4,7,1,1574177853,1574703453,NULL),(821903546,5097284905,1,2,13,1560224283,1560749883,NULL),(823574706,4653149674,2,7,1,1582403216,1653691513,NULL),(824968575,1762953228,1,2,13,1582767570,1583293170,NULL),(827220286,4221690994,2,7,1,1564503115,1565028715,NULL),(834965479,2444197424,2,7,1,1587911154,1588436754,NULL),(839217279,9940309890,1,2,13,1578937040,1579462640,NULL),(846317890,7209839811,2,7,1,1568276500,1653706142,NULL),(846374773,2559568212,1,2,13,1566300803,1566826403,NULL),(849554934,8331756475,1,4,18,1653187046,1653917156,NULL),(854605917,8646301855,1,8,731,1624650197,1654135520,NULL),(855653055,5131044324,4,7,1,1639118040,1654084194,NULL),(856996376,9739798111,4,7,1,1573477754,1574003354,NULL),(857833096,2267528866,2,7,1,1582704049,1583229649,NULL),(861738183,9654129070,2,7,1,1567458333,1567983933,NULL),(866933441,2479340132,2,7,1,1567070243,1653868682,NULL),(877785928,3124349834,2,7,1,1567695906,1568221506,NULL),(880055656,4841028573,1,16,185,1646327671,1653808957,NULL),(883354652,616007787,2,7,1,1633566564,1653967626,NULL),(885813168,7283740729,2,7,1,1570277143,1653775732,NULL),(891766013,943047188,1,19,441,1636109041,1653916459,NULL),(893068961,4079148249,4,7,1,1578555080,1653837605,NULL),(896442976,8170641167,2,7,1,1589633868,1653960460,NULL),(905901545,6289060102,2,7,1,1590701071,1591226671,NULL),(925909485,7215450250,1,2,13,1566857043,1567382643,NULL),(926326122,5583883812,2,7,1,1632034336,1654151994,NULL),(927366624,6398041088,1,4,2172,1566257802,1653837172,NULL),(933780409,1661080655,2,7,1,1568046636,1654100473,NULL),(935961903,2861981553,2,7,1,1632919416,1654184087,NULL),(938429553,7448867322,1,19,2041,1571389007,1653708528,NULL),(939245770,7854009443,1,2,13,1564931073,1565456673,NULL),(942393549,3647001099,2,7,1,1560102995,1654253010,NULL),(943302415,2928780245,2,7,1,1582893062,1583418662,NULL),(956409481,1552825412,4,7,1,1584818358,1585343958,NULL),(959972101,1651950241,1,11,1919,1576512359,1653901729,NULL),(962846011,9254318773,1,10,2272,1562316216,1653936367,NULL),(967425439,2373865838,1,4,47,1651954890,1653854820,NULL),(969936276,8966477764,1,13,1657,1587270932,1654098492,NULL),(972568945,7084314628,1,2,13,1561847449,1562373049,NULL),(975515553,9003417202,1,2,2141,1567766969,1654093536,NULL),(982357149,2644568520,2,7,1,1571076002,1571601602,NULL),(987625594,3899779088,2,7,1,1578365453,1578891053,NULL),(990485973,7152036608,1,13,634,1628389657,1653971089,NULL),(994302488,6757878276,4,7,1,1585239014,1654126851,NULL),(995756442,7785072788,2,7,1,1587296200,1587821800,NULL),(1002828070,8304050705,1,8,2005,1572918874,1653771587,NULL),(1005464386,9468545119,4,7,1,1567248277,1653744752,NULL),(1006855699,8397555454,2,7,1,1567023944,1653986054,NULL),(1008706451,7809992049,2,7,1,1577768322,1654163809,NULL),(1008913268,309886564,1,7,58,1651343325,1653691627,NULL),(1011588814,4013229155,4,7,1,1581900156,1653720652,NULL),(1015679719,1359239585,2,7,1,1634820113,1653866729,NULL),(1017300838,5235187719,1,8,517,1632851616,1653707526,NULL),(1017366862,6472463931,1,6,2157,1566762885,1653741338,NULL),(1019053172,2178280798,2,7,1,1562189141,1653731145,NULL),(1030611423,8622809673,2,7,1,1650144938,1654113395,NULL),(1032035427,845323951,1,15,487,1634089126,1653745188,NULL),(1035316148,6614095315,1,19,2089,1569604108,1653858745,NULL),(1038041724,5505442140,1,11,545,1631834426,1653823555,NULL),(1038826926,3048134182,1,2,13,1571395253,1571920853,NULL),(1040882844,2045577150,2,7,1,1627125846,1653988336,NULL),(1047376061,3132437631,1,14,2146,1567157305,1653702851,NULL),(1047861908,1887045366,2,7,1,1651370343,1653883726,NULL),(1049029766,1207572338,4,7,1,1577049237,1577574837,NULL),(1052344844,609324091,1,4,378,1638499262,1653745171,NULL),(1054497155,1305202405,1,23,2011,1573059873,1654175956,NULL),(1055692388,4103938465,2,7,1,1579254407,1654070050,NULL),(1058916591,7528219316,1,16,2300,1561031809,1653789536,NULL),(1064484499,7393701640,4,7,1,1577974583,1578500183,NULL),(1068931888,3028784490,1,1,1957,1575142762,1654050322,NULL),(1069172737,4928994025,4,7,1,1591020157,1654035837,NULL),(1069406498,3995217987,4,7,1,1631147476,1654087611,NULL),(1071233584,6323482523,1,27,1913,1576862396,1654033300,NULL),(1075340211,128773267,2,7,1,1569689596,1570215196,NULL),(1082593295,9336921307,4,7,1,1628363775,1653831654,NULL),(1084827339,8061619680,1,17,1866,1578645747,1653907206,NULL),(1086345938,8413381351,4,7,1,1576140318,1576665918,NULL),(1090585094,7409889334,1,19,93,1650179506,1653955275,NULL),(1095224190,609762263,2,7,1,1629432639,1653953881,NULL),(1096836669,9431159322,4,7,1,1559963181,1653886430,NULL),(1097175843,6184721599,4,7,1,1645522970,1654060800,NULL),(1098304446,1247757886,4,7,1,1590823997,1653794819,NULL),(1099774242,4725826728,2,7,1,1561476396,1562001996,NULL),(1104704856,9435930277,2,7,1,1590962749,1591488349,NULL),(1107321951,6107215767,1,8,788,1622454246,1654237370,NULL),(1110120235,6929589572,1,12,313,1641234737,1653870924,NULL),(1117913123,9364089669,1,13,2045,1571689370,1654162130,NULL),(1122308145,3585079948,2,7,1,1569261735,1569787335,NULL),(1122783032,8438146142,4,7,1,1589716256,1590241856,NULL),(1123926401,63128880,4,7,1,1560538894,1561064494,NULL),(1124608812,2342197991,4,7,1,1587280683,1587806283,NULL),(1126038322,8624569010,1,9,101,1649932721,1654017274,NULL),(1130486034,4651309674,2,7,1,1571318195,1654085868,NULL),(1132402356,3001693389,1,2,13,1588760445,1589286045,NULL),(1138152153,2001205157,1,2,13,1569810099,1570335699,NULL),(1144326123,8967755068,4,7,1,1582757129,1654071742,NULL),(1150352260,5458025141,4,7,1,1648134432,1654001549,NULL),(1151099660,6239458539,1,8,633,1628450655,1653984544,NULL),(1151189816,8388447001,1,1,305,1641369173,1653667749,NULL),(1151837847,5093722079,4,7,1,1568982823,1654058939,NULL),(1155308351,2016806002,4,7,1,1569462000,1569987600,NULL),(1155742907,3741833776,2,7,1,1624225817,1654206621,NULL),(1157824972,9559671304,1,2,13,1560340332,1560865932,NULL),(1161641468,1708705891,2,7,1,1587288490,1587814090,NULL),(1163240912,4638920935,1,27,2167,1566741138,1654152094,NULL),(1165082600,3468264245,4,7,1,1652013589,1653864623,NULL),(1166165506,1462276815,1,2,789,1622228953,1654043830,NULL),(1166628937,4439494721,4,7,1,1563078557,1654009001,NULL),(1167457819,8236481873,2,7,1,1566252196,1566777796,NULL),(1174052017,8733451434,1,17,2085,1569994406,1654086074,NULL),(1176733057,4855253711,4,7,1,1642278150,1653988388,NULL),(1178990925,448298650,1,1,526,1632871034,1654080232,NULL),(1181184998,8992592299,2,7,1,1575486241,1576011841,NULL),(1181939035,1146377828,2,7,1,1651153092,1654099809,NULL),(1182561500,6295038119,1,7,613,1629429838,1654156002,NULL),(1185147937,9007639607,1,5,442,1636320319,1654148740,NULL),(1185704329,6774908524,2,7,1,1624937880,1654121276,NULL),(1198180359,5512267863,4,7,1,1589732853,1590258453,NULL),(1198650866,511955888,1,2,13,1572664931,1573190531,NULL),(1199099811,2535150879,2,7,1,1623029956,165...\G +INSERT INTO `user_items` VALUES (1167064,5412259060,3,20,2,1632245312,1632245312,NULL),(1372529,5146048786,4,21,73,1565006829,1565006829,NULL),(2097648,725028234,3,20,8,1567993230,1567993230,NULL),(2266592,4064412803,4,24,13,1586626996,1586626996,NULL),(2387797,7801190116,4,27,10,1570298529,1570298529,NULL),(2841086,1311869719,4,23,15,1563045732,1563045732,NULL),(2911804,7979820705,4,28,3,1586653410,1586653410,NULL),(5496531,6421980563,3,18,61,1565146067,1565146067,NULL),(5931034,5574217942,4,28,1,1561858846,1561858846,NULL),(7061759,9043113439,4,24,16,1575874411,1575874411,NULL),(7200298,7872912856,4,22,6,1643365313,1643365313,NULL),(7728536,7510718109,4,27,8,1566538873,1566538873,NULL),(8282180,6471247629,4,24,4,1626124507,1626124507,NULL),(8939473,576315856,3,20,12,1577420144,1577420144,NULL),(9101912,2339734049,4,21,14,1637320482,1637320482,NULL),(9191803,5895930634,3,18,68,1573540908,1573540908,NULL),(10211500,7809992049,4,30,3,1577768322,1577768322,NULL),(11223428,8506930990,4,26,8,1572474710,1572474710,NULL),(11371594,7828860175,4,24,4,1648478791,1648478791,NULL),(11648245,8933883439,3,19,7,1579701977,1579701977,NULL),(11995503,4905952294,4,25,18,1576907523,1576907523,NULL),(12282553,4158582762,3,19,5,1590400763,1590400763,NULL),(12732335,1372785915,4,22,20,1588368801,1588368801,NULL),(13708998,748293044,4,26,2,1640530962,1640530962,NULL),(14620748,7001133697,4,30,1,1566561445,1566561445,NULL),(15208860,8307649028,4,29,1,1648924242,1648924242,NULL),(15610621,3921776698,4,25,6,1567298267,1567298267,NULL),(15878994,1433445013,4,22,8,1626602901,1626602901,NULL),(16119346,3438762079,4,27,2,1576868062,1576868062,NULL),(16663224,5994768984,4,27,2,1560811232,1560811232,NULL),(16916731,8585441543,4,24,6,1569719551,1569719551,NULL),(17793483,9629437843,4,26,4,1571128675,1571128675,NULL),(18083339,2483377704,4,24,1,1650326415,1650326415,NULL),(18282622,9144056834,4,21,14,1627104500,1627104500,NULL),(18698154,2839002201,3,20,14,1580505991,1580505991,NULL),(20490958,2814771224,3,18,26,1584275451,1584275451,NULL),(21734720,390289479,4,24,9,1576299192,1576299192,NULL),(21963761,1674216717,4,23,21,1570843731,1570843731,NULL),(22450517,6960204496,4,22,20,1569264064,1569264064,NULL),(22857459,2880934344,4,21,12,1627206344,1627206344,NULL),(22929059,118549906,4,22,16,1587155422,1587155422,NULL),(23016506,3747330849,4,29,2,1570135029,1570135029,NULL),(24103810,9807378590,4,24,8,1565912354,1565912354,NULL),(24392111,2805642848,4,26,13,1587790238,1587790238,NULL),(25485406,2947852037,3,18,25,1567214381,1567214381,NULL),(26084651,8696962628,4,25,3,1564230466,1564230466,NULL),(26191337,3052528693,4,25,12,1570276736,1570276736,NULL),(26620043,5438005994,4,22,10,1567223271,1567223271,NULL),(26725600,9922407907,3,17,178,1565708286,1565708286,NULL),(26831259,1567190397,4,30,2,1561027721,1561027721,NULL),(27187200,5007468598,4,23,19,1563292672,1563292672,NULL),(28585653,7585299854,3,17,93,1582447624,1582447624,NULL),(28755305,6184304006,3,17,180,1575767338,1575767338,NULL),(29286621,4961895490,3,18,45,1588334454,1588334454,NULL),(29897478,6956028410,4,23,29,1586589570,1586589570,NULL),(30001139,5914942755,4,28,1,1587528220,1587528220,NULL),(30996205,3995217987,4,23,1,1631147476,1631147476,NULL),(32304491,7694980953,4,23,12,1584624145,1584624145,NULL),(32533047,765018073,4,27,3,1580644853,1580644853,NULL),(33354152,3314285979,4,26,10,1571934114,1571934114,NULL),(35557129,8911536604,4,23,23,1566253638,1566253638,NULL),(36295432,6466358321,3,20,3,1633592253,1633592253,NULL),(36309662,4615057146,4,24,7,1579187172,1579187172,NULL),(36406119,5703570648,4,24,11,1575400927,1575400927,NULL),(37536630,8050912216,4,22,10,1624804342,1624804342,NULL),(37669152,6122055585,3,17,41,1628817184,1628817184,NULL),(37757725,3222320725,4,24,13,1568041137,1568041137,NULL),(39326093,2507834473,4,21,55,1583707270,1583707270,NULL),(39403566,456333076,3,17,187,1589668318,1589668318,NULL),(39951978,2108358588,4,28,1,1626967175,1626967175,NULL),(40609059,2903933247,3,17,175,1578792266,1578792266,NULL),(42174996,7193877728,3,17,102,1560710253,1560710253,NULL),(42880366,1305202405,4,23,17,1573059873,1573059873,NULL),(43645905,6531864118,4,23,15,1568988005,1568988005,NULL),(43833387,7417028826,4,25,13,1588235736,1588235736,NULL),(45064318,8333419683,4,22,5,1587584977,1587584977,NULL),(45343704,7681190795,4,22,26,1580425039,1580425039,NULL),(45879277,9218380579,3,18,36,1587610434,1587610434,NULL),(46303304,9904038980,3,18,10,1639932222,1639932222,NULL),(47311592,6022961798,4,25,7,1563462956,1563462956,NULL),(48025423,229642563,4,24,2,1632030097,1632030097,NULL),(48781433,5264321007,3,18,62,1586395732,1586395732,NULL),(48986921,4017267208,3,20,10,1590904331,1590904331,NULL),(49802390,9360026334,4,26,10,1587086490,1587086490,NULL),(51711318,9865277994,4,24,9,1585109294,1585109294,NULL),(52003434,4351426860,4,21,18,1641009607,1641009607,NULL),(54475278,7205759177,4,26,6,1578843146,1578843146,NULL),(56075486,116199062,4,23,11,1575032828,1575032828,NULL),(57027819,368611111,4,27,3,1585185244,1585185244,NULL),(57647515,1002299276,3,19,7,1633901037,1633901037,NULL),(57650986,8678827236,3,17,172,1588485042,1588485042,NULL),(58273927,2000095052,4,29,2,1589044750,1589044750,NULL),(58316618,5950756126,3,17,170,1582896059,1582896059,NULL),(58806035,9821831355,4,30,1,1561132715,1561132715,NULL),(59607041,1825458989,4,21,49,1585305519,1585305519,NULL),(60156807,587297302,4,22,11,1584854974,1584854974,NULL),(60837813,4266022751,3,20,11,1575177027,1575177027,NULL),(62167640,6986560519,3,17,28,1630646918,1630646918,NULL),(63297564,1230783676,4,24,13,1560599013,1560599013,NULL),(63339972,7882798254,4,25,3,1591183011,1591183011,NULL),(63696180,5668017560,4,27,1,1635350848,1635350848,NULL),(64270784,4025654791,4,30,2,1576611084,1576611084,NULL),(64393162,3317494502,4,21,96,1581756405,1581756405,NULL),(64399859,1979926181,4,22,27,1565451559,1565451559,NULL),(65360524,5134859477,3,20,15,1567806926,1567806926,NULL),(65947875,4004355595,4,24,2,1630495323,1630495323,NULL),(66037930,9538988809,4,22,22,1567361019,1567361019,NULL),(67372596,4463708932,4,27,7,1562440371,1562440371,NULL),(67907636,3899779088,3,19,26,1578365453,1578365453,NULL),(69931534,356865215,4,21,90,1571570738,1571570738,NULL),(70680092,5341959060,4,24,13,1590622798,1590622798,NULL),(71077105,3290431575,4,21,13,1630601629,1630601629,NULL),(72294676,8349782200,4,28,2,1579971207,1579971207,NULL),(72494070,9420888937,4,28,7,1576106865,1576106865,NULL),(72788675,5557721752,3,20,4,1562333876,1562333876,NULL),(73722772,6253370109,4,29,4,1560799710,1560799710,NULL),(74254240,6612984888,4,24,9,1561622123,1561622123,NULL),(75604438,2016029700,3,19,27,1562648948,1562648948,NULL),(76190183,8822081629,4,21,18,1650262256,1650262256,NULL),(76329619,9319613392,3,17,168,1577681003,1577681003,NULL),(76370542,995800663,4,29,3,1588987740,1588987740,NULL),(77283924,1038606032,3,17,92,1561496418,1561496418,NULL),(77800799,5904952520,4,23,7,1631304150,1631304150,NULL),(77961567,9743673366,4,29,3,1589497081,1589497081,NULL),(78427342,7733435611,3,20,9,1583777199,1583777199,NULL),(78467619,7421273511,4,22,12,1581458357,1581458357,NULL),(78927611,7903850145,4,25,5,1578632103,1578632103,NULL),(79070384,4206080407,4,28,1,1627397289,1627397289,NULL),(79211005,7371657538,4,30,2,1580766721,1580766721,NULL),(79250207,4341480494,4,21,13,1633760180,1633760180,NULL),(79903738,2353850048,3,20,13,1575028207,1575028207,NULL),(80306538,3647104934,3,20,11,1560157305,1560157305,NULL),(80580285,6285999353,3,19,15,1573113959,1573113959,NULL),(80796602,4941132196,4,22,3,1587607772,1587607772,NULL),(81107958,9616641303,4,23,5,1653437592,1653437592,NULL),(81137580,5961176818,4,24,4,1566056718,1566056718,NULL),(83179616,3887370829,4,21,94,1590879374,1590879374,NULL),(84033206,1066980289,3,18,16,1636901749,1636901749,NULL),(84130837,508250362,4,30,1,1628233544,1628233544,NULL),(84523739,5281572898,4,25,14,1564302103,1564302103,NULL),(84536630,8082579840,4,28,9,1561902471,1561902471,NULL),(84797898,1033193666,4,25,1,1653255883,1653255883,NULL),(87992453,8767177037,4,29,1,1651978143,1651978143,NULL),(90242344,4074421765,4,27,1,1577700522,1577700522,NULL),(90609150,7593060419,4,21,11,1642059229,1642059229,NULL),(90728091,5794602076,4,21,88,1573076469,1573076469,NULL),(90841349,4160547300,4,23,19,1573748696,1573748696,NULL),(91133374,2529715186,4,26,3,1640630729,1640630729,NULL),(91337623,5494272488,3,19,10,1625667765,1625667765,NULL),(92715447,8677333565,3,19,15,1568047630,1568047630,NULL),(93730962,3417486755,4,22,21,1581567199,1581567199,NULL),(94069592,1207770714,4,30,1,1561360516,1561360516,NULL),(94074374,6805138659,3,17,25,1622770852,1622770852,NULL),(94386694,3231218369,4,23,5,1560995786,1560995786,NULL),(94546811,8012522091,4,23,5,1646546306,1646546306,NULL),(94779248,1914315780,3,17,93,1579531102,1579531102,NULL),(95455427,1565068033,4,29,4,1587990668,1587990668,NULL),(100255142,59529696,4,24,10,1578895908,1578895908,NULL),(100322934,117083620,4,23,5,1643906924,1643906924,NULL),(100622227,1694975723,4,24,17,1571111811,1571111811,NULL),(100638754,2256362148,4,27,1,1641717721,1641717721,NULL),(101359708,6647443611,3,17,31,1634518971,1634518971,NULL),(101665296,5962983598,4,25,13,1570881546,1570881546,NULL),(102229739,3113682626,3,20,6,1586190832,1586190832,NULL),(102542611,1567627558,4,24,13,1564373033,1564373033,NULL),(105195108,6447626037,4,25,4,1560254309,1560254309,NULL),(105431072,3655212919,4,30,2,1582494970,1582494970,NULL),(107103830,1287403171,3,20,4,1642864699,1642864699,NULL),(108601414,7215450250,4,22,7,1566857043,1566857043,NULL),(109700971,4720417724,4,21,33,1569596016,1569596016,NULL),(109838268,659679181,4,25,4,1579906455,1579906455,NULL),(109875589,5086194336,4,21,71,1579581791,1579581791,NULL),(110469461,7875360880,4,26,2,1652038636,1652038636,NULL),(110975472,5876156859,3,19,24,1571073994,1571073994,NULL),(112426413,9866871642,4,30,5,1584243788,1584243788,NULL),(112667816,62507429,4,21,14,1650613288,1650613288,NULL),(112820784,219472299,4,22,27,1586150428,1586150428,NULL),(112967004,5465512081,3,19,21,1588898761,1588898761,NULL),(113356246,2124884098,4,23,1,1652350296,1652350296,NULL),(113697421,1962418910,3,18,4,1630696728,1630696728,NULL),(115772661,704243451,3,19,46,1590192627,1590192627,NULL),(115817743,7146548684,4,23,1,1651243019,1651243019,NULL),(116496493,8355441835,4,27,2,1578848828,1578848828,NULL),(116680822,2847243588,4,24,7,1581692512,1581692512,NULL),(117602681,8653180388,4,26,2,1646861538,1646861538,NULL),(118118301,6290586169,4,23,4,1625171151,1625171151,NULL),(118530127,8141571665,4,24,5,1643816234,1643816234,NULL),(119359261,2131800134,4,26,10,1581748480,1581748480,NULL),(120812569,134031420,3,18,39,1586842620,1586842620,NULL),(120959744,3761357963,3,17,88,1578783067,1578783067,NULL),(122791626,4813562568,4,21,47,1562214462,1562214462,NULL),(123317569,7634954996,4,30,1,1642536611,1642536611,NULL),(123906537,9354318806,3,19,8,1633693046,1633693046,NULL),(125102460,745302491,3,20,12,1583608239,1583608239,NULL),(125899947,3819822059,4,29,1,1565809573,1565809573,NULL),(126711139,6647443611,3,20,3,1634518971,1634518971,NULL),(127290446,3166786152,4,25,4,1640029945,1640029945,NULL),(127524625,5148696198,4,21,53,1581963503,1581963503,NULL),(127636756,3782090459,4,22,30,1582909559,1582909559,NULL),(128482909,4123413498,4,25,9,1563236652,1563236652,NULL),(130341857,1964497590,4,23,19,1590098961,1590098961,NULL),(133607721,7882798254,4,24,6,1591183011,1591183011,NULL),(134132854,5049030005,3,19,36,1578886618,1578886618,NULL),(134299696,9386062156,4,30,2,1582139496,1582139496,NULL),(136540624,1055838121,4,25,10,1579101414,1579101414,NULL),(137406087,3198356750,3,17,88,1571588682,1571588682,NULL),(138535375,5590559640,4,29,1,1584964691,1584964691,NULL),(139782661,8462850297,4,26,6,1579320805,1579320805,NULL),(140486747,9960661997,4,22,20,1590091763,1590091763,NULL),(140986203,2618909127,3,17,184,1582810553,1582810553,NULL),(141971910,4741248810,4,24,2,1649652122,1649652122,NULL),(142316559,4677334043,4,27,8,1569439488,1569439488,NULL),(142382906,5829503856,4,24,10,1587616129,1587616129,NULL),(142410900,6772469456,3,18,15,1625495360,1625495360,NULL),(143643773,9674407097,4,26,11,1578895816,1578895816,NULL),(143664809,2491443843,4,22,15,1560273554,1560273554,NULL),(144140906,368611111,4,25,7,1585185244,1585185244,NULL),(144248272,8828409156,4,21,13,1629309530,1629309530,NULL),(144514842,1369216108,4,21,20,1626397054,1626397054,NULL),(144936403,6612984888,3,20,6,1561622123,1561622123,NULL),(145110484,9357818395,3,19,32,1574606889,1574606889,NULL),(145912952,9693382681,3,20,3,1572994028,1572994028,NULL),(148880990,6256793280,4,30,1,1650832871,1650832871,NULL),(149525165,5137550823,4,29,4,1582574341,1582574341,NULL),(149748950,1951012099,4,25,2,1584125235,1584125235,NULL),(150094253,60998754,4,26,2,1634222824,1634222824,NULL),(150256978,4163852424,4,23,3,1579936474,1579936474,NULL),(152785116,9599965088,4,27,11,1586718835,1586718835,NULL),(153156263,1972300112,3,20,13,1577692415,1577692415,NULL),(153917298,5032488242,4,24,12,1581156878,1581156878,NULL),(154507851,314620446,4,24,23,1587698481,1587698481,NULL),(155559813,4795034632,3,20,1,1650681236,1650681236,NULL),(155651618,1634241546,3,20,2,1642751365,1642751365,NULL),(156094581,1801587442,4,22,8,1576965652,1576965652,NULL),(156971434,9063065047,4,25,1,1633915144,1633915144,NULL),(157767870,3103489868,4,22,12,1578173778,1578173778,NULL),(159429320,3734722330,4,29,1,1640219679,1640219679,NULL),(161071475,1004906683,4,29,3,1572499477,1572499477,NULL),(161167854,1832724010,4,28,3,1571399922,1571399922,NULL),(163156024,7905462630,4,25,11,1566679079,1566679079,NULL),(163936912,7749966038,4,24,17,1570419945,1570419945,NULL),(164076919,2060865880,3,19,20,1576722547,1576722547,NULL),(164124144,1470235579,4,26,3,1571862499,1571862499,NULL),(164656789,3829099405,4,30,1,1560644998,1560644998,NULL),(164863496,2554758178,3,18,31,1584280639,1584280639,NULL),(164953317,1847041084,4,24,18,1565584570,1565584570,NULL),(165723855,6500742668,4,23,12,1565145928,1565145928,NULL),(166357115,8975445153,4,22,29,1578589316,1578589316,NULL),(166403035,3957093570,4,27,1,1650100276,1650100276,NULL),(166769743,1013508916,4,30,1,1582249998,1582249998,NULL),(169146143,4792962987,4,26,2,1646640885,1646640885,NULL),(170961569,1072200992,4,26,2,1625755618,1625755618,NULL),(171925575,8515635826,3,19,46,1560161725,1560161725,NULL),(172032561,8543797220,4,22,1,1640377500,1640377500,NULL),(172175981,2016083403,4,21,48,1567453416,1567453416,NULL),(172401537,5477866325,4,30,1,1622099950,1622099950,NULL),(174482360,3849765663,4,26,16,1589794717,1589794717,NULL),(174748901,4394077262,4,21,14,1646200930,1646200930,NULL),(175161265,6470524950,3,18,10,1634028543,1634028543,NULL),(179221924,6178948320,4,28,4,1572397081,1572397081,NULL),(179643697,7526302602,4,29,1,1585044424,1585044424,NULL),(179812209,8578661958,3,18,24,1573142794,1573142794,NULL),(179979547,1015109221,4,22,16,1570507970,1570507970,NULL),(181052046,2001205157,4,23,16,1569810099,1569810099,NULL),(182743664,5208752696,4,29,2,1573027694,1573027694,NULL),(182758201,2194504692,4,21,85,1577559236,1577559236,NULL),(182813755,7796736035,4,23,17,1565145185,1565145185,NULL),(184145805,2997719929,4,25,1,1650387296,1650387296,NULL),(185596233,2724699047,4,27,3,1581901036,1581901036,NULL),(185689397,357434720,4,23,2,1629113281,1629113281,NULL),(185780656,1009449207,4,23,2,1644734379,1644734379,NULL),(186050363,6536764919,3,20,10,1563831217,1563831217,NULL),(186197775,7972872377,4,25,3,1563630824,1563630824,NULL),(189183596,4283936950,4,30,1,1622854404,1622854404,NULL),(190012361,7659700327,4,25,3,1569822082,1569822082,NULL),(190066620,3404104369,4,30,3,1585523273,1585523273,NULL),(190527654,5770456059,4,30,6,1582921832,1582921832,NULL),(190713895,8413381351,4,27,1,1576140318,1576140318,NULL),(191618143,443204365,4,29,3,1580107679,1580107679,NULL),(192017109,7859564438,4,28,2,1581681203,1581681203,NULL),(192673468,311949929,3,19,28,1567255520,1567255520,NULL),(192752267,8910552320,4,26,2,1565449862,1565449862,NULL),(193151496,5175950813,4,25,12,1581742669,1581742669,NULL),(194129143,9208280540,4,29,6,1565289845,1565289845,NULL),(195325637,9203335141,4,21,87,1587486726,1587486726,NULL),(195486489,255419101,4,28,2,1627611055,1627611055,NULL),(196732215,4933237640,4,28,4,1628573225,1628573225,NULL),(197761274,8663172317,4,29,3,1578112832,1578112832,NULL),(197809920,2899587759,4,25,17,1587972493,1587972493,NULL),(198506069,4917750145,3,20,7,1568762772,1568762772,NULL),(199365789,4705264142,4,28,8,1590006725,1590006725,NULL),(199717276,5033763738,4,24,19,1583996671,1583996671,NULL),(200598115,6826515290,4,28,6,1582161251,1582161251,NULL),(201019235,5374747539,4,25,10,1566845891,1566845891,NULL),(201198221,3600053545,4,24,9,1577691593,1577691593,NULL),(201617415,7272040180,4,24,1,1623350344,1623350344,NULL),(201950194,1707335903,4,24,10,1577939163,1577939163,NULL),(202038329,1651950241,3,20,13,1576512359,1576512359,NULL),(203647202,6717106654,4,30,1,1563084916,1563084916,NULL),(204198272,8802333075,3,18,27,1590375840,1590375840,NULL),(204368492,9702958330,4,23,4,1639623200,1639623200,NULL),(206980258,5720543116,4,26,2,1588750103,1588750103,NULL),(207500917,194196024,4,22,11,1571224657,1571224657,NULL),(208328153,7235847496,4,22,3,1649342937,1649342937,NULL),(209173848,7263301926,3,18,6,1629607294,1629607294,NULL),(209999949,8657902957,4,26,4,1570474262,1570474262,NULL),(211571663,1549200348,4,30,5,1572057841,1572057841,NULL),(211921995,2673777690,3,20,6,1560126504,1560126504,NULL),(212734023,4484251889,3,20,10,1581691461,1581691461,NULL),(213246237,25188488,4,24,9,1590518601,1590518601,NULL),(214534567,9493686731,3,17,34,1643823702,1643823702,NULL),(214620494,5544251981,3,20,1,1626342169,1626342169,NULL),(214838923,6520097180,4,28,1,1622794610,1622794610,NULL),(215615017,9556023071,3,18,55,1562856308,1562856308,NULL),(215677993,4628076318,4,22,23,1562800240,1562800240,NULL),(217661905,6793431284,4,23,20,1564431371,1564431371,NULL),(217879329,195265593,4,24,8,1638834540,1638834540,NULL),(218083905,6961717218,3,17,184,1585625312,1585625312,NULL),(219317493,8422144333,4,25,17,1574580459,1574580459,NULL),(219360443,6509033322,3,18,39,1576493679,1576493679,NULL),(219597875,9247994774,4,24,15,1572548139,1572548139,NULL),(220334019,6961717218,3,19,49,1585625312,1585625312,NULL),(220548985,9892081727,4,30,1,1582126688,1582126688,NULL),(221327350,2024808466,4,25,20,1572139549,1572139549,NULL),(221334154,2379036423,4,21,41,1581339071,1581339071,NULL),(221525818,1379969452,4,24,3,1587000442,1587000442,NULL),(221726430,7855959284,4,24,7,1582822245,1582822245,NULL),(222253783,1801122974,4,26,7,1585602702,1585602702,NULL),(223289150,4812929717,4,22,26,1584303188,1584303188,NULL),(224839478,2061906325,3,19,17,1570844349,1570844349,NULL),(224920104,9401602633,4,29,4,1653017295,1653017295,NULL),(225351279,7656458651,4,26,5,1575911947,1575911947,NULL),(225656773,7959507962,4,21,15,1571106769,1571106769,NULL),(227090750,9169128111,4,26,8,1570987689,1570987689,NULL),(227819859,6046525626,4,25,7,1575253635,1575253635,NULL),(228210087,7045650942,4,29,4,1584206601,1584206601,NULL),(228647353,7582862169,4,26,2,1630482666,1630482666,NULL),(229489187,3380229762,4,30,4,1574997476,1574997476,NULL),(229706304,8340363581,4,21,80,1582740632,1582740632,NULL),(231422745,3895853897,4,29,1,1640592525,1640592525,NULL),(233194016,1149379259,4,26,4,1642344655,1642344655,NULL),(234595445,123140472,4,22,9,1649066510,1649066510,NULL),(235106510,8522381338,3,20,19,1575705988,1575705988,NULL),(235472007,9914420330,4,25,8,1583331839,1583331839,NULL),(235759411,5305844675,3,17,183,1582267779,1582267779,NULL),(236051553,6241632438,4,24,3,1635602365,1635602365,NULL),(236152627,8293120032,4,24,4,1639037537,1639037537,NULL),(236589013,8921078342,3,17,44,1632851806,1632851806,NULL),(237630836,8851370204,3,18,57,1569143959,1569143959,NULL),(237763658,6283471898,4,27,3,1652647704,1652647704,NULL),(238332470,9963097976,4,25,2,1636072737,1636072737,NULL),(238513237,8788929015,4,26,12,1580442454,1580442454,NULL),(238826659,931925534,4,28,7,1588065820,1588065820,NULL),(239307107,4956404903,4,25,12,1584093320,1584093320,NULL),(240629200,7166513992,4,27,8,1579518192,1579518192,NULL),(240736626,8211730064,4,26,1,1622814234,1622814234,NULL),(241045009,6802482714,4,23,13,1580235452,1580235452,NULL),(241656694,6291075776,4,23,1,1652999835,1652999835,NULL),(241676621,2326624347,4,22,17,1572933445,1572933445,NULL),(2419159...\G -# Query 60: ID 0x4B675AC0EA8F5E72 +# Query 59: ID 0x0FDB82B41F5B3844 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 465.7ms 123.8ms 342.0ms 232.9ms 342.0ms 342.0ms +# Count 1 5215 +# Exec time 0 1.11s 11.0us 98.5ms 213.6us 531.0us 31.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1061,13 +1049,27 @@ INSERT INTO `user_login_bonuses` VALUES (3134447,8767177037,4,7,1,1651978143,165 # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_devices` VALUES (38256,6994093262,'1c131378-9090-4353-a094-4db47df536ef',3,1638359002,1638359002,NULL),(468737,9001362973,'3dfebe07-0ed3-4b11-95aa-0433661ad5e9',2,1628559795,1628559795,NULL),(498368,8484577995,'0dd71ae7-66a3-4d95-9a96-21c9a41334cf',3,1651298037,1651298037,NULL),(602255,7870436520,'c9ecc455-3348-48b3-a3d3-09e56010baf8',3,1573300163,1573300163,NULL),(1150185,4119213451,'eca09064-2b08-4fcb-b6c9-a2ee2fc90152',3,1651522074,1651522074,NULL),(1224401,9480508370,'a723f870-0afc-4e7c-9b3a-593e4d2a21dd',3,1638796768,1638796768,NULL),(1235741,1707371696,'1a63683f-0f54-4423-9db6-2aff4cfa830f',2,1573425787,1573425787,NULL),(1740193,9619137285,'216f9201-9368-402f-91d9-831b4f85a769',2,1576044900,1576044900,NULL),(2304597,806969980,'11038587',1,1631005035,1631005035,NULL),(2346131,4340140793,'ae297c4c-ea57-4cb0-8928-7874dade2264',3,1560532651,1560532651,NULL),(2380377,635008940,'547d1e6d-07df-4b58-b82c-cf724714d41f',2,1640623232,1640623232,NULL),(2510036,3334816259,'1226271',1,1631256773,1631256773,NULL),(2650388,4391727008,'06c3b407-35ea-44d9-b452-2c54a55984bc',3,1591105541,1591105541,NULL),(2780318,895677445,'12003604',1,1642594715,1642594715,NULL),(2815668,7376972670,'29746471',1,1644354574,1644354574,NULL),(3162159,9216293699,'9b2cab32-a109-4152-9d38-990e86ab3605',2,1561674430,1561674430,NULL),(3223983,9955273696,'26368377',1,1577242137,1577242137,NULL),(4146167,6355947214,'1ce73de1-c279-405a-9460-fff5b4b929f8',2,1636869201,1636869201,NULL),(4158699,9645467036,'3ebc4799-41a2-4e13-a914-38ec807e60a3',3,1574826174,1574826174,NULL),(4488005,6429525386,'27032613',1,1574925156,1574925156,NULL),(4640247,258048141,'9852311',1,1645879741,1645879741,NULL),(4669041,9216794916,'7ede9cab-7b3c-445e-86b0-df417f8898e7',3,1650847387,1650847387,NULL),(4721956,1585988041,'18134058',1,1574259065,1574259065,NULL),(4887521,6735913958,'0841b50b-5d8b-401e-b2c1-ee7e0cea0173',3,1641375473,1641375473,NULL),(4923070,121629850,'7350eca4-a348-468e-9094-2211bba75a19',2,1628789172,1628789172,NULL),(5177843,3978257075,'7722906',1,1574804380,1574804380,NULL),(5593596,106172579,'bd65e301-19a4-4e00-b56e-ab81459f6c78',2,1591155072,1591155072,NULL),(5904812,6321091292,'d4ca0180-5dc1-441f-978c-a0c6e51cecb0',3,1577599674,1577599674,NULL),(5912218,6685580676,'730dc85a-c024-462f-99a4-90d83e43d923',2,1631308670,1631308670,NULL),(6314876,5781463290,'16081767',1,1579684474,1579684474,NULL),(6593987,776418676,'08b72e6b-0470-4411-b93b-80c10183da8c',2,1580785636,1580785636,NULL),(6624103,7369953569,'a1582dba-b9e9-4920-af66-189d625c875c',3,1627177780,1627177780,NULL),(6751358,5874445122,'f8178c13-ff08-48c1-9f28-0ed990629654',3,1585950937,1585950937,NULL),(6760345,4221774393,'796f0c51-4969-4f22-8d48-ace48ee8f807',2,1628531631,1628531631,NULL),(6782730,7793402381,'4e913e13-6c37-4786-be27-070373458f2e',2,1641327832,1641327832,NULL),(7077954,9458173592,'54b91860-14ae-4236-b517-9ed5b9cecd52',3,1580133123,1580133123,NULL),(7160629,2779443147,'ba13116b-4159-4a5f-a673-095204120de1',3,1574719230,1574719230,NULL),(7232753,9670455380,'7342156',1,1629165129,1629165129,NULL),(7284636,4291407262,'23385200',1,1632214673,1632214673,NULL),(8010952,649883671,'19290010',1,1586241373,1586241373,NULL),(8075880,5715011093,'2d714e61-b12c-4fe0-9d34-68f5fae595b1',3,1560069636,1560069636,NULL),(8088800,240115899,'14949547',1,1579133242,1579133242,NULL),(8222224,5311967044,'73793a2d-db05-4f98-b21c-9ae13cdcf9a2',3,1562999492,1562999492,NULL),(8278117,7988861996,'09d62645-dc8f-4ba3-849e-cae850b969c3',3,1563846012,1563846012,NULL),(8283030,2124884098,'8c769346-fab8-43d5-8a11-ca7f34d0bd66',3,1652350296,1652350296,NULL),(8296160,5574217942,'20147655',1,1561858846,1561858846,NULL),(8549837,4868030220,'7263f5a6-e29a-46df-b3e4-3f524bb86bb5',3,1563308861,1563308861,NULL),(8889469,1148311188,'4a28fab2-72e3-4ea8-a97b-3de7f457524d',2,1563235539,1563235539,NULL),(9142537,8304050705,'21947802',1,1572918874,1572918874,NULL),(9344953,6802091221,'25979984',1,1571701000,1571701000,NULL),(9956931,7089931456,'5947492',1,1589470361,1589470361,NULL),(10138189,5619825354,'fae6c011-7a8a-435a-aa6e-2ca709b47cfe',3,1624305438,1624305438,NULL),(10182626,9168452874,'b4f62535-a4c2-4af2-96f7-1c2a71bafb6d',2,1628255789,1628255789,NULL),(10313223,4232531426,'4488496',1,1585898364,1585898364,NULL),(10440048,6474987046,'1e6d4d0e-3afe-4c92-8391-240eaf13046d',2,1568558940,1568558940,NULL),(10754270,7444222888,'1725482',1,1643688153,1643688153,NULL),(11139608,6093703496,'05297d30-9511-4894-936f-fc9a3d03aeaf',3,1651341883,1651341883,NULL),(11160864,4137672822,'1617882',1,1622346879,1622346879,NULL),(11245838,4536872387,'015a2bdf-9383-41c1-acdc-b6b406716963',2,1640989561,1640989561,NULL),(11351923,2232066072,'052e1bbe-affe-43bf-bf1c-87cf9e1af1ad',2,1569422651,1569422651,NULL),(11353286,2673777690,'2132894',1,1560126504,1560126504,NULL),(11715806,5146153955,'c90ce546-2092-4253-bdba-19674d33c9e3',3,1632696537,1632696537,NULL),(12216818,3815314455,'6b0791b9-154d-4c12-b442-e27411a2ecfb',3,1643280866,1643280866,NULL),(12459394,3901487468,'87edb657-2322-4c55-b2de-1d392bd5521f',3,1567548352,1567548352,NULL),(12652019,5148696198,'02880c9e-98ee-4d3e-a014-38e7bf818eb7',3,1581963503,1581963503,NULL),(12726543,7795281607,'dca287ce-728b-49e1-935e-9e272e8d3664',3,1640230256,1640230256,NULL),(13380541,5899381459,'64ff44ff-d320-4a83-900a-9da2029a2304',3,1591086247,1591086247,NULL),(13820754,8966253945,'f88f78c0-fd07-46ba-8e4c-ab6fa6bc5147',3,1584655173,1584655173,NULL),(14058113,5078419884,'9523361',1,1576065376,1576065376,NULL),(14235765,2799977681,'16072238',1,1565607763,1565607763,NULL),(14277097,7310784049,'13811463',1,1566681562,1566681562,NULL),(14867921,5999250722,'6b25a712-ad69-4415-8079-b2a2f62fe0ca',3,1639956790,1639956790,NULL),(15300236,7895347733,'c708426d-f928-4211-bcbb-ca9d1725695f',2,1622510874,1622510874,NULL),(15430052,8458037717,'7814ef46-e5ef-40e1-8cf0-1d9e26a4c825',3,1569980521,1569980521,NULL),(15595644,8034435620,'146af997-fb4d-4e5b-9dcb-ccb004af6a3f',2,1576123037,1576123037,NULL),(16124392,9819026180,'644d2dbd-7b00-426a-9e0e-b0a0467f1c71',3,1625993229,1625993229,NULL),(16503150,7767401998,'49a51e52-6b9b-4c8f-a790-8407f585e67d',3,1639510297,1639510297,NULL),(16536169,8462037927,'2757578e-da57-4fb3-825b-cc1d5d373e91',2,1580250299,1580250299,NULL),(17199151,2678705475,'24757181',1,1587443749,1587443749,NULL),(17304284,1234671813,'56463112-fe67-47a7-a424-46aae450edac',3,1625572786,1625572786,NULL),(17513594,8407068369,'15062562',1,1641037986,1641037986,NULL),(17999775,2237067390,'525a725d-f20d-45f2-ab12-77c0ba0c6555',2,1580070596,1580070596,NULL),(18333480,9587971792,'8589110',1,1628048469,1628048469,NULL),(18690807,8789748667,'fe1ab5d3-c14f-497c-a17f-944ab70072a8',2,1650564272,1650564272,NULL),(18744347,4630732144,'530a4af7-2f29-4e66-afc3-427c7ad85d97',2,1581578362,1581578362,NULL),(18761550,5638157021,'44283d6c-b494-4a7a-b3df-85b785d5b6dc',2,1575458826,1575458826,NULL),(19250619,2778076782,'6ba343b5-24fa-49c4-b250-c0c84e98dde5',2,1652696577,1652696577,NULL),(19370075,1586827873,'20003421',1,1590853179,1590853179,NULL),(19475705,2372916215,'bba3e915-3c2d-4bd7-ad7e-e350719c0a48',2,1587506885,1587506885,NULL),(19601900,7765165277,'11864561',1,1625516860,1625516860,NULL),(19832958,5379385433,'24821c4b-8e6e-4a02-98a9-0bf80d25d265',3,1632019039,1632019039,NULL),(20113950,6667587611,'0c2ac124-eafd-468d-afd6-abe269dcf0d5',2,1642788950,1642788950,NULL),(20159157,7567712084,'22645490',1,1565937921,1565937921,NULL),(20207288,9433791602,'8381f6d8-229b-47c8-9bd0-029dfaba325c',2,1648788337,1648788337,NULL),(20403592,1104847051,'14455926',1,1643478789,1643478789,NULL),(20420870,8228835579,'e45bf16f-a983-4a7a-9118-6f2058d2ae59',3,1581058434,1581058434,NULL),(20458414,571321859,'79e2dfe3-7272-4a9b-b70f-eaef38e7cd01',3,1572823876,1572823876,NULL),(20869225,3943194273,'6a2a0b44-5f6a-4bb1-aa9c-a7dd72a4c3ab',2,1629785725,1629785725,NULL),(21169991,5062448174,'ca285279-da4c-45dc-a6cf-15d62347e33e',2,1639150718,1639150718,NULL),(21892738,9046793141,'e65d9011-c5ac-41db-99fb-fee78672840a',2,1652711420,1652711420,NULL),(22389339,1244905827,'954f5964-8a06-4552-8e2b-120d29dd1df7',3,1633791769,1633791769,NULL),(22461817,347473605,'48245d51-b24b-4606-98cd-6e76adb783b2',2,1644960728,1644960728,NULL),(22464670,5554690090,'1d16ebdc-f6c6-48b9-8151-436150242b31',3,1589050321,1589050321,NULL),(22511739,6616606443,'b4e13148-e638-4f1d-b26a-3e582bda1993',2,1575437567,1575437567,NULL),(22663308,6099034212,'80a5188d-aa8d-4ad3-8105-bd0b3352ae0a',3,1650050056,1650050056,NULL),(22675680,4603080630,'7782312',1,1627994863,1627994863,NULL),(22796778,6301137212,'cbd1069b-5241-4645-9aae-1e6760258c03',3,1584226649,1584226649,NULL),(22856481,1803167513,'48b28057-c542-4b2d-a2a5-b104749a43b2',2,1579051848,1579051848,NULL),(22966460,7230385025,'7910199',1,1587467838,1587467838,NULL),(23839431,2819628837,'44bbaab6-9028-4e82-9b75-fb5d6a47f863',3,1568025368,1568025368,NULL),(23978931,2245759971,'c1ba9c99-46ad-45e8-ba8b-7791c72892c3',3,1589847344,1589847344,NULL),(24170695,2400825530,'8940221',1,1635783413,1635783413,NULL),(24294395,6894836753,'f04bf381-8c95-42fc-a670-f6095cc59212',3,1586500433,1586500433,NULL),(24444093,7805274910,'19622111',1,1561810152,1561810152,NULL),(24465873,2365008794,'3d6cc52d-e235-4084-94cd-a830c3a05744',3,1590576320,1590576320,NULL),(24502919,1608926208,'20656673',1,1630598864,1630598864,NULL),(25170212,5826074172,'5eb18540-51b7-4ca1-9be6-c939e5540a0f',3,1645546955,1645546955,NULL),(25214955,7584825894,'f63b8825-13c2-4a91-a9cb-e7ae341c63da',3,1583419560,1583419560,NULL),(25863066,8381878459,'6011b77d-8483-48cf-a0e8-2c0b295faa9b',3,1584174859,1584174859,NULL),(27117317,5335697226,'19780104',1,1589239750,1589239750,NULL),(27308157,529235644,'87a1276c-f4d1-47ec-84f9-217f70621786',3,1647759016,1647759016,NULL),(27340675,5698050583,'2ce29009-5f27-43a4-bb77-c7c1d03eafa9',2,1633366461,1633366461,NULL),(27343267,7283630939,'24024445',1,1568762004,1568762004,NULL),(27403199,3215216909,'bcea6aaa-ce11-4321-a8a8-7858711e57d1',3,1562311701,1562311701,NULL),(27479274,3380193941,'eca878f9-0adf-4907-83d7-34df284ead4f',3,1622853420,1622853420,NULL),(27558960,9374926883,'8839d322-2dd5-4e1f-940b-907befb3c3c4',3,1644146443,1644146443,NULL),(27780014,4578166198,'867067b5-a07b-4506-8e9b-67c860ec2504',2,1643702914,1643702914,NULL),(27969657,3235639730,'c743ca71-a814-44cc-83c2-5b75d5d7173e',3,1648138717,1648138717,NULL),(28047310,9781850728,'9088774',1,1647472748,1647472748,NULL),(28113836,4083739286,'24004390',1,1643254252,1643254252,NULL),(28188717,943420262,'049f5327-3d5a-4fac-a911-63421f0f47a5',2,1566265714,1566265714,NULL),(28395909,685706311,'da4ec183-9a4d-4371-b9a0-c9a0e9ecde64',3,1560331515,1560331515,NULL),(28541024,4656294806,'1463997',1,1649864399,1649864399,NULL),(28592024,8767758203,'b8453af0-e406-4730-ae28-adff02b61792',3,1576260191,1576260191,NULL),(28983200,8632221396,'cbd8296f-f9c4-4778-86b7-0f5c1ac974e3',2,1560659833,1560659833,NULL),(29096865,6125609178,'3abd3669-195a-4e04-8efc-abccd316b37d',3,1626192479,1626192479,NULL),(29672290,5541431373,'4622195',1,1626669924,1626669924,NULL),(29722454,8789991655,'1fe856b2-71e7-4b15-8067-3a8f6ecad00d',3,1643195618,1643195618,NULL),(29755021,9670151643,'695a02a5-becf-41e5-a0e4-298edce60620',2,1568328062,1568328062,NULL),(29829749,9502272924,'77bc676a-2d8a-4dc6-98c5-ab50ad7da276',3,1585887714,1585887714,NULL),(29837129,1563787977,'e80d9102-9e57-4a71-99f2-b762fcd90a65',3,1638964510,1638964510,NULL),(30563906,4390510798,'2b6c94fa-1f7a-494b-a8fe-37fe4cb0172f',2,1639403075,1639403075,NULL),(30603222,1073233116,'c7ee82d0-7038-490c-bbe6-bfeb32a35e93',3,1640598199,1640598199,NULL),(30645657,766288764,'12292333',1,1572210859,1572210859,NULL),(30828825,8749264137,'f81d7743-23b2-4ef4-ae08-eb2b0097ed6e',3,1631476162,1631476162,NULL),(31488313,9100292280,'f0ea3a69-40d8-4336-88ce-b0b3eac86453',3,1565413679,1565413679,NULL),(31776892,9024364512,'12558865',1,1630960403,1630960403,NULL),(32059286,4142085915,'3e0217c4-f6e2-4e0b-ac82-86fdcde7fddd',3,1571170431,1571170431,NULL),(32380294,6770695461,'23966327',1,1644600670,1644600670,NULL),(32770165,2918894666,'3909291',1,1577297106,1577297106,NULL),(32936072,54977610,'73325c8b-6c49-4de4-bc05-843548b25612',3,1566181392,1566181392,NULL),(33053152,5595536531,'16444148',1,1629180606,1629180606,NULL),(33632573,1558137457,'76937495-6a6e-4564-b087-48696b3624bf',3,1635759765,1635759765,NULL),(33694208,1128766679,'fefa1342-e41d-4d0b-8e34-22fc19ac04f6',2,1575209462,1575209462,NULL),(34081691,3612302335,'496ebd93-e4ce-4bd3-81a8-ceb31d18c86a',3,1641478319,1641478319,NULL),(34491181,5272884678,'b8d80fec-85cd-44ac-bb11-9337286a0d28',2,1578752223,1578752223,NULL),(34545375,2359392852,'25710942',1,1633618802,1633618802,NULL),(35306979,9271181718,'694b0216-fdf6-4c64-a90f-45603c285de1',2,1638300620,1638300620,NULL),(35675422,855900485,'6928485a-ab4a-4ad7-91ee-399b88c5d880',2,1641848130,1641848130,NULL),(35882646,5349882200,'16460640',1,1630274627,1630274627,NULL),(35932489,932399426,'ada550e0-f4d2-470e-8bf8-1596718a9eb9',3,1571234586,1571234586,NULL),(36164972,9136217659,'84accee2-b84c-43f2-a1c2-abcc0638577a',2,1651786769,1651786769,NULL),(36250974,1842678656,'f711ab44-fb85-4492-a02d-17caf99a88be',2,1573829926,1573829926,NULL),(36774220,1338557760,'21333160',1,1627688641,1627688641,NULL),(37216303,990672919,'07bf3cda-5602-4905-9c41-4df476b95962',3,1566872630,1566872630,NULL),(37253858,314620446,'19070773',1,1587698481,1587698481,NULL),(37360357,1186988453,'09cd948b-5171-4a00-ae95-24edb396ce5f',3,1582221145,1582221145,NULL),(37449653,6249470480,'29211785',1,1631126261,1631126261,NULL),(37774505,8602144767,'12e77169-bdd7-4e51-930b-4ec61287c8d4',3,1631955239,1631955239,NULL),(38008470,4107797701,'16f9c22d-f5b2-4569-be2c-0df634a70b16',3,1565946606,1565946606,NULL),(38475796,8322787341,'6bd561ee-f733-4231-93e4-5be4b73127ee',3,1637171803,1637171803,NULL),(38490768,1202030517,'8e3a41b1-f1f6-4e0e-90c0-fb721b5df5c0',2,1641229214,1641229214,NULL),(38501527,5505739962,'e58c1db8-08f3-4ca4-b746-cfd6c0ee30ae',3,1648074455,1648074455,NULL),(38624827,3896747463,'e3b3d28e-4d77-4e19-b9ab-4ca249f5b611',2,1562799928,1562799928,NULL),(38734708,9451600243,'b195b31e-f869-4a95-92da-d29ede31e6ef',2,1624189939,1624189939,NULL),(39110941,7869720705,'1315ee45-a09f-4958-a414-d02a4e3686b7',2,1580643311,1580643311,NULL),(39460562,9058726304,'8856740',1,1624904593,1624904593,NULL),(39981618,7761832424,'fbdca0b4-54bc-417b-95bd-1b71c46193da',3,1575642970,1575642970,NULL),(40313757,6745162492,'25754040',1,1565989865,1565989865,NULL),(40318417,4322667860,'b8870a70-a2a0-498f-80f7-130c87ab9b4a',2,1569470317,1569470317,NULL),(40707740,356865215,'bef52407-6be1-457d-8417-ec21f2a941ea',3,1571570738,1571570738,NULL),(40808026,3812239393,'2f1db996-c354-4744-b809-2f3ca75195a3',2,1577450006,1577450006,NULL),(41601917,252575082,'5327336',1,1579494370,1579494370,NULL),(41671882,3571282929,'12877361',1,1582679110,1582679110,NULL),(41906904,1496043228,'23085803',1,1573634578,1573634578,NULL),(41920416,7863729820,'db69eee9-7b37-46c0-98ad-b2f8b7778f01',2,1578527100,1578527100,NULL),(41920901,611220373,'6a2bdeb5-730c-44ea-bde2-bbd4431817aa',3,1643831193,1643831193,NULL),(42250238,6948195993,'d7a7a062-0067-4c1c-ba2f-c4df4b9b97c1',3,1590492605,1590492605,NULL),(42503283,1059803818,'b8d81307-6ce0-40e4-a80c-d696cf7f3b74',3,1648897328,1648897328,NULL),(42527189,2058851112,'13887041',1,1652930575,1652930575,NULL),(42907363,444219673,'630a042a-9bb7-4e2f-8c4f-798904e5a2b4',2,1583423989,1583423989,NULL),(42962718,745504630,'14502088',1,1560151941,1560151941,NULL),(44166077,1829745853,'7480343',1,1639128075,1639128075,NULL),(44206079,4901176935,'bb070c95-1e0f-4d80-9c93-55ddeb742fb4',2,1639641357,1639641357,NULL),(45050091,8235507829,'d6bf7ab0-c047-4acb-aed5-38997c985a96',3,1627318455,1627318455,NULL),(45161047,9722228409,'196d21b4-05e1-4614-98fc-b602dc362a5d',2,1590360489,1590360489,NULL),(45174220,4386873487,'98982826-61b6-4bbc-8268-369f632bc142',2,1643830331,1643830331,NULL),(45181698,588182420,'4eaeaea1-8e58-4bbc-b0e5-20a7f557125c',2,1577219738,1577219738,NULL),(45919493,1945326975,'071812e3-c68f-43fc-b3a5-5e940dc75a3a',2,1630141644,1630141644,NULL),(45936872,9752192357,'13539504',1,1626668280,1626668280,NULL),(46014981,2764425140,'03cf8705-2184-490a-a7ae-0e8ee8a96550',2,1639903364,1639903364,NULL),(46190653,740774643,'161d050a-bc95-41a7-871a-692791459054',3,1568606148,1568606148,NULL),(46500191,3478552808,'28163172',1,1645996516,1645996516,NULL),(46984590,7362174758,'26794058',1,1575292036,1575292036,NULL),(47385948,861483725,'b05ec701-ee55-4f7a-b478-4c3bdf8ac6a9',2,1582303999,1582303999,NULL),(47836467,793253429,'1951677',1,1639476889,1639476889,NULL),(48141783,3842190644,'24910385',1,1579032773,1579032773,NULL),(48171506,9963097976,'25511318',1,1636072737,1636072737,NULL),(48236918,4384972092,'8f3be3c3-1c37-435d-8bbe-e820e6b1b65b',3,1561716311,1561716311,NULL),(48362088,7107813072,'01ff9688-31a8-4414-931a-559460020cc9',2,1623762660,1623762660,NULL),(48582355,2307890462,'bafc48a1-6f55-40de-a5d8-71b84e72986d',3,1646925594,1646925594,NULL),(48797912,8879015413,'2632663',1,1641161074,1641161074,NULL),(49352751,9535682504,'23667153',1,1624040661,1624040661,NULL),(49377528,6767328277,'40a7f88f-a63c-48a6-b655-1ebc31a8645d',2,1574372596,1574372596,NULL),(49413428,2008015661,'27529936-6ef1-4263-9342-65851ab3357f',2,1586449955,1586449955,NULL),(50466504,8304407235,'e2cc1a0d-17ff-479a-9d9b-83013aed01fc',2,1569028576,1569028576,NULL),(50815025,1679743688,'6876d8c8-ab35-4b4e-a8d6-e8a911becf2c',3,1647682698,1647682698,NULL),(50925345,1135753108,'243957',1,1588949097,1588949097,NULL),(51048770,2647393618,'1bc2dbb4-3286-4dea-a443-9be32be18983',3,1590487171,1590487171,NULL),(51326737,6331999653,'e78a97ec-5f1d-4183-b5e3-f172eeb9a062',2,1582534275,1582534275,NULL),(51365448,4969067457,'513118',1,1625370327,1625370327,NULL),(51484968,6362078362,'b1c72838-bb3b-47a5-bbb4-53699d8f5544',3,1623671339,1623671339,NULL),(51548808,1864924688,'12167026',1,1646784579,1646784579,NULL),(51713690,4594804402,'ff84e88d-2d7e-4d2f-993e-4489adfa927f',2,1639693500,1639693500,NULL),(51799923,3583936314,'13074881-a5c6-4a4d-a8ef-ee0854638771',3,1585276887,1585276887,NULL),(52093019,2405785323,'4ebdddf5-a1f3-4e7c-ae61-3c365df3d669',2,1575938423,1575938423,NULL),(52251205,5829503856,'524dc680-cfaf-4942-952d-9cc6574ab42d',3,1587616129,1587616129,NULL),(52596997,9051932294,'751a0e88-de86-404d-b5df-1d72bab504cd',3,1581423171,1581423171,NULL),(52897051,3760521698,'6e894db5-a1fb-4768-865d-1ceaab829224',3,1649406379,1649406379,NULL),(53346895,9462240988,'54edaced-cc90-4cf7-9ddf-9621fd98de40',2,1573829955,1573829955,NULL),(53365169,8696962628,'f3863974-6bc6-452c-b388-931aea300d3a',3,1564230466,1564230466,NULL),(53467405,1270318809,'879541',1,1641924694,1641924694,NULL),(53506674,4467561038,'17803188',1,1643242546,1643242546,NULL),(53756526,6513986978,'24445292',1,1646430850,1646430850,NULL),(53967342,3940989933,'bdce11fd-e760-447f-bea4-026f93e4e66b',3,1649109337,1649109337,NULL),(53968079,1232690154,'1d109c98-ab05-47fb-a3c8-5bf19f064a97',2,1560129526,1560129526,NULL),(54757971,1511586575,'3dce8fb6-f8b6-4f42-b421-007f471f9f1f',3,1587925031,1587925031,NULL),(54796579,9881177181,'20953358',1,1582314677,1582314677,NULL),(54827718,5430486872,'585e2b34-a04e-4d9e-9662-79d8a710c6e0',2,1563610298,1563610298,NULL),(55278418,712259150,'04b96c69-d57d-4b4b-a239-0c7cade0793c',2,1566356010,1566356010,NULL),(55716797,4076931358,'04f68438-6e9a-43ec-b4ec-6ac3bbb12d79',3,1626529796,1626529796,NULL),(56449401,7795508432,'f57f7014-2eb2-4575-9330-2287e71f4f33',2,1653032165,1653032165,NULL),(57309294,6144395360,'d2c2766a-2c49-4876-8b68-ff5e190fc064',3,1643806795,1643806795,NULL),(57360114,8687235382,'10508323',1,1624231519,1624231519,NULL),(57562571,3724392378,'37ceed50-d75f-4bc4-8305-72315c87b478',2,1564179992,1564179992,NULL),(58027026,6136263168,'f7578441-a27d-4537-b05b-ff916dc33ac5',3,1634903316,1634903316,NULL),(58121401,465972729,'e2c8ad33-841b-4152-bf84-49baa2ff9009',3,1624239128,1624239128,NULL),(58369731,6377663163,'5421886',1,1587613376,1587613376,NULL),(58385978,7558337190,'f35aff5b-43d5-40f5-8924-4bbd4cef87ec',3,1639707215,1639707215,NULL),(58755544,998256586,'0cf83cb4-653a-48f8-bf91-38df908fcce3',3,1639687485,1639687485,NULL),(58886692,5852135018,'16fa9347-b1a2-4189-8b35-2a52a3d1d43e',3,1582512057,1582512057,NULL),(59025226,7514932879,'acd8e21a-8b9c-4990-92c0-46500cd47715',2,1651075779,1651075779,NULL),(59093323,9956660454,'40747132-283f-45da-bed2-8fb720859cf4',3,1565...\G +SET NAMES utf8mb4\G -# Query 61: ID 0x5F782062E60690B4 +# Query 60: ID 0x3C326B7DBDA9C787 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 193.0ms 193.0ms 193.0ms 193.0ms 193.0ms 193.0ms +# Exec time 0 690.8ms 690.8ms 690.8ms 690.8ms 690.8ms 690.8ms +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 3 89.32k 89.32k 89.32k 89.32k 89.32k 89.32k +# String: +# Databases +# +# EXPLAIN /*!50100 PARTITIONS*/ +delete from user_presents where id > 100000000000\G + +# Query 61: ID 0xDD99773350309CB2 +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 2 +# Exec time 0 483.4ms 157.1ms 326.3ms 241.7ms 326.3ms 326.3ms # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1075,27 +1077,27 @@ INSERT INTO `user_devices` VALUES (38256,6994093262,'1c131378-9090-4353-a094-4db # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_decks` VALUES (2626206,2626206,4611598449,99088668151,13161671868,1571097854,1571097854,NULL),(3398747,3398747,99988399593,469904290,25303192871,1646914355,1646914355,NULL),(3579832,3579832,39462347272,75846778790,76264550672,1590901196,1590901196,NULL),(3900917,3900917,17662287090,87822475986,13164618760,1565082929,1565082929,NULL),(4089173,4089173,29798807167,11721976740,4701424080,1562300986,1562300986,NULL),(4089723,4089723,29714835123,26312072962,44514170972,1652965911,1652965911,NULL),(4588977,4588977,72406828935,27634102601,51150770112,1580627623,1580627623,NULL),(4670848,4670848,57578459961,42157634119,36260238291,1561425134,1561425134,NULL),(4966841,4966841,81831330576,48561610563,12598181768,1643431252,1643431252,NULL),(5279455,5279455,19246800321,19927706676,48191068949,1645008715,1645008715,NULL),(8551174,8551174,53575991053,84891156978,20924849654,1560363602,1560363602,NULL),(8606201,8606201,66778605842,27128784612,26607092716,1630017049,1630017049,NULL),(10208648,10208648,60508870888,84658077429,5439335861,1567746156,1567746156,NULL),(10895455,10895455,16923970759,4315212605,81252920249,1570410454,1570410454,NULL),(11075684,11075684,45698771877,26398408953,44945333739,1578425011,1578425011,NULL),(11712850,11712850,94334270016,75904372432,2341482637,1587571787,1587571787,NULL),(12954894,12954894,50649497535,43773876599,76859732326,1576345290,1576345290,NULL),(14005829,14005829,83529178051,80333889068,79220440500,1565397164,1565397164,NULL),(14094324,14094324,45349874241,67626294004,30409482053,1572235906,1572235906,NULL),(17557615,17557615,79599940116,93374590249,60791259591,1623185630,1623185630,NULL),(19087605,19087605,87947431323,492849339,81216884658,1643323077,1643323077,NULL),(19227947,19227947,76812873029,12335134139,63619360715,1561992644,1561992644,NULL),(20785575,20785575,68849455550,67242416444,13778332577,1568756093,1568756093,NULL),(21922288,21922288,14368850209,91033550717,69314942662,1566081631,1566081631,NULL),(22584054,22584054,703484614,59734458623,95891569352,1579930072,1579930072,NULL),(23187419,23187419,39794556160,67835586549,16406651304,1571631221,1571631221,NULL),(23778708,23778708,4840285214,40120059385,27434668621,1646862300,1646862300,NULL),(23870932,23870932,70795371831,40122916346,15706959965,1560072049,1560072049,NULL),(24381866,24381866,24134181141,39929457830,34923827194,1647535630,1647535630,NULL),(25188488,25188488,4089894477,8468758372,53803703411,1590518601,1590518601,NULL),(25299612,25299612,8891080169,91840080522,73863269947,1589261631,1589261631,NULL),(26350911,26350911,47204701806,2785158626,53235689461,1569529046,1569529046,NULL),(28090430,28090430,9828955744,9452635181,71027934335,1586169776,1586169776,NULL),(28850434,28850434,68913929001,61666546565,31776867880,1647188656,1647188656,NULL),(29088926,29088926,49385976209,9706665551,56140772605,1580040098,1580040098,NULL),(29607061,29607061,98182546259,93458274432,52196895193,1590872251,1590872251,NULL),(29676047,29676047,65418604645,49062965473,7331677602,1561517896,1561517896,NULL),(30267668,30267668,56795619478,47592401763,32910382050,1647919959,1647919959,NULL),(31527932,31527932,4688378672,69814449611,72675435470,1580344302,1580344302,NULL),(32421007,32421007,96655396173,61139194935,49219884646,1560035090,1560035090,NULL),(34087240,34087240,8968550153,61099691228,8430177663,1578624481,1578624481,NULL),(34430243,34430243,79443403265,24392934781,75887748330,1572773128,1572773128,NULL),(36475985,36475985,2200605572,21199318869,27616493984,1641003039,1641003039,NULL),(36923813,36923813,12579703781,84362224552,66143826035,1569140397,1569140397,NULL),(38553819,38553819,71057501054,20653142503,40213817309,1649550340,1649550340,NULL),(40055167,40055167,44211022610,42191048905,34107764967,1581219343,1581219343,NULL),(40152943,40152943,28490948648,58013474834,51859465922,1572162947,1572162947,NULL),(40226546,40226546,46850397820,39341676973,13023180735,1585983463,1585983463,NULL),(40445560,40445560,83844424043,14872044921,56694087767,1572591469,1572591469,NULL),(41979724,41979724,37004325437,16134890827,72470764291,1574119540,1574119540,NULL),(42473221,42473221,64261116969,63873057964,8248805573,1637133811,1637133811,NULL),(43337087,43337087,52522463116,8005121618,29599724264,1571115285,1571115285,NULL),(43496485,43496485,72725075263,28326427198,23981513556,1572185146,1572185146,NULL),(44053894,44053894,40334904466,57416899715,15799677513,1560689817,1560689817,NULL),(46489733,46489733,48123576635,85251484685,59683447254,1624188854,1624188854,NULL),(47951552,47951552,51708352198,49831372269,499031892,1638926719,1638926719,NULL),(49952002,49952002,20066551750,5446112611,91032904688,1636681692,1636681692,NULL),(50033605,50033605,39118015514,22242884823,4561289670,1626645071,1626645071,NULL),(50087884,50087884,9921900783,44510214217,34825978271,1569177040,1569177040,NULL),(54977610,54977610,5294094428,39144285759,59626958327,1566181392,1566181392,NULL),(55216010,55216010,86176149108,89360855456,18806836240,1566816177,1566816177,NULL),(55637116,55637116,97907409748,79872456826,1335270914,1652616912,1652616912,NULL),(55647330,55647330,43544505989,59182896438,70692220903,1590844263,1590844263,NULL),(56210739,56210739,32762929872,39734445193,20571731883,1578970017,1578970017,NULL),(57758205,57758205,94960959249,27800476550,32316784360,1625350111,1625350111,NULL),(57954983,57954983,34660531185,26184106968,16136064308,1566244360,1566244360,NULL),(59355076,59355076,30226390024,68182520636,20575276160,1587761535,1587761535,NULL),(59529696,59529696,10379877577,80843805652,47456194479,1578895908,1578895908,NULL),(60952072,60952072,48843890840,63217486008,47545430997,1588104204,1588104204,NULL),(60998754,60998754,34680453341,84676534669,78277457961,1634222824,1634222824,NULL),(62363493,62363493,6915983707,18536699295,84714982799,1634381756,1634381756,NULL),(62461721,62461721,8718813019,30464946485,37167718297,1567282345,1567282345,NULL),(62472156,62472156,89425026161,82100801119,16331729242,1562768682,1562768682,NULL),(62507429,62507429,24517309269,32261639083,38296225380,1650613288,1650613288,NULL),(62633606,62633606,16377655282,2393187715,89230330743,1643997283,1643997283,NULL),(63128880,63128880,29270189194,64413937690,30999092924,1560538894,1560538894,NULL),(65803059,65803059,38250306805,84488305017,93807344432,1577391926,1577391926,NULL),(66539951,66539951,59798615200,78402265947,68466270129,1584894302,1584894302,NULL),(66946096,66946096,223539008,27715858129,13728823610,1635326297,1635326297,NULL),(67152497,67152497,47359322171,77518640561,82507666380,1652328768,1652328768,NULL),(67259631,67259631,21291222864,75235952855,40204011122,1652434898,1652434898,NULL),(67413151,67413151,36204210584,97877060372,57389562519,1586292025,1586292025,NULL),(69058949,69058949,32079135152,95818726300,54938396332,1586369497,1586369497,NULL),(70309020,70309020,62243201861,54581819260,6863819206,1639910327,1639910327,NULL),(71805998,71805998,71455117652,80354596183,70987496620,1562907920,1562907920,NULL),(72320520,72320520,93004514813,32801621692,99802556408,1579651674,1579651674,NULL),(72629382,72629382,34554360681,52646565264,20050867379,1584017913,1584017913,NULL),(73107485,73107485,33712621571,35671643885,23563343379,1570115403,1570115403,NULL),(74410250,74410250,68971256323,2273863898,34774506932,1583266154,1583266154,NULL),(74445234,74445234,97803111211,31982748932,62944929535,1629164660,1629164660,NULL),(75210271,75210271,31865489129,73453902343,4984203851,1562567624,1562567624,NULL),(77669571,77669571,15352663928,46746870185,14950015266,1571612937,1571612937,NULL),(79010549,79010549,73219048349,42555183639,1280117526,1572307306,1572307306,NULL),(79537068,79537068,37833337490,42304992741,60974570916,1630702178,1630702178,NULL),(79540459,79540459,68056179794,30903915439,22843681449,1572192143,1572192143,NULL),(79541020,79541020,96038061445,95625489677,30486671137,1637737168,1637737168,NULL),(80790199,80790199,43217468049,69716895122,34584129835,1582346939,1582346939,NULL),(81977580,81977580,82418419461,72021205647,47048553304,1645724834,1645724834,NULL),(82515488,82515488,565471376,58467695353,56030135189,1587584749,1587584749,NULL),(83378594,83378594,35526396959,95308639314,46748931443,1574354795,1574354795,NULL),(83756502,83756502,56586315781,88011083184,71680017229,1566912151,1566912151,NULL),(84926826,84926826,91183744583,78384034354,32069263275,1641024455,1641024455,NULL),(86135804,86135804,57193405619,1886404776,23962818573,1642881355,1642881355,NULL),(87315435,87315435,2410114124,88951468459,19384154312,1586031609,1586031609,NULL),(88562997,88562997,12512981238,35154296421,29701544640,1644545394,1644545394,NULL),(88663472,88663472,95490140131,35561357370,27858953280,1574770614,1574770614,NULL),(90493731,90493731,19825188281,2358865172,71077023333,1585183110,1585183110,NULL),(92674165,92674165,50201664486,82844830259,70818222001,1584638835,1584638835,NULL),(92753977,92753977,57198994158,19533976089,36783241724,1567048728,1567048728,NULL),(92975606,92975606,54966388919,62404358451,26984320409,1648988795,1648988795,NULL),(93623630,93623630,2495630579,15535225344,8639759220,1581966751,1581966751,NULL),(94635128,94635128,88347699142,73007306908,61425881592,1562408106,1562408106,NULL),(95497784,95497784,83492483254,80813126497,7243432250,1635759140,1635759140,NULL),(95993370,95993370,77426234789,55834214569,10736403198,1572602946,1572602946,NULL),(96169350,96169350,97053061428,77142635161,41793223995,1625031278,1625031278,NULL),(98794050,98794050,51571316297,22607217063,34384904983,1574250471,1574250471,NULL),(100519703,100519703,42470298239,97939752991,14710745215,1562299436,1562299436,NULL),(100927557,100927557,5417586929,24862820099,87101130207,1580864206,1580864206,NULL),(103343101,103343101,40561489766,58589519637,27921743444,1573684325,1573684325,NULL),(103782730,103782730,39240719166,20518993682,29551350,1574606956,1574606956,NULL),(104862398,104862398,41751509958,53904720123,45221529191,1636548491,1636548491,NULL),(106172579,106172579,88704389039,35644650736,2208353805,1591155072,1591155072,NULL),(107310254,107310254,45892710389,88964979688,77414015001,1573707524,1573707524,NULL),(108392311,108392311,4851110162,49130348103,57227348932,1578522419,1578522419,NULL),(110397988,110397988,93140714730,46442355674,38295513740,1573309099,1573309099,NULL),(110426420,110426420,44566760521,42298983009,19311653934,1576307984,1576307984,NULL),(111332422,111332422,94838650191,18596239020,42410427051,1643506077,1643506077,NULL),(111570784,111570784,58042679991,14931226278,30163191120,1564780258,1564780258,NULL),(111698588,111698588,67609430744,57070876302,21292424070,1642173358,1642173358,NULL),(112116515,112116515,78348841244,98454004630,72952275317,1650861974,1650861974,NULL),(112744515,112744515,4549988347,78779707305,84534992569,1634408366,1634408366,NULL),(112771901,112771901,19793273020,17396657360,84692196634,1579875898,1579875898,NULL),(113771348,113771348,33501885048,94053686828,3731648031,1586983010,1586983010,NULL),(114675687,114675687,79412941762,83773724793,58500092925,1581899629,1581899629,NULL),(116199062,116199062,4690286031,96832408881,12234238695,1575032828,1575032828,NULL),(116822478,116822478,76180422765,90097384019,71472647513,1627384304,1627384304,NULL),(117083620,117083620,41110439002,65341453744,18070004658,1643906924,1643906924,NULL),(118549906,118549906,52126445997,71846863579,86792780336,1587155422,1587155422,NULL),(118606521,118606521,99445391287,48067831738,86208706874,1563586746,1563586746,NULL),(119107036,119107036,16755801521,96185011295,15674818629,1568775121,1568775121,NULL),(123140472,123140472,2250408308,77219015672,23567793237,1649066510,1649066510,NULL),(124747052,124747052,38626829491,42407053314,57422198940,1640665197,1640665197,NULL),(125552283,125552283,27530783225,15832674178,87385004088,1576777762,1576777762,NULL),(127047138,127047138,52325067265,48347797167,65348409235,1591118330,1591118330,NULL),(127149951,127149951,19341489705,4866981301,52955669925,1623963469,1623963469,NULL),(127166874,127166874,82822454893,18505734837,41458876702,1569769451,1569769451,NULL),(127714476,127714476,79591396348,40299432147,95345158855,1623073838,1623073838,NULL),(128187075,128187075,33019632250,68469131406,24022394758,1564933792,1564933792,NULL),(128773267,128773267,67164691595,23860037900,52672284345,1569689596,1569689596,NULL),(128994421,128994421,15763634030,18212099002,97958491270,1648478632,1648478632,NULL),(129117426,129117426,94170366791,27224868946,31938608297,1582264448,1582264448,NULL),(129885358,129885358,41459067296,88802082167,83816028381,1570743803,1570743803,NULL),(132352469,132352469,8085875902,11953000747,19273023606,1652128368,1652128368,NULL),(134031420,134031420,43964875257,34164889876,24508970859,1586842620,1586842620,NULL),(135431976,135431976,29807790804,96395679878,95939520498,1567123049,1567123049,NULL),(135580353,135580353,70487333975,16147969767,90386708009,1639884961,1639884961,NULL),(135669101,135669101,66934091411,45531636414,83171008703,1565362957,1565362957,NULL),(135778144,135778144,51861038449,5306891401,61733722255,1576659650,1576659650,NULL),(136096165,136096165,78772773404,32539682420,43990453158,1638665122,1638665122,NULL),(136312822,136312822,13565565941,68714999713,2729400937,1568341029,1568341029,NULL),(136759603,136759603,57523317512,37996419223,15491282666,1565841441,1565841441,NULL),(136942270,136942270,85069695719,80814525508,88309738962,1578058880,1578058880,NULL),(137048951,137048951,46840350592,1103733516,28091298405,1623133000,1623133000,NULL),(138957461,138957461,89288993509,25378486237,60365803870,1572333746,1572333746,NULL),(140750274,140750274,91002148542,61039517360,93435592872,1579333973,1579333973,NULL),(142250733,142250733,57509508512,55667205074,71412344872,1587986931,1587986931,NULL),(143250795,143250795,89953861171,38820225031,84981344623,1583623365,1583623365,NULL),(148385704,148385704,54014235264,28959818360,57684849539,1564264677,1564264677,NULL),(149337513,149337513,91008159156,91681562263,58335420478,1585572735,1585572735,NULL),(149412244,149412244,61791079959,44701756015,89614897076,1582062808,1582062808,NULL),(150118609,150118609,65377524609,39437713058,89744044268,1571349795,1571349795,NULL),(150398255,150398255,26316085024,23482082170,99482680005,1653055085,1653055085,NULL),(151088913,151088913,88714139265,69654474784,44946635566,1560885118,1560885118,NULL),(151278982,151278982,72513476666,56044071297,22349760841,1578103643,1578103643,NULL),(151441646,151441646,97405028877,45860572265,61459559152,1635274777,1635274777,NULL),(153155529,153155529,4551302160,1898062977,56484960352,1567601494,1567601494,NULL),(153265226,153265226,29290005599,21415195346,85865589456,1564953954,1564953954,NULL),(155253059,155253059,29933211511,70576754925,25019986130,1643683764,1643683764,NULL),(155776624,155776624,82021522846,29550865830,82742335379,1580601149,1580601149,NULL),(157534879,157534879,17218854274,89428729097,56043089437,1567332646,1567332646,NULL),(157609415,157609415,20900457276,6473687893,21996169088,1570071789,1570071789,NULL),(159721824,159721824,41833451245,48191080702,35670205126,1581662527,1581662527,NULL),(160356630,160356630,7052049383,62972173913,4376385619,1647566844,1647566844,NULL),(160762670,160762670,44368487283,96069900649,32442026800,1579552367,1579552367,NULL),(161777537,161777537,82518109815,41298075919,27581279256,1573538354,1573538354,NULL),(162851951,162851951,11098570367,25137826799,43689199252,1574292382,1574292382,NULL),(165042777,165042777,70994215426,39241513683,81201427096,1628598281,1628598281,NULL),(165070220,165070220,6763503920,13144925051,40422788739,1584301017,1584301017,NULL),(165265008,165265008,65540745101,80937679788,26105739189,1564012247,1564012247,NULL),(166059429,166059429,26677188587,15974382625,12080789038,1581555451,1581555451,NULL),(168926878,168926878,30837094220,57947360831,56973879825,1567872702,1567872702,NULL),(170267642,170267642,47187119414,81806762604,4172061675,1577159175,1577159175,NULL),(170365067,170365067,35665761593,58806527868,28432841575,1634789118,1634789118,NULL),(171002982,171002982,84809856521,77568566917,29965700726,1630650498,1630650498,NULL),(172310575,172310575,67754412488,60978552971,94626560038,1583541028,1583541028,NULL),(174011645,174011645,84987817529,40838508234,69946772529,1589427033,1589427033,NULL),(176641520,176641520,17475704659,74697476966,22859510784,1561637839,1561637839,NULL),(180142807,180142807,3569993063,92908604880,21756623386,1589597621,1589597621,NULL),(180783494,180783494,58019185578,12243591197,8487620937,1647019653,1647019653,NULL),(180924436,180924436,85203590468,70352330001,17328449706,1560995897,1560995897,NULL),(181887341,181887341,25475271429,67775888106,94027285183,1641456442,1641456442,NULL),(183680427,183680427,81896825955,95907570236,8109838889,1644263729,1644263729,NULL),(184025326,184025326,66833051878,39875866756,37933731966,1590145832,1590145832,NULL),(186574454,186574454,31256889089,8772224165,45222261947,1570972577,1570972577,NULL),(186618801,186618801,12723319900,60681347196,84240472281,1641609821,1641609821,NULL),(187613927,187613927,37695430010,89918238385,41943970774,1566549227,1566549227,NULL),(189634728,189634728,91232117380,9494264610,32750121605,1573439041,1573439041,NULL),(190886346,190886346,43394203350,48371039823,60181288355,1628852034,1628852034,NULL),(192266761,192266761,61217200173,45080300165,34478915502,1640486598,1640486598,NULL),(194196024,194196024,36785484790,56982729019,54100211223,1571224657,1571224657,NULL),(194485597,194485597,27509788696,89171377907,77490271569,1622443351,1622443351,NULL),(195265593,195265593,96911311523,6364272901,6634869298,1638834540,1638834540,NULL),(195790710,195790710,92654178246,94869692007,65734284890,1566925729,1566925729,NULL),(198692862,198692862,36141839830,97859031960,57215165731,1644612127,1644612127,NULL),(201133820,201133820,55290077362,17489550371,92885607326,1569407045,1569407045,NULL),(201425259,201425259,4205259642,16676097588,8261391669,1576338398,1576338398,NULL),(202174877,202174877,10206441098,71098914164,808590751,1562882412,1562882412,NULL),(203495987,203495987,64269662019,27576860165,21833656417,1576614288,1576614288,NULL),(204047677,204047677,55667724976,49017193163,56541772777,1630021220,1630021220,NULL),(204789001,204789001,60181098694,94448956990,65280402075,1574670041,1574670041,NULL),(208816451,208816451,56055233866,62493633024,36312713977,1587290898,1587290898,NULL),(211588950,211588950,32193013630,62827547431,50147051619,1646004557,1646004557,NULL),(212158684,212158684,38245375256,1562387239,85343968064,1638067594,1638067594,NULL),(212202958,212202958,13792104466,72527448893,60400284367,1631909466,1631909466,NULL),(212469861,212469861,21407007970,77462710203,55343255474,1560670046,1560670046,NULL),(213921681,213921681,11874245231,91269878174,94488183214,1586018996,1586018996,NULL),(214069000,214069000,59494258109,34666880494,8329175315,1589704081,1589704081,NULL),(218080122,218080122,9273045103,82258723040,29060993014,1642728392,1642728392,NULL),(219472299,219472299,61724902009,89628374609,39993731427,1586150428,1586150428,NULL),(221709839,221709839,25060092485,43461042335,18384445959,1572413337,1572413337,NULL),(225025267,225025267,85592918523,27228231245,94364306912,1628198304,1628198304,NULL),(225741812,225741812,67625341689,57463885948,99116189982,1635947623,1635947623,NULL),(225758083,225758083,94140920679,76232856337,93201941032,1650270003,1650270003,NULL),(227260457,227260457,82212210125,93288404533,54756679299,1647099297,1647099297,NULL),(228755424,228755424,2376809440,17778561334,67362828815,1573301366,1573301366,NULL),(229642563,229642563,42217700202,32855164629,14846856835,1632030097,1632030097,NULL),(229841084,229841084,56875444153,54725811928,48484583495,1584914718,1584914718,NULL),(230361868,230361868,33852260935,39975740012,19608228275,1581638249,1581638249,NULL),(234037091,234037091,33831893735,85606906422,16434901937,1560176334,1560176334,NULL),(236422806,236422806,15336336267,66052805728,43297567377,1631938514,1631938514,NULL),(237531109,237531109,89558533332,13419868587,89935506872,1638829080,1638829080,NULL),(237986406,237986406,97636256278,16467076925,32947982739,1567066927,1567066927,NULL),(240115899,240115899,54062613281,61251662371,95508562754,1579133242,1579133242,NULL),(240878862,240878862,66401513414,81699670818,9472957614,1568433220,1568433220,NULL),(241591664,241591664,30323986070,38513676928,2875...\G +INSERT INTO `user_login_bonuses` VALUES (3134447,8767177037,4,7,1,1651978143,1654213748,NULL),(3260329,8709299260,2,7,1,1568089349,1568614949,NULL),(3276639,2883231672,4,7,1,1578663808,1654137455,NULL),(4747821,5763777023,2,7,1,1565356295,1653735933,NULL),(6906131,3203595700,1,22,2245,1563681828,1654231124,NULL),(7307025,6566258518,4,7,1,1590173358,1590698958,NULL),(7548066,4415681535,2,7,1,1624552840,1653929112,NULL),(11333228,4221087024,1,21,390,1638254883,1654009107,NULL),(16676016,8334696436,4,7,1,1562171721,1562697321,NULL),(16999636,3487541354,2,7,1,1564662806,1653693067,NULL),(20593963,6326360183,4,7,1,1567644098,1654151921,NULL),(20685904,3942457205,2,7,1,1622766582,1653722061,NULL),(22937960,7638751366,1,2,13,1586863586,1587389186,NULL),(23493256,1431348573,1,19,1813,1580584058,1653710386,NULL),(30064791,3169881792,4,7,1,1567901865,1568427465,NULL),(39577777,1198483804,1,12,284,1642510552,1653978085,NULL),(40220416,4992243040,2,7,1,1637614343,1654094091,NULL),(49976051,6098359308,4,7,1,1645509510,1654084539,NULL),(51343704,9273593974,2,7,1,1572641760,1653952470,NULL),(55695850,8344172389,2,7,1,1571061840,1571587440,NULL),(61128834,921123837,4,7,1,1570143474,1654039413,NULL),(64297614,7362174758,4,7,1,1575292036,1654003052,NULL),(69681084,252575082,2,7,1,1579494370,1654214017,NULL),(71743883,336096340,1,3,1724,1584265668,1653780544,NULL),(76090323,8445695437,4,7,1,1574455194,1654159336,NULL),(76550495,1722144314,2,7,1,1567989354,1568514954,NULL),(82242525,2763796691,1,2,13,1572576071,1573101671,NULL),(84691683,6906998270,1,21,578,1630615462,1653950366,NULL),(87487370,6484724332,4,7,1,1581086058,1654153364,NULL),(87991114,8113803567,2,7,1,1588079785,1588605385,NULL),(91601058,1567190397,4,7,1,1561027721,1653781349,NULL),(92219834,3711336099,2,7,1,1646513562,1653737659,NULL),(94763129,643015436,4,7,1,1560333948,1654183120,NULL),(97347790,9682030274,1,2,13,1579497228,1580022828,NULL),(103915261,5383699502,1,16,448,1635981261,1654067218,NULL),(106838510,9699526412,1,26,359,1639331904,1653843145,NULL),(110038613,8793062976,2,7,1,1565987039,1566512639,NULL),(110219526,9101643128,2,7,1,1574456676,1574982276,NULL),(111093592,6582851499,2,7,1,1631272977,1654061054,NULL),(111611560,1996005344,1,22,751,1623644684,1653955589,NULL),(112023180,8902693794,4,7,1,1572299808,1654155242,NULL),(121941769,1409942818,1,12,264,1643569542,1654230588,NULL),(129049524,6484232319,1,27,145,1647865439,1653750572,NULL),(139701672,3803055378,1,9,451,1635596541,1653792962,NULL),(143942095,4455381760,1,17,2289,1561367149,1653683583,NULL),(146087177,7996674190,4,7,1,1632644561,1653737827,NULL),(146789299,7483979241,1,2,13,1581648132,1582173732,NULL),(147053187,3283551674,1,13,727,1624605246,1653935471,NULL),(148407064,9359867565,2,7,1,1575321232,1653845314,NULL),(149433584,5348716051,2,7,1,1627896584,1653921152,NULL),(156018908,3336529742,1,20,68,1651462297,1654231430,NULL),(180370585,6674762532,4,7,1,1641018772,1654132467,NULL),(181978382,5972449038,4,7,1,1567268315,1653803464,NULL),(193949435,221709839,2,7,1,1572413337,1572938937,NULL),(198073648,2116953238,2,7,1,1588155820,1654083428,NULL),(200386427,6959183582,2,7,1,1584273540,1654139930,NULL),(203306317,5523867382,4,7,1,1646027606,1654079088,NULL),(209327969,4094440579,2,7,1,1565049848,1653677550,NULL),(215346665,7514721491,4,7,1,1564624756,1565150356,NULL),(215818819,7730499089,4,7,1,1637153220,1654208501,NULL),(221913685,3761306954,1,1,449,1636025821,1654130744,NULL),(225493530,4502913038,4,7,1,1580526900,1653956868,NULL),(226190276,484155114,4,7,1,1640798701,1653890247,NULL),(226544688,34087240,1,1,1871,1578624481,1654063701,NULL),(240080884,8301109528,4,7,1,1561482181,1654119982,NULL),(243552434,8325066911,4,7,1,1585191508,1585717108,NULL),(253526813,5242588511,2,7,1,1571420083,1653746947,NULL),(253627734,8658823190,4,7,1,1561094911,1653865662,NULL),(257859330,6767328277,2,7,1,1574372596,1653767207,NULL),(261105771,4992243040,4,7,1,1637614343,1654094091,NULL),(261222175,9997831052,2,7,1,1590491037,1591016637,NULL),(261468686,855261089,4,7,1,1638502860,1653754046,NULL),(261996138,5662400133,4,7,1,1559853295,1560378895,NULL),(265260958,5913905158,1,18,2006,1573239146,1654146342,NULL),(268636860,3671423633,1,7,2200,1565268807,1653982748,NULL),(275435301,4299733092,4,7,1,1565959132,1653967598,NULL),(275644009,9798655210,4,7,1,1562725418,1563251018,NULL),(281465662,8302434571,2,7,1,1646677888,1654176169,NULL),(281556938,1342041879,4,7,1,1646999075,1654180380,NULL),(283531256,1549518855,1,25,75,1651110104,1654169462,NULL),(284399438,4457509830,1,20,162,1647109015,1653668216,NULL),(286201974,6480615509,2,7,1,1634057867,1654123357,NULL),(293636031,6658849649,2,7,1,1571384436,1571910036,NULL),(301776434,6211542408,1,2,13,1562771093,1563296693,NULL),(306928223,6667808393,1,15,527,1632600467,1653869310,NULL),(315245578,7229432289,1,16,560,1631183543,1653785464,NULL),(319702210,6050395059,1,2,13,1568403222,1568928822,NULL),(321213118,494329171,4,7,1,1568879680,1569405280,NULL),(322381849,8657844709,1,6,2170,1566575590,1654077428,NULL),(325432934,9169128111,4,7,1,1570987689,1654137762,NULL),(327344558,7029958838,2,7,1,1591020742,1591546342,NULL),(329777345,3459447014,2,7,1,1567185468,1654238371,NULL),(331140628,2478329247,4,7,1,1563631312,1564156912,NULL),(332646655,2150291092,1,2,13,1561437009,1561962609,NULL),(335124458,1577474237,2,7,1,1632566519,1653740440,NULL),(339606473,1305202405,4,7,1,1573059873,1654175956,NULL),(341731982,7619603667,4,7,1,1560882261,1561407861,NULL),(341976343,8009723353,1,19,2068,1570513972,1653921830,NULL),(342469045,552701006,4,7,1,1588108587,1588634187,NULL),(342533588,5359936940,1,22,1649,1587251087,1653769128,NULL),(343356376,7801190116,1,28,2077,1570298529,1654082537,NULL),(344912841,8395034222,1,26,1737,1583635211,1653707793,NULL),(346667504,948292137,2,7,1,1635306764,1654120070,NULL),(350405063,548866049,4,7,1,1647180652,1653946331,NULL),(351203918,3245713526,4,7,1,1582201018,1582726618,NULL),(351300208,6542944085,4,7,1,1572459125,1653889837,NULL),(351933820,4394297139,4,7,1,1590469629,1590995229,NULL),(352099351,1741422291,2,7,1,1566383120,1566908720,NULL),(358036359,3789945083,2,7,1,1570652036,1654128379,NULL),(361866380,6058102603,4,7,1,1646127837,1653873472,NULL),(367776670,7091214751,2,7,1,1590235135,1590760735,NULL),(369673273,578096596,1,2,13,1565866152,1566391752,NULL),(371165425,710103896,1,21,1963,1574508881,1653686154,NULL),(371973629,758694296,2,7,1,1631497257,1653672615,NULL),(377589943,4819235938,1,2,13,1583451466,1583977066,NULL),(382872881,142250733,4,7,1,1587986931,1653977214,NULL),(384074390,2248624316,2,7,1,1646009307,1653672992,NULL),(397904163,6816147926,1,24,226,1644738669,1653884825,NULL),(398970948,5247743862,1,28,351,1639576828,1653768888,NULL),(400767167,1849395043,2,7,1,1642701412,1654255761,NULL),(402436695,6855087540,4,7,1,1584328202,1584853802,NULL),(403747752,3823224921,1,8,126,1648619028,1653710441,NULL),(405444748,3242254752,1,2,13,1567092057,1567617657,NULL),(417099783,636903146,1,2,13,1577951414,1578477014,NULL),(423295823,4930490732,1,2,13,1564537096,1565062696,NULL),(429880205,9784803024,2,7,1,1648729847,1654086841,NULL),(431655101,9954068686,1,21,2170,1566540602,1654064039,NULL),(438062444,17557615,4,7,1,1623185630,1653770532,NULL),(442887355,79010549,4,7,1,1572307306,1572832906,NULL),(443233135,7938271498,2,7,1,1568703369,1653711618,NULL),(445550541,9086731280,4,7,1,1568036485,1654007709,NULL),(448351506,8107304408,2,7,1,1650513659,1654257544,NULL),(451161305,4164200397,2,7,1,1644219352,1654140659,NULL),(452899752,5792456872,2,7,1,1623650752,1654046017,NULL),(453353696,2444227804,1,22,1923,1576442491,1654008916,NULL),(453576039,8281471080,1,2,13,1579889259,1580414859,NULL),(456386300,8896568848,2,7,1,1581238526,1653770710,NULL),(459443196,9191873231,4,7,1,1590588352,1591113952,NULL),(464185938,7816853964,1,2,741,1623789414,1653668329,NULL),(476390697,4317746938,4,7,1,1583884286,1584409886,NULL),(477173329,3707919768,4,7,1,1567463935,1567989535,NULL),(478940731,2605510124,2,7,1,1641195958,1653748545,NULL),(482616802,9208483637,2,7,1,1564289682,1564815282,NULL),(487994898,8239110008,1,20,510,1633468992,1654060749,NULL),(497505804,8980774314,4,7,1,1589240004,1589765604,NULL),(509982617,8884477625,1,27,2085,1569949236,1654054158,NULL),(512502892,7075725950,1,25,44,1652380725,1654190506,NULL),(514121119,3928023333,4,7,1,1589476690,1590002290,NULL),(518111896,9162028666,1,26,314,1641319267,1654016538,NULL),(520719056,3008712324,1,2,13,1582656980,1583182580,NULL),(525905837,1951037404,1,2,13,1570872986,1571398586,NULL),(527359817,7555814913,2,7,1,1642184366,1653986766,NULL),(528527396,3008712324,2,7,1,1582656980,1583182580,NULL),(529793509,1433445013,1,14,685,1626602901,1654241957,NULL),(530633406,5367465692,2,7,1,1637891081,1653836558,NULL),(536034585,597834130,2,7,1,1590174447,1590700047,NULL),(539124168,8294580351,2,7,1,1642549863,1654250290,NULL),(549653876,3440812463,2,7,1,1589682808,1653733580,NULL),(559939225,9931596209,4,7,1,1566228324,1654221605,NULL),(561393705,2055572758,1,26,172,1646795062,1653767245,NULL),(565441274,8257093521,1,17,2098,1569387177,1654002446,NULL),(574007002,1585988041,4,7,1,1574259065,1653797171,NULL),(574051901,1402976445,1,2,13,1587525624,1588051224,NULL),(581530064,8815925564,2,7,1,1562268412,1654086697,NULL),(585837711,9522151998,4,7,1,1570370948,1570896548,NULL),(590693000,2218538989,4,7,1,1643886910,1654172677,NULL),(598264619,4722842006,4,7,1,1584468326,1584993926,NULL),(606572112,93623630,2,7,1,1581966751,1653722302,NULL),(611701116,7048251657,1,4,603,1629673982,1653992604,NULL),(612302646,2635448192,1,1,2107,1568965608,1653921153,NULL),(612956038,9198525309,2,7,1,1635411019,1653682024,NULL),(613490780,7768408746,1,28,2097,1569271336,1653862297,NULL),(618420821,1996005344,2,7,1,1623644684,1653955589,NULL),(620513093,349789885,2,7,1,1590279879,1654064144,NULL),(628728074,8945770111,1,23,2159,1566722884,1653805691,NULL),(629535908,8020062815,1,18,1968,1574807726,1654182482,NULL),(646685476,9448951734,2,7,1,1589935294,1653831069,NULL),(648751442,6996991989,1,21,21,1653139060,1654015342,NULL),(649137754,2239820837,1,20,478,1634554526,1653855566,NULL),(650532281,9611548593,2,7,1,1650749923,1653768465,NULL),(655998808,245308056,1,2,13,1572382670,1572908270,NULL),(660097925,4039861335,1,2,13,1573162991,1573688591,NULL),(664000255,424994570,1,15,2100,1569373789,1654066661,NULL),(670029212,4682975263,2,7,1,1581600562,1654148101,NULL),(677834210,1704559703,2,7,1,1635493866,1653847694,NULL),(684121642,3545635248,4,7,1,1570891740,1571417340,NULL),(687476263,8884508453,4,7,1,1638982800,1654247518,NULL),(688584750,8828409156,2,7,1,1629309530,1654242717,NULL),(690086287,7863429863,4,7,1,1587682018,1588207618,NULL),(692651649,8098281322,4,7,1,1569560402,1654184979,NULL),(692816579,7780901236,2,7,1,1562821667,1654042316,NULL),(696868814,3781745917,1,2,13,1585239554,1585765154,NULL),(701593022,4384972092,1,2,13,1561716311,1562241911,NULL),(702327095,8398572223,4,7,1,1561853260,1562378860,NULL),(702387756,6438335107,4,7,1,1587268962,1587794562,NULL),(703231515,2738265631,1,2,13,1581019440,1581545040,NULL),(703921997,1874800427,2,7,1,1560785730,1654071875,NULL),(705539666,1922091049,1,25,2054,1571411500,1654263368,NULL),(707403804,5240675319,4,7,1,1586065243,1586590843,NULL),(714494021,4913049507,1,5,693,1626119230,1654068103,NULL),(718359677,6321091292,2,7,1,1577599674,1578125274,NULL),(723361119,123140472,1,1,121,1649066510,1653946482,NULL),(728936203,4569830837,4,7,1,1573858878,1574384478,NULL),(730673909,5123008027,1,5,381,1638444291,1653812553,NULL),(740633568,1039072156,1,27,557,1631661023,1654158078,NULL),(741201508,2835481957,1,2,13,1560351897,1560877497,NULL),(744195200,6401534557,1,23,762,1622985356,1653740945,NULL),(747337920,2546838297,1,2,13,1568519642,1569045242,NULL),(748532032,4346789449,1,3,665,1627404459,1654220439,NULL),(749128480,8295457088,2,7,1,1569624446,1570150046,NULL),(749164860,5068024302,4,7,1,1631174347,1654005031,NULL),(751164499,3265727611,1,21,1800,1581544587,1654149772,NULL),(752116829,1356438402,2,7,1,1633946672,1654230839,NULL),(753334514,9078039847,2,7,1,1590586777,1591112377,NULL),(753446635,5492265836,4,7,1,1564604219,1653806599,NULL),(754879063,4105533912,2,7,1,1636476647,1653987573,NULL),(756308558,5706382035,4,7,1,1572454904,1654231178,NULL),(756482174,789480774,4,7,1,1642466119,1654252815,NULL),(758776037,4885585677,4,7,1,1641630858,1653922920,NULL),(759115955,3044775905,2,7,1,1586237784,1586763384,NULL),(760608813,1894970484,1,6,2188,1566020250,1654248975,NULL),(762692395,7704783717,4,7,1,1563238981,1563764581,NULL),(770753976,4556752600,1,25,1673,1586759247,1654250214,NULL),(773974306,849406888,1,2,13,1576639988,1577165588,NULL),(775650891,4398373543,1,16,1806,1580925847,1653765657,NULL),(777121199,5393067908,2,7,1,1574860895,1654036682,NULL),(777869685,3947524773,1,2,13,1569563654,1570089254,NULL),(783168644,8919246246,1,19,1563,1590623044,1653669908,NULL),(787967753,3103489868,2,7,1,1578173778,1578699378,NULL),(789046272,3911628361,1,17,2090,1569896048,1654188111,NULL),(789894236,1577761292,2,7,1,1578252043,1578777643,NULL),(790318571,8399733522,1,2,13,1568169966,1568695566,NULL),(790320351,6362677151,1,2,137,1648295937,1653821703,NULL),(790743909,6852811592,1,7,1962,1574934295,1654051864,NULL),(791600081,383216146,2,7,1,1588880671,1589406271,NULL),(793309469,3786427032,2,7,1,1577893915,1578419515,NULL),(793712489,6948195993,1,2,13,1590492605,1591018205,NULL),(803583898,2857867547,4,7,1,1582413342,1582938942,NULL),(809265160,8306961432,1,2,13,1586899054,1587424654,NULL),(815483809,2275392416,4,7,1,1574177853,1574703453,NULL),(821903546,5097284905,1,2,13,1560224283,1560749883,NULL),(823574706,4653149674,2,7,1,1582403216,1653691513,NULL),(824968575,1762953228,1,2,13,1582767570,1583293170,NULL),(827220286,4221690994,2,7,1,1564503115,1565028715,NULL),(834965479,2444197424,2,7,1,1587911154,1588436754,NULL),(839217279,9940309890,1,2,13,1578937040,1579462640,NULL),(846317890,7209839811,2,7,1,1568276500,1653706142,NULL),(846374773,2559568212,1,2,13,1566300803,1566826403,NULL),(849554934,8331756475,1,4,18,1653187046,1653917156,NULL),(854605917,8646301855,1,8,731,1624650197,1654135520,NULL),(855653055,5131044324,4,7,1,1639118040,1654084194,NULL),(856996376,9739798111,4,7,1,1573477754,1574003354,NULL),(857833096,2267528866,2,7,1,1582704049,1583229649,NULL),(861738183,9654129070,2,7,1,1567458333,1567983933,NULL),(866933441,2479340132,2,7,1,1567070243,1653868682,NULL),(877785928,3124349834,2,7,1,1567695906,1568221506,NULL),(880055656,4841028573,1,16,185,1646327671,1653808957,NULL),(883354652,616007787,2,7,1,1633566564,1653967626,NULL),(885813168,7283740729,2,7,1,1570277143,1653775732,NULL),(891766013,943047188,1,19,441,1636109041,1653916459,NULL),(893068961,4079148249,4,7,1,1578555080,1653837605,NULL),(896442976,8170641167,2,7,1,1589633868,1653960460,NULL),(905901545,6289060102,2,7,1,1590701071,1591226671,NULL),(925909485,7215450250,1,2,13,1566857043,1567382643,NULL),(926326122,5583883812,2,7,1,1632034336,1654151994,NULL),(927366624,6398041088,1,4,2172,1566257802,1653837172,NULL),(933780409,1661080655,2,7,1,1568046636,1654100473,NULL),(935961903,2861981553,2,7,1,1632919416,1654184087,NULL),(938429553,7448867322,1,19,2041,1571389007,1653708528,NULL),(939245770,7854009443,1,2,13,1564931073,1565456673,NULL),(942393549,3647001099,2,7,1,1560102995,1654253010,NULL),(943302415,2928780245,2,7,1,1582893062,1583418662,NULL),(956409481,1552825412,4,7,1,1584818358,1585343958,NULL),(959972101,1651950241,1,11,1919,1576512359,1653901729,NULL),(962846011,9254318773,1,10,2272,1562316216,1653936367,NULL),(967425439,2373865838,1,4,47,1651954890,1653854820,NULL),(969936276,8966477764,1,13,1657,1587270932,1654098492,NULL),(972568945,7084314628,1,2,13,1561847449,1562373049,NULL),(975515553,9003417202,1,2,2141,1567766969,1654093536,NULL),(982357149,2644568520,2,7,1,1571076002,1571601602,NULL),(987625594,3899779088,2,7,1,1578365453,1578891053,NULL),(990485973,7152036608,1,13,634,1628389657,1653971089,NULL),(994302488,6757878276,4,7,1,1585239014,1654126851,NULL),(995756442,7785072788,2,7,1,1587296200,1587821800,NULL),(1002828070,8304050705,1,8,2005,1572918874,1653771587,NULL),(1005464386,9468545119,4,7,1,1567248277,1653744752,NULL),(1006855699,8397555454,2,7,1,1567023944,1653986054,NULL),(1008706451,7809992049,2,7,1,1577768322,1654163809,NULL),(1008913268,309886564,1,7,58,1651343325,1653691627,NULL),(1011588814,4013229155,4,7,1,1581900156,1653720652,NULL),(1015679719,1359239585,2,7,1,1634820113,1653866729,NULL),(1017300838,5235187719,1,8,517,1632851616,1653707526,NULL),(1017366862,6472463931,1,6,2157,1566762885,1653741338,NULL),(1019053172,2178280798,2,7,1,1562189141,1653731145,NULL),(1030611423,8622809673,2,7,1,1650144938,1654113395,NULL),(1032035427,845323951,1,15,487,1634089126,1653745188,NULL),(1035316148,6614095315,1,19,2089,1569604108,1653858745,NULL),(1038041724,5505442140,1,11,545,1631834426,1653823555,NULL),(1038826926,3048134182,1,2,13,1571395253,1571920853,NULL),(1040882844,2045577150,2,7,1,1627125846,1653988336,NULL),(1047376061,3132437631,1,14,2146,1567157305,1653702851,NULL),(1047861908,1887045366,2,7,1,1651370343,1653883726,NULL),(1049029766,1207572338,4,7,1,1577049237,1577574837,NULL),(1052344844,609324091,1,4,378,1638499262,1653745171,NULL),(1054497155,1305202405,1,23,2011,1573059873,1654175956,NULL),(1055692388,4103938465,2,7,1,1579254407,1654070050,NULL),(1058916591,7528219316,1,16,2300,1561031809,1653789536,NULL),(1064484499,7393701640,4,7,1,1577974583,1578500183,NULL),(1068931888,3028784490,1,1,1957,1575142762,1654050322,NULL),(1069172737,4928994025,4,7,1,1591020157,1654035837,NULL),(1069406498,3995217987,4,7,1,1631147476,1654087611,NULL),(1071233584,6323482523,1,27,1913,1576862396,1654033300,NULL),(1075340211,128773267,2,7,1,1569689596,1570215196,NULL),(1082593295,9336921307,4,7,1,1628363775,1653831654,NULL),(1084827339,8061619680,1,17,1866,1578645747,1653907206,NULL),(1086345938,8413381351,4,7,1,1576140318,1576665918,NULL),(1090585094,7409889334,1,19,93,1650179506,1653955275,NULL),(1095224190,609762263,2,7,1,1629432639,1653953881,NULL),(1096836669,9431159322,4,7,1,1559963181,1653886430,NULL),(1097175843,6184721599,4,7,1,1645522970,1654060800,NULL),(1098304446,1247757886,4,7,1,1590823997,1653794819,NULL),(1099774242,4725826728,2,7,1,1561476396,1562001996,NULL),(1104704856,9435930277,2,7,1,1590962749,1591488349,NULL),(1107321951,6107215767,1,8,788,1622454246,1654237370,NULL),(1110120235,6929589572,1,12,313,1641234737,1653870924,NULL),(1117913123,9364089669,1,13,2045,1571689370,1654162130,NULL),(1122308145,3585079948,2,7,1,1569261735,1569787335,NULL),(1122783032,8438146142,4,7,1,1589716256,1590241856,NULL),(1123926401,63128880,4,7,1,1560538894,1561064494,NULL),(1124608812,2342197991,4,7,1,1587280683,1587806283,NULL),(1126038322,8624569010,1,9,101,1649932721,1654017274,NULL),(1130486034,4651309674,2,7,1,1571318195,1654085868,NULL),(1132402356,3001693389,1,2,13,1588760445,1589286045,NULL),(1138152153,2001205157,1,2,13,1569810099,1570335699,NULL),(1144326123,8967755068,4,7,1,1582757129,1654071742,NULL),(1150352260,5458025141,4,7,1,1648134432,1654001549,NULL),(1151099660,6239458539,1,8,633,1628450655,1653984544,NULL),(1151189816,8388447001,1,1,305,1641369173,1653667749,NULL),(1151837847,5093722079,4,7,1,1568982823,1654058939,NULL),(1155308351,2016806002,4,7,1,1569462000,1569987600,NULL),(1155742907,3741833776,2,7,1,1624225817,1654206621,NULL),(1157824972,9559671304,1,2,13,1560340332,1560865932,NULL),(1161641468,1708705891,2,7,1,1587288490,1587814090,NULL),(1163240912,4638920935,1,27,2167,1566741138,1654152094,NULL),(1165082600,3468264245,4,7,1,1652013589,1653864623,NULL),(1166165506,1462276815,1,2,789,1622228953,1654043830,NULL),(1166628937,4439494721,4,7,1,1563078557,1654009001,NULL),(1167457819,8236481873,2,7,1,1566252196,1566777796,NULL),(1174052017,8733451434,1,17,2085,1569994406,1654086074,NULL),(1176733057,4855253711,4,7,1,1642278150,1653988388,NULL),(1178990925,448298650,1,1,526,1632871034,1654080232,NULL),(1181184998,8992592299,2,7,1,1575486241,1576011841,NULL),(1181939035,1146377828,2,7,1,1651153092,1654099809,NULL),(1182561500,6295038119,1,7,613,1629429838,1654156002,NULL),(1185147937,9007639607,1,5,442,1636320319,1654148740,NULL),(1185704329,6774908524,2,7,1,1624937880,1654121276,NULL),(1198180359,5512267863,4,7,1,1589732853,1590258453,NULL),(1198650866,511955888,1,2,13,1572664931,1573190531,NULL),(1199099811,2535150879,2,7,1,1623029956,165...\G -# Query 62: ID 0x7F62C1A23A2B47DF +# Query 62: ID 0x4B675AC0EA8F5E72 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 172.4ms 172.4ms 172.4ms 172.4ms 172.4ms 172.4ms -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 15 15 15 15.00 15 15 -# Rows examined 8 241.65k 241.65k 241.65k 241.65k 241.65k 241.65k +# Count 0 2 +# Exec time 0 406.1ms 98.2ms 308.0ms 203.1ms 308.0ms 308.0ms +# Lock time 0 0 0 0 0 0 0 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_present_all_received_history WHERE user_id=4929824682\G +INSERT INTO `user_devices` VALUES (38256,6994093262,'1c131378-9090-4353-a094-4db47df536ef',3,1638359002,1638359002,NULL),(468737,9001362973,'3dfebe07-0ed3-4b11-95aa-0433661ad5e9',2,1628559795,1628559795,NULL),(498368,8484577995,'0dd71ae7-66a3-4d95-9a96-21c9a41334cf',3,1651298037,1651298037,NULL),(602255,7870436520,'c9ecc455-3348-48b3-a3d3-09e56010baf8',3,1573300163,1573300163,NULL),(1150185,4119213451,'eca09064-2b08-4fcb-b6c9-a2ee2fc90152',3,1651522074,1651522074,NULL),(1224401,9480508370,'a723f870-0afc-4e7c-9b3a-593e4d2a21dd',3,1638796768,1638796768,NULL),(1235741,1707371696,'1a63683f-0f54-4423-9db6-2aff4cfa830f',2,1573425787,1573425787,NULL),(1740193,9619137285,'216f9201-9368-402f-91d9-831b4f85a769',2,1576044900,1576044900,NULL),(2304597,806969980,'11038587',1,1631005035,1631005035,NULL),(2346131,4340140793,'ae297c4c-ea57-4cb0-8928-7874dade2264',3,1560532651,1560532651,NULL),(2380377,635008940,'547d1e6d-07df-4b58-b82c-cf724714d41f',2,1640623232,1640623232,NULL),(2510036,3334816259,'1226271',1,1631256773,1631256773,NULL),(2650388,4391727008,'06c3b407-35ea-44d9-b452-2c54a55984bc',3,1591105541,1591105541,NULL),(2780318,895677445,'12003604',1,1642594715,1642594715,NULL),(2815668,7376972670,'29746471',1,1644354574,1644354574,NULL),(3162159,9216293699,'9b2cab32-a109-4152-9d38-990e86ab3605',2,1561674430,1561674430,NULL),(3223983,9955273696,'26368377',1,1577242137,1577242137,NULL),(4146167,6355947214,'1ce73de1-c279-405a-9460-fff5b4b929f8',2,1636869201,1636869201,NULL),(4158699,9645467036,'3ebc4799-41a2-4e13-a914-38ec807e60a3',3,1574826174,1574826174,NULL),(4488005,6429525386,'27032613',1,1574925156,1574925156,NULL),(4640247,258048141,'9852311',1,1645879741,1645879741,NULL),(4669041,9216794916,'7ede9cab-7b3c-445e-86b0-df417f8898e7',3,1650847387,1650847387,NULL),(4721956,1585988041,'18134058',1,1574259065,1574259065,NULL),(4887521,6735913958,'0841b50b-5d8b-401e-b2c1-ee7e0cea0173',3,1641375473,1641375473,NULL),(4923070,121629850,'7350eca4-a348-468e-9094-2211bba75a19',2,1628789172,1628789172,NULL),(5177843,3978257075,'7722906',1,1574804380,1574804380,NULL),(5593596,106172579,'bd65e301-19a4-4e00-b56e-ab81459f6c78',2,1591155072,1591155072,NULL),(5904812,6321091292,'d4ca0180-5dc1-441f-978c-a0c6e51cecb0',3,1577599674,1577599674,NULL),(5912218,6685580676,'730dc85a-c024-462f-99a4-90d83e43d923',2,1631308670,1631308670,NULL),(6314876,5781463290,'16081767',1,1579684474,1579684474,NULL),(6593987,776418676,'08b72e6b-0470-4411-b93b-80c10183da8c',2,1580785636,1580785636,NULL),(6624103,7369953569,'a1582dba-b9e9-4920-af66-189d625c875c',3,1627177780,1627177780,NULL),(6751358,5874445122,'f8178c13-ff08-48c1-9f28-0ed990629654',3,1585950937,1585950937,NULL),(6760345,4221774393,'796f0c51-4969-4f22-8d48-ace48ee8f807',2,1628531631,1628531631,NULL),(6782730,7793402381,'4e913e13-6c37-4786-be27-070373458f2e',2,1641327832,1641327832,NULL),(7077954,9458173592,'54b91860-14ae-4236-b517-9ed5b9cecd52',3,1580133123,1580133123,NULL),(7160629,2779443147,'ba13116b-4159-4a5f-a673-095204120de1',3,1574719230,1574719230,NULL),(7232753,9670455380,'7342156',1,1629165129,1629165129,NULL),(7284636,4291407262,'23385200',1,1632214673,1632214673,NULL),(8010952,649883671,'19290010',1,1586241373,1586241373,NULL),(8075880,5715011093,'2d714e61-b12c-4fe0-9d34-68f5fae595b1',3,1560069636,1560069636,NULL),(8088800,240115899,'14949547',1,1579133242,1579133242,NULL),(8222224,5311967044,'73793a2d-db05-4f98-b21c-9ae13cdcf9a2',3,1562999492,1562999492,NULL),(8278117,7988861996,'09d62645-dc8f-4ba3-849e-cae850b969c3',3,1563846012,1563846012,NULL),(8283030,2124884098,'8c769346-fab8-43d5-8a11-ca7f34d0bd66',3,1652350296,1652350296,NULL),(8296160,5574217942,'20147655',1,1561858846,1561858846,NULL),(8549837,4868030220,'7263f5a6-e29a-46df-b3e4-3f524bb86bb5',3,1563308861,1563308861,NULL),(8889469,1148311188,'4a28fab2-72e3-4ea8-a97b-3de7f457524d',2,1563235539,1563235539,NULL),(9142537,8304050705,'21947802',1,1572918874,1572918874,NULL),(9344953,6802091221,'25979984',1,1571701000,1571701000,NULL),(9956931,7089931456,'5947492',1,1589470361,1589470361,NULL),(10138189,5619825354,'fae6c011-7a8a-435a-aa6e-2ca709b47cfe',3,1624305438,1624305438,NULL),(10182626,9168452874,'b4f62535-a4c2-4af2-96f7-1c2a71bafb6d',2,1628255789,1628255789,NULL),(10313223,4232531426,'4488496',1,1585898364,1585898364,NULL),(10440048,6474987046,'1e6d4d0e-3afe-4c92-8391-240eaf13046d',2,1568558940,1568558940,NULL),(10754270,7444222888,'1725482',1,1643688153,1643688153,NULL),(11139608,6093703496,'05297d30-9511-4894-936f-fc9a3d03aeaf',3,1651341883,1651341883,NULL),(11160864,4137672822,'1617882',1,1622346879,1622346879,NULL),(11245838,4536872387,'015a2bdf-9383-41c1-acdc-b6b406716963',2,1640989561,1640989561,NULL),(11351923,2232066072,'052e1bbe-affe-43bf-bf1c-87cf9e1af1ad',2,1569422651,1569422651,NULL),(11353286,2673777690,'2132894',1,1560126504,1560126504,NULL),(11715806,5146153955,'c90ce546-2092-4253-bdba-19674d33c9e3',3,1632696537,1632696537,NULL),(12216818,3815314455,'6b0791b9-154d-4c12-b442-e27411a2ecfb',3,1643280866,1643280866,NULL),(12459394,3901487468,'87edb657-2322-4c55-b2de-1d392bd5521f',3,1567548352,1567548352,NULL),(12652019,5148696198,'02880c9e-98ee-4d3e-a014-38e7bf818eb7',3,1581963503,1581963503,NULL),(12726543,7795281607,'dca287ce-728b-49e1-935e-9e272e8d3664',3,1640230256,1640230256,NULL),(13380541,5899381459,'64ff44ff-d320-4a83-900a-9da2029a2304',3,1591086247,1591086247,NULL),(13820754,8966253945,'f88f78c0-fd07-46ba-8e4c-ab6fa6bc5147',3,1584655173,1584655173,NULL),(14058113,5078419884,'9523361',1,1576065376,1576065376,NULL),(14235765,2799977681,'16072238',1,1565607763,1565607763,NULL),(14277097,7310784049,'13811463',1,1566681562,1566681562,NULL),(14867921,5999250722,'6b25a712-ad69-4415-8079-b2a2f62fe0ca',3,1639956790,1639956790,NULL),(15300236,7895347733,'c708426d-f928-4211-bcbb-ca9d1725695f',2,1622510874,1622510874,NULL),(15430052,8458037717,'7814ef46-e5ef-40e1-8cf0-1d9e26a4c825',3,1569980521,1569980521,NULL),(15595644,8034435620,'146af997-fb4d-4e5b-9dcb-ccb004af6a3f',2,1576123037,1576123037,NULL),(16124392,9819026180,'644d2dbd-7b00-426a-9e0e-b0a0467f1c71',3,1625993229,1625993229,NULL),(16503150,7767401998,'49a51e52-6b9b-4c8f-a790-8407f585e67d',3,1639510297,1639510297,NULL),(16536169,8462037927,'2757578e-da57-4fb3-825b-cc1d5d373e91',2,1580250299,1580250299,NULL),(17199151,2678705475,'24757181',1,1587443749,1587443749,NULL),(17304284,1234671813,'56463112-fe67-47a7-a424-46aae450edac',3,1625572786,1625572786,NULL),(17513594,8407068369,'15062562',1,1641037986,1641037986,NULL),(17999775,2237067390,'525a725d-f20d-45f2-ab12-77c0ba0c6555',2,1580070596,1580070596,NULL),(18333480,9587971792,'8589110',1,1628048469,1628048469,NULL),(18690807,8789748667,'fe1ab5d3-c14f-497c-a17f-944ab70072a8',2,1650564272,1650564272,NULL),(18744347,4630732144,'530a4af7-2f29-4e66-afc3-427c7ad85d97',2,1581578362,1581578362,NULL),(18761550,5638157021,'44283d6c-b494-4a7a-b3df-85b785d5b6dc',2,1575458826,1575458826,NULL),(19250619,2778076782,'6ba343b5-24fa-49c4-b250-c0c84e98dde5',2,1652696577,1652696577,NULL),(19370075,1586827873,'20003421',1,1590853179,1590853179,NULL),(19475705,2372916215,'bba3e915-3c2d-4bd7-ad7e-e350719c0a48',2,1587506885,1587506885,NULL),(19601900,7765165277,'11864561',1,1625516860,1625516860,NULL),(19832958,5379385433,'24821c4b-8e6e-4a02-98a9-0bf80d25d265',3,1632019039,1632019039,NULL),(20113950,6667587611,'0c2ac124-eafd-468d-afd6-abe269dcf0d5',2,1642788950,1642788950,NULL),(20159157,7567712084,'22645490',1,1565937921,1565937921,NULL),(20207288,9433791602,'8381f6d8-229b-47c8-9bd0-029dfaba325c',2,1648788337,1648788337,NULL),(20403592,1104847051,'14455926',1,1643478789,1643478789,NULL),(20420870,8228835579,'e45bf16f-a983-4a7a-9118-6f2058d2ae59',3,1581058434,1581058434,NULL),(20458414,571321859,'79e2dfe3-7272-4a9b-b70f-eaef38e7cd01',3,1572823876,1572823876,NULL),(20869225,3943194273,'6a2a0b44-5f6a-4bb1-aa9c-a7dd72a4c3ab',2,1629785725,1629785725,NULL),(21169991,5062448174,'ca285279-da4c-45dc-a6cf-15d62347e33e',2,1639150718,1639150718,NULL),(21892738,9046793141,'e65d9011-c5ac-41db-99fb-fee78672840a',2,1652711420,1652711420,NULL),(22389339,1244905827,'954f5964-8a06-4552-8e2b-120d29dd1df7',3,1633791769,1633791769,NULL),(22461817,347473605,'48245d51-b24b-4606-98cd-6e76adb783b2',2,1644960728,1644960728,NULL),(22464670,5554690090,'1d16ebdc-f6c6-48b9-8151-436150242b31',3,1589050321,1589050321,NULL),(22511739,6616606443,'b4e13148-e638-4f1d-b26a-3e582bda1993',2,1575437567,1575437567,NULL),(22663308,6099034212,'80a5188d-aa8d-4ad3-8105-bd0b3352ae0a',3,1650050056,1650050056,NULL),(22675680,4603080630,'7782312',1,1627994863,1627994863,NULL),(22796778,6301137212,'cbd1069b-5241-4645-9aae-1e6760258c03',3,1584226649,1584226649,NULL),(22856481,1803167513,'48b28057-c542-4b2d-a2a5-b104749a43b2',2,1579051848,1579051848,NULL),(22966460,7230385025,'7910199',1,1587467838,1587467838,NULL),(23839431,2819628837,'44bbaab6-9028-4e82-9b75-fb5d6a47f863',3,1568025368,1568025368,NULL),(23978931,2245759971,'c1ba9c99-46ad-45e8-ba8b-7791c72892c3',3,1589847344,1589847344,NULL),(24170695,2400825530,'8940221',1,1635783413,1635783413,NULL),(24294395,6894836753,'f04bf381-8c95-42fc-a670-f6095cc59212',3,1586500433,1586500433,NULL),(24444093,7805274910,'19622111',1,1561810152,1561810152,NULL),(24465873,2365008794,'3d6cc52d-e235-4084-94cd-a830c3a05744',3,1590576320,1590576320,NULL),(24502919,1608926208,'20656673',1,1630598864,1630598864,NULL),(25170212,5826074172,'5eb18540-51b7-4ca1-9be6-c939e5540a0f',3,1645546955,1645546955,NULL),(25214955,7584825894,'f63b8825-13c2-4a91-a9cb-e7ae341c63da',3,1583419560,1583419560,NULL),(25863066,8381878459,'6011b77d-8483-48cf-a0e8-2c0b295faa9b',3,1584174859,1584174859,NULL),(27117317,5335697226,'19780104',1,1589239750,1589239750,NULL),(27308157,529235644,'87a1276c-f4d1-47ec-84f9-217f70621786',3,1647759016,1647759016,NULL),(27340675,5698050583,'2ce29009-5f27-43a4-bb77-c7c1d03eafa9',2,1633366461,1633366461,NULL),(27343267,7283630939,'24024445',1,1568762004,1568762004,NULL),(27403199,3215216909,'bcea6aaa-ce11-4321-a8a8-7858711e57d1',3,1562311701,1562311701,NULL),(27479274,3380193941,'eca878f9-0adf-4907-83d7-34df284ead4f',3,1622853420,1622853420,NULL),(27558960,9374926883,'8839d322-2dd5-4e1f-940b-907befb3c3c4',3,1644146443,1644146443,NULL),(27780014,4578166198,'867067b5-a07b-4506-8e9b-67c860ec2504',2,1643702914,1643702914,NULL),(27969657,3235639730,'c743ca71-a814-44cc-83c2-5b75d5d7173e',3,1648138717,1648138717,NULL),(28047310,9781850728,'9088774',1,1647472748,1647472748,NULL),(28113836,4083739286,'24004390',1,1643254252,1643254252,NULL),(28188717,943420262,'049f5327-3d5a-4fac-a911-63421f0f47a5',2,1566265714,1566265714,NULL),(28395909,685706311,'da4ec183-9a4d-4371-b9a0-c9a0e9ecde64',3,1560331515,1560331515,NULL),(28541024,4656294806,'1463997',1,1649864399,1649864399,NULL),(28592024,8767758203,'b8453af0-e406-4730-ae28-adff02b61792',3,1576260191,1576260191,NULL),(28983200,8632221396,'cbd8296f-f9c4-4778-86b7-0f5c1ac974e3',2,1560659833,1560659833,NULL),(29096865,6125609178,'3abd3669-195a-4e04-8efc-abccd316b37d',3,1626192479,1626192479,NULL),(29672290,5541431373,'4622195',1,1626669924,1626669924,NULL),(29722454,8789991655,'1fe856b2-71e7-4b15-8067-3a8f6ecad00d',3,1643195618,1643195618,NULL),(29755021,9670151643,'695a02a5-becf-41e5-a0e4-298edce60620',2,1568328062,1568328062,NULL),(29829749,9502272924,'77bc676a-2d8a-4dc6-98c5-ab50ad7da276',3,1585887714,1585887714,NULL),(29837129,1563787977,'e80d9102-9e57-4a71-99f2-b762fcd90a65',3,1638964510,1638964510,NULL),(30563906,4390510798,'2b6c94fa-1f7a-494b-a8fe-37fe4cb0172f',2,1639403075,1639403075,NULL),(30603222,1073233116,'c7ee82d0-7038-490c-bbe6-bfeb32a35e93',3,1640598199,1640598199,NULL),(30645657,766288764,'12292333',1,1572210859,1572210859,NULL),(30828825,8749264137,'f81d7743-23b2-4ef4-ae08-eb2b0097ed6e',3,1631476162,1631476162,NULL),(31488313,9100292280,'f0ea3a69-40d8-4336-88ce-b0b3eac86453',3,1565413679,1565413679,NULL),(31776892,9024364512,'12558865',1,1630960403,1630960403,NULL),(32059286,4142085915,'3e0217c4-f6e2-4e0b-ac82-86fdcde7fddd',3,1571170431,1571170431,NULL),(32380294,6770695461,'23966327',1,1644600670,1644600670,NULL),(32770165,2918894666,'3909291',1,1577297106,1577297106,NULL),(32936072,54977610,'73325c8b-6c49-4de4-bc05-843548b25612',3,1566181392,1566181392,NULL),(33053152,5595536531,'16444148',1,1629180606,1629180606,NULL),(33632573,1558137457,'76937495-6a6e-4564-b087-48696b3624bf',3,1635759765,1635759765,NULL),(33694208,1128766679,'fefa1342-e41d-4d0b-8e34-22fc19ac04f6',2,1575209462,1575209462,NULL),(34081691,3612302335,'496ebd93-e4ce-4bd3-81a8-ceb31d18c86a',3,1641478319,1641478319,NULL),(34491181,5272884678,'b8d80fec-85cd-44ac-bb11-9337286a0d28',2,1578752223,1578752223,NULL),(34545375,2359392852,'25710942',1,1633618802,1633618802,NULL),(35306979,9271181718,'694b0216-fdf6-4c64-a90f-45603c285de1',2,1638300620,1638300620,NULL),(35675422,855900485,'6928485a-ab4a-4ad7-91ee-399b88c5d880',2,1641848130,1641848130,NULL),(35882646,5349882200,'16460640',1,1630274627,1630274627,NULL),(35932489,932399426,'ada550e0-f4d2-470e-8bf8-1596718a9eb9',3,1571234586,1571234586,NULL),(36164972,9136217659,'84accee2-b84c-43f2-a1c2-abcc0638577a',2,1651786769,1651786769,NULL),(36250974,1842678656,'f711ab44-fb85-4492-a02d-17caf99a88be',2,1573829926,1573829926,NULL),(36774220,1338557760,'21333160',1,1627688641,1627688641,NULL),(37216303,990672919,'07bf3cda-5602-4905-9c41-4df476b95962',3,1566872630,1566872630,NULL),(37253858,314620446,'19070773',1,1587698481,1587698481,NULL),(37360357,1186988453,'09cd948b-5171-4a00-ae95-24edb396ce5f',3,1582221145,1582221145,NULL),(37449653,6249470480,'29211785',1,1631126261,1631126261,NULL),(37774505,8602144767,'12e77169-bdd7-4e51-930b-4ec61287c8d4',3,1631955239,1631955239,NULL),(38008470,4107797701,'16f9c22d-f5b2-4569-be2c-0df634a70b16',3,1565946606,1565946606,NULL),(38475796,8322787341,'6bd561ee-f733-4231-93e4-5be4b73127ee',3,1637171803,1637171803,NULL),(38490768,1202030517,'8e3a41b1-f1f6-4e0e-90c0-fb721b5df5c0',2,1641229214,1641229214,NULL),(38501527,5505739962,'e58c1db8-08f3-4ca4-b746-cfd6c0ee30ae',3,1648074455,1648074455,NULL),(38624827,3896747463,'e3b3d28e-4d77-4e19-b9ab-4ca249f5b611',2,1562799928,1562799928,NULL),(38734708,9451600243,'b195b31e-f869-4a95-92da-d29ede31e6ef',2,1624189939,1624189939,NULL),(39110941,7869720705,'1315ee45-a09f-4958-a414-d02a4e3686b7',2,1580643311,1580643311,NULL),(39460562,9058726304,'8856740',1,1624904593,1624904593,NULL),(39981618,7761832424,'fbdca0b4-54bc-417b-95bd-1b71c46193da',3,1575642970,1575642970,NULL),(40313757,6745162492,'25754040',1,1565989865,1565989865,NULL),(40318417,4322667860,'b8870a70-a2a0-498f-80f7-130c87ab9b4a',2,1569470317,1569470317,NULL),(40707740,356865215,'bef52407-6be1-457d-8417-ec21f2a941ea',3,1571570738,1571570738,NULL),(40808026,3812239393,'2f1db996-c354-4744-b809-2f3ca75195a3',2,1577450006,1577450006,NULL),(41601917,252575082,'5327336',1,1579494370,1579494370,NULL),(41671882,3571282929,'12877361',1,1582679110,1582679110,NULL),(41906904,1496043228,'23085803',1,1573634578,1573634578,NULL),(41920416,7863729820,'db69eee9-7b37-46c0-98ad-b2f8b7778f01',2,1578527100,1578527100,NULL),(41920901,611220373,'6a2bdeb5-730c-44ea-bde2-bbd4431817aa',3,1643831193,1643831193,NULL),(42250238,6948195993,'d7a7a062-0067-4c1c-ba2f-c4df4b9b97c1',3,1590492605,1590492605,NULL),(42503283,1059803818,'b8d81307-6ce0-40e4-a80c-d696cf7f3b74',3,1648897328,1648897328,NULL),(42527189,2058851112,'13887041',1,1652930575,1652930575,NULL),(42907363,444219673,'630a042a-9bb7-4e2f-8c4f-798904e5a2b4',2,1583423989,1583423989,NULL),(42962718,745504630,'14502088',1,1560151941,1560151941,NULL),(44166077,1829745853,'7480343',1,1639128075,1639128075,NULL),(44206079,4901176935,'bb070c95-1e0f-4d80-9c93-55ddeb742fb4',2,1639641357,1639641357,NULL),(45050091,8235507829,'d6bf7ab0-c047-4acb-aed5-38997c985a96',3,1627318455,1627318455,NULL),(45161047,9722228409,'196d21b4-05e1-4614-98fc-b602dc362a5d',2,1590360489,1590360489,NULL),(45174220,4386873487,'98982826-61b6-4bbc-8268-369f632bc142',2,1643830331,1643830331,NULL),(45181698,588182420,'4eaeaea1-8e58-4bbc-b0e5-20a7f557125c',2,1577219738,1577219738,NULL),(45919493,1945326975,'071812e3-c68f-43fc-b3a5-5e940dc75a3a',2,1630141644,1630141644,NULL),(45936872,9752192357,'13539504',1,1626668280,1626668280,NULL),(46014981,2764425140,'03cf8705-2184-490a-a7ae-0e8ee8a96550',2,1639903364,1639903364,NULL),(46190653,740774643,'161d050a-bc95-41a7-871a-692791459054',3,1568606148,1568606148,NULL),(46500191,3478552808,'28163172',1,1645996516,1645996516,NULL),(46984590,7362174758,'26794058',1,1575292036,1575292036,NULL),(47385948,861483725,'b05ec701-ee55-4f7a-b478-4c3bdf8ac6a9',2,1582303999,1582303999,NULL),(47836467,793253429,'1951677',1,1639476889,1639476889,NULL),(48141783,3842190644,'24910385',1,1579032773,1579032773,NULL),(48171506,9963097976,'25511318',1,1636072737,1636072737,NULL),(48236918,4384972092,'8f3be3c3-1c37-435d-8bbe-e820e6b1b65b',3,1561716311,1561716311,NULL),(48362088,7107813072,'01ff9688-31a8-4414-931a-559460020cc9',2,1623762660,1623762660,NULL),(48582355,2307890462,'bafc48a1-6f55-40de-a5d8-71b84e72986d',3,1646925594,1646925594,NULL),(48797912,8879015413,'2632663',1,1641161074,1641161074,NULL),(49352751,9535682504,'23667153',1,1624040661,1624040661,NULL),(49377528,6767328277,'40a7f88f-a63c-48a6-b655-1ebc31a8645d',2,1574372596,1574372596,NULL),(49413428,2008015661,'27529936-6ef1-4263-9342-65851ab3357f',2,1586449955,1586449955,NULL),(50466504,8304407235,'e2cc1a0d-17ff-479a-9d9b-83013aed01fc',2,1569028576,1569028576,NULL),(50815025,1679743688,'6876d8c8-ab35-4b4e-a8d6-e8a911becf2c',3,1647682698,1647682698,NULL),(50925345,1135753108,'243957',1,1588949097,1588949097,NULL),(51048770,2647393618,'1bc2dbb4-3286-4dea-a443-9be32be18983',3,1590487171,1590487171,NULL),(51326737,6331999653,'e78a97ec-5f1d-4183-b5e3-f172eeb9a062',2,1582534275,1582534275,NULL),(51365448,4969067457,'513118',1,1625370327,1625370327,NULL),(51484968,6362078362,'b1c72838-bb3b-47a5-bbb4-53699d8f5544',3,1623671339,1623671339,NULL),(51548808,1864924688,'12167026',1,1646784579,1646784579,NULL),(51713690,4594804402,'ff84e88d-2d7e-4d2f-993e-4489adfa927f',2,1639693500,1639693500,NULL),(51799923,3583936314,'13074881-a5c6-4a4d-a8ef-ee0854638771',3,1585276887,1585276887,NULL),(52093019,2405785323,'4ebdddf5-a1f3-4e7c-ae61-3c365df3d669',2,1575938423,1575938423,NULL),(52251205,5829503856,'524dc680-cfaf-4942-952d-9cc6574ab42d',3,1587616129,1587616129,NULL),(52596997,9051932294,'751a0e88-de86-404d-b5df-1d72bab504cd',3,1581423171,1581423171,NULL),(52897051,3760521698,'6e894db5-a1fb-4768-865d-1ceaab829224',3,1649406379,1649406379,NULL),(53346895,9462240988,'54edaced-cc90-4cf7-9ddf-9621fd98de40',2,1573829955,1573829955,NULL),(53365169,8696962628,'f3863974-6bc6-452c-b388-931aea300d3a',3,1564230466,1564230466,NULL),(53467405,1270318809,'879541',1,1641924694,1641924694,NULL),(53506674,4467561038,'17803188',1,1643242546,1643242546,NULL),(53756526,6513986978,'24445292',1,1646430850,1646430850,NULL),(53967342,3940989933,'bdce11fd-e760-447f-bea4-026f93e4e66b',3,1649109337,1649109337,NULL),(53968079,1232690154,'1d109c98-ab05-47fb-a3c8-5bf19f064a97',2,1560129526,1560129526,NULL),(54757971,1511586575,'3dce8fb6-f8b6-4f42-b421-007f471f9f1f',3,1587925031,1587925031,NULL),(54796579,9881177181,'20953358',1,1582314677,1582314677,NULL),(54827718,5430486872,'585e2b34-a04e-4d9e-9662-79d8a710c6e0',2,1563610298,1563610298,NULL),(55278418,712259150,'04b96c69-d57d-4b4b-a239-0c7cade0793c',2,1566356010,1566356010,NULL),(55716797,4076931358,'04f68438-6e9a-43ec-b4ec-6ac3bbb12d79',3,1626529796,1626529796,NULL),(56449401,7795508432,'f57f7014-2eb2-4575-9330-2287e71f4f33',2,1653032165,1653032165,NULL),(57309294,6144395360,'d2c2766a-2c49-4876-8b68-ff5e190fc064',3,1643806795,1643806795,NULL),(57360114,8687235382,'10508323',1,1624231519,1624231519,NULL),(57562571,3724392378,'37ceed50-d75f-4bc4-8305-72315c87b478',2,1564179992,1564179992,NULL),(58027026,6136263168,'f7578441-a27d-4537-b05b-ff916dc33ac5',3,1634903316,1634903316,NULL),(58121401,465972729,'e2c8ad33-841b-4152-bf84-49baa2ff9009',3,1624239128,1624239128,NULL),(58369731,6377663163,'5421886',1,1587613376,1587613376,NULL),(58385978,7558337190,'f35aff5b-43d5-40f5-8924-4bbd4cef87ec',3,1639707215,1639707215,NULL),(58755544,998256586,'0cf83cb4-653a-48f8-bf91-38df908fcce3',3,1639687485,1639687485,NULL),(58886692,5852135018,'16fa9347-b1a2-4189-8b35-2a52a3d1d43e',3,1582512057,1582512057,NULL),(59025226,7514932879,'acd8e21a-8b9c-4990-92c0-46500cd47715',2,1651075779,1651075779,NULL),(59093323,9956660454,'40747132-283f-45da-bed2-8fb720859cf4',3,1565...\G # Query 63: ID 0xA900DF232EEC7EDD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 2 -# Exec time 0 152.8ms 2.3ms 150.5ms 76.4ms 150.5ms 150.5ms +# Exec time 0 184.2ms 2.6ms 181.6ms 92.1ms 181.6ms 181.6ms # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1105,194 +1107,204 @@ SELECT * FROM user_present_all_received_history WHERE user_id=4929824682\G # EXPLAIN /*!50100 PARTITIONS*/ INSERT INTO `users` VALUES (2626206,8567,1653968612,1653968612,1571097854,1571097854,1653968612,NULL),(3398747,6216,1653870950,1653870950,1646914355,1646914355,1653870950,NULL),(3579832,437,1591426796,1591426796,1590901196,1590901196,1591426796,NULL),(3900917,1243,1654135899,1654135899,1565082929,1565082929,1654135899,NULL),(4089173,5421,1562826586,1562826586,1562300986,1562300986,1562826586,NULL),(4089723,3512,1654234244,1654234244,1652965911,1652965911,1654234244,NULL),(4588977,6046,1581153223,1581153223,1580627623,1580627623,1581153223,NULL),(4670848,7003,1561950734,1561950734,1561425134,1561425134,1561950734,NULL),(4966841,2430,1653748796,1653748796,1643431252,1643431252,1653748796,NULL),(5279455,1652,1653804404,1653804404,1645008715,1645008715,1653804404,NULL),(5321343,9048,1654171642,1654171642,1645533122,1645533122,1654171642,NULL),(7456733,7739,1653958001,1653958001,1624667220,1624667220,1653958001,NULL),(8551174,2107,1654239986,1654239986,1560363602,1560363602,1654239986,NULL),(8606201,6723,1654115673,1654115673,1630017049,1630017049,1654115673,NULL),(10208648,7746,1568271756,1568271756,1567746156,1567746156,1568271756,NULL),(10895455,625,1653885818,1653885818,1570410454,1570410454,1653885818,NULL),(11075684,1010,1653867702,1653867702,1578425011,1578425011,1653867702,NULL),(11712850,7566,1588097387,1588097387,1587571787,1587571787,1588097387,NULL),(12954894,1196,1576870890,1576870890,1576345290,1576345290,1576870890,NULL),(14005829,8862,1653992654,1653992654,1565397164,1565397164,1653992654,NULL),(14094324,8223,1572761506,1572761506,1572235906,1572235906,1572761506,NULL),(17498228,8617,1653943388,1653943388,1653531373,1653531373,1653943388,NULL),(17557615,643,1653770532,1653770532,1623185630,1623185630,1653770532,NULL),(18296410,8409,1653969311,1653969311,1650930926,1650930926,1653969311,NULL),(19087605,3999,1653692242,1653692242,1643323077,1643323077,1653692242,NULL),(19227947,2600,1653998353,1653998353,1561992644,1561992644,1653998353,NULL),(20785575,564,1569281693,1569281693,1568756093,1568756093,1569281693,NULL),(21922288,5513,1566607231,1566607231,1566081631,1566081631,1566607231,NULL),(22584054,4549,1580455672,1580455672,1579930072,1579930072,1580455672,NULL),(23187419,4798,1572156821,1572156821,1571631221,1571631221,1572156821,NULL),(23778708,9590,1654062930,1654062930,1646862300,1646862300,1654062930,NULL),(23870932,1184,1653724401,1653724401,1560072049,1560072049,1653724401,NULL),(24381866,9988,1653932735,1653932735,1647535630,1647535630,1653932735,NULL),(25188488,6699,1654248036,1654248036,1590518601,1590518601,1654248036,NULL),(25299328,3373,1653866711,1653866711,1634398931,1634398931,1653866711,NULL),(25299612,952,1589787231,1589787231,1589261631,1589261631,1589787231,NULL),(26350911,7150,1653896022,1653896022,1569529046,1569529046,1653896022,NULL),(27657913,4086,1653931941,1653931941,1633778176,1633778176,1653931941,NULL),(28090430,8852,1654215562,1654215562,1586169776,1586169776,1654215562,NULL),(28850434,6076,1653918452,1653918452,1647188656,1647188656,1653918452,NULL),(29088926,9390,1580565698,1580565698,1580040098,1580040098,1580565698,NULL),(29607061,2263,1654085565,1654085565,1590872251,1590872251,1654085565,NULL),(29676047,8660,1562043496,1562043496,1561517896,1561517896,1562043496,NULL),(30205216,9285,1654099313,1654099313,1646434424,1646434424,1654099313,NULL),(30267668,3128,1654120847,1654120847,1647919959,1647919959,1654120847,NULL),(30281689,6579,1653711297,1653711297,1638935185,1638935185,1653711297,NULL),(31527932,8300,1653915453,1653915453,1580344302,1580344302,1653915453,NULL),(32421007,620,1654065971,1654065971,1560035090,1560035090,1654065971,NULL),(32880749,6269,1654097167,1654097167,1636236006,1636236006,1654097167,NULL),(34087240,9866,1654063701,1654063701,1578624481,1578624481,1654063701,NULL),(34430243,2988,1653951030,1653951030,1572773128,1572773128,1653951030,NULL),(36475985,7968,1654109962,1654109962,1641003039,1641003039,1654109962,NULL),(36923813,9820,1569665997,1569665997,1569140397,1569140397,1569665997,NULL),(38553819,856,1653932484,1653932484,1649550340,1649550340,1653932484,NULL),(40055167,1589,1581744943,1581744943,1581219343,1581219343,1581744943,NULL),(40152943,5780,1572688547,1572688547,1572162947,1572162947,1572688547,NULL),(40226546,4167,1586509063,1586509063,1585983463,1585983463,1586509063,NULL),(40445560,6486,1573117069,1573117069,1572591469,1572591469,1573117069,NULL),(41320857,5188,1653931684,1653931684,1622369565,1622369565,1653931684,NULL),(41979724,4221,1574645140,1574645140,1574119540,1574119540,1574645140,NULL),(42473221,7288,1653861427,1653861427,1637133811,1637133811,1653861427,NULL),(43337087,1731,1653762311,1653762311,1571115285,1571115285,1653762311,NULL),(43496485,9364,1653908003,1653908003,1572185146,1572185146,1653908003,NULL),(44053894,7720,1561215417,1561215417,1560689817,1560689817,1561215417,NULL),(46489733,6041,1654161569,1654161569,1624188854,1624188854,1654161569,NULL),(47951552,8501,1654062953,1654062953,1638926719,1638926719,1654062953,NULL),(49952002,350,1654015527,1654015527,1636681692,1636681692,1654015527,NULL),(50033605,8058,1654239392,1654239392,1626645071,1626645071,1654239392,NULL),(50087884,7063,1653824724,1653824724,1569177040,1569177040,1653824724,NULL),(50874981,5088,1654040074,1654040074,1630939040,1630939040,1654040074,NULL),(54977610,3264,1566706992,1566706992,1566181392,1566181392,1566706992,NULL),(55216010,2216,1653952368,1653952368,1566816177,1566816177,1653952368,NULL),(55637116,6908,1654054548,1654054548,1652616912,1652616912,1654054548,NULL),(55647330,5424,1653927378,1653927378,1590844263,1590844263,1653927378,NULL),(56210739,9596,1653818243,1653818243,1578970017,1578970017,1653818243,NULL),(57758205,535,1653813504,1653813504,1625350111,1625350111,1653813504,NULL),(57954983,7022,1566769960,1566769960,1566244360,1566244360,1566769960,NULL),(58308449,9662,1653897914,1653897914,1624808245,1624808245,1653897914,NULL),(59355076,3508,1653820222,1653820222,1587761535,1587761535,1653820222,NULL),(59529696,3558,1579421508,1579421508,1578895908,1578895908,1579421508,NULL),(60542916,1094,1653868359,1653868359,1640696202,1640696202,1653868359,NULL),(60952072,2503,1588629804,1588629804,1588104204,1588104204,1588629804,NULL),(60998754,4993,1654007044,1654007044,1634222824,1634222824,1654007044,NULL),(61280006,8050,1654043336,1654043336,1646963980,1646963980,1654043336,NULL),(62363493,917,1653813674,1653813674,1634381756,1634381756,1653813674,NULL),(62461721,5435,1654098906,1654098906,1567282345,1567282345,1654098906,NULL),(62472156,3952,1563294282,1563294282,1562768682,1562768682,1563294282,NULL),(62507429,3824,1653802813,1653802813,1650613288,1650613288,1653802813,NULL),(62633606,612,1654194150,1654194150,1643997283,1643997283,1654194150,NULL),(63128880,1600,1561064494,1561064494,1560538894,1560538894,1561064494,NULL),(65803059,508,1577917526,1577917526,1577391926,1577391926,1577917526,NULL),(65933556,2701,1653803031,1653803031,1624290697,1624290697,1653803031,NULL),(66539951,1315,1653981660,1653981660,1584894302,1584894302,1653981660,NULL),(66946096,3817,1654019273,1654019273,1635326297,1635326297,1654019273,NULL),(67152497,1162,1653894766,1653894766,1652328768,1652328768,1653894766,NULL),(67259631,1255,1654143110,1654143110,1652434898,1652434898,1654143110,NULL),(67413151,1325,1586817625,1586817625,1586292025,1586292025,1586817625,NULL),(68245897,5385,1654210624,1654210624,1643469929,1643469929,1654210624,NULL),(68548594,2290,1653679301,1653679301,1651908880,1651908880,1653679301,NULL),(69058949,6197,1654138835,1654138835,1586369497,1586369497,1654138835,NULL),(70309020,4169,1654049871,1654049871,1639910327,1639910327,1654049871,NULL),(71701218,2727,1653925055,1653925055,1642840648,1642840648,1653925055,NULL),(71805998,9737,1563433520,1563433520,1562907920,1562907920,1563433520,NULL),(72075836,931,1653804303,1653804303,1651968558,1651968558,1653804303,NULL),(72320520,9477,1653902568,1653902568,1579651674,1579651674,1653902568,NULL),(72629382,883,1584543513,1584543513,1584017913,1584017913,1584543513,NULL),(73107485,8637,1570641003,1570641003,1570115403,1570115403,1570641003,NULL),(74410250,4154,1583791754,1583791754,1583266154,1583266154,1583791754,NULL),(74445234,337,1654010911,1654010911,1629164660,1629164660,1654010911,NULL),(75210271,8686,1563093224,1563093224,1562567624,1562567624,1563093224,NULL),(77669571,4155,1572138537,1572138537,1571612937,1571612937,1572138537,NULL),(79010549,5088,1572832906,1572832906,1572307306,1572307306,1572832906,NULL),(79537068,691,1654127538,1654127538,1630702178,1630702178,1654127538,NULL),(79540459,3258,1572717743,1572717743,1572192143,1572192143,1572717743,NULL),(79541020,1739,1654252467,1654252467,1637737168,1637737168,1654252467,NULL),(79707525,3988,1654133865,1654133865,1635043396,1635043396,1654133865,NULL),(80790199,7160,1582872539,1582872539,1582346939,1582346939,1582872539,NULL),(81977580,6127,1654225765,1654225765,1645724834,1645724834,1654225765,NULL),(82515488,3529,1588110349,1588110349,1587584749,1587584749,1588110349,NULL),(83378594,9852,1574880395,1574880395,1574354795,1574354795,1574880395,NULL),(83756502,7695,1654230598,1654230598,1566912151,1566912151,1654230598,NULL),(84248902,9242,1654152386,1654152386,1631400960,1631400960,1654152386,NULL),(84926826,1889,1653908009,1653908009,1641024455,1641024455,1653908009,NULL),(86135804,5256,1653965812,1653965812,1642881355,1642881355,1653965812,NULL),(87315435,6444,1586557209,1586557209,1586031609,1586031609,1586557209,NULL),(88562997,2364,1653853716,1653853716,1644545394,1644545394,1653853716,NULL),(88663472,329,1653816022,1653816022,1574770614,1574770614,1653816022,NULL),(88744379,7507,1654100883,1654100883,1651019529,1651019529,1654100883,NULL),(90493731,8150,1653965421,1653965421,1585183110,1585183110,1653965421,NULL),(90964346,3518,1653945617,1653945617,1628034053,1628034053,1653945617,NULL),(92252924,4466,1654256551,1654256551,1630443774,1630443774,1654256551,NULL),(92674165,8240,1585164435,1585164435,1584638835,1584638835,1585164435,NULL),(92753977,7449,1567574328,1567574328,1567048728,1567048728,1567574328,NULL),(92975606,6740,1653952013,1653952013,1648988795,1648988795,1653952013,NULL),(93623630,142,1653722302,1653722302,1581966751,1581966751,1653722302,NULL),(94635128,288,1654058687,1654058687,1562408106,1562408106,1654058687,NULL),(95283028,557,1654117289,1654117289,1638706215,1638706215,1654117289,NULL),(95497784,7081,1654054902,1654054902,1635759140,1635759140,1654054902,NULL),(95993370,3306,1573128546,1573128546,1572602946,1572602946,1573128546,NULL),(95998147,7615,1653835960,1653835960,1624394580,1624394580,1653835960,NULL),(96169350,3622,1654080587,1654080587,1625031278,1625031278,1654080587,NULL),(98794050,2736,1574776071,1574776071,1574250471,1574250471,1574776071,NULL),(100519703,1794,1653919866,1653919866,1562299436,1562299436,1653919866,NULL),(100927557,3436,1581389806,1581389806,1580864206,1580864206,1581389806,NULL),(101232748,7198,1654142468,1654142468,1631835784,1631835784,1654142468,NULL),(101732505,8748,1654139489,1654139489,1636066471,1636066471,1654139489,NULL),(103343101,7905,1574209925,1574209925,1573684325,1573684325,1574209925,NULL),(103782730,5196,1653706160,1653706160,1574606956,1574606956,1653706160,NULL),(104862398,9966,1653856430,1653856430,1636548491,1636548491,1653856430,NULL),(106172579,2820,1591680672,1591680672,1591155072,1591155072,1591680672,NULL),(107310254,9892,1574233124,1574233124,1573707524,1573707524,1574233124,NULL),(108392311,5577,1579048019,1579048019,1578522419,1578522419,1579048019,NULL),(110397988,4643,1654107676,1654107676,1573309099,1573309099,1654107676,NULL),(110426420,8515,1653971820,1653971820,1576307984,1576307984,1653971820,NULL),(110451341,5530,1653926386,1653926386,1631447234,1631447234,1653926386,NULL),(111238811,1880,1654035521,1654035521,1651400489,1651400489,1654035521,NULL),(111332422,73,1654249159,1654249159,1643506077,1643506077,1654249159,NULL),(111570784,1759,1654223070,1654223070,1564780258,1564780258,1654223070,NULL),(111698588,817,1654052788,1654052788,1642173358,1642173358,1654052788,NULL),(112116515,9468,1654132626,1654132626,1650861974,1650861974,1654132626,NULL),(112244877,7774,1654223375,1654223375,1626245951,1626245951,1654223375,NULL),(112744515,7427,1654211120,1654211120,1634408366,1634408366,1654211120,NULL),(112771901,3748,1654011468,1654011468,1579875898,1579875898,1654011468,NULL),(113771348,3894,1587508610,1587508610,1586983010,1586983010,1587508610,NULL),(114675687,1888,1582425229,1582425229,1581899629,1581899629,1582425229,NULL),(115394547,1451,1653811575,1653811575,1638177199,1638177199,1653811575,NULL),(115433373,260,1653986298,1653986298,1630674451,1630674451,1653986298,NULL),(116199062,5784,1575558428,1575558428,1575032828,1575032828,1575558428,NULL),(116822478,6157,1653783695,1653783695,1627384304,1627384304,1653783695,NULL),(117083620,767,1654240719,1654240719,1643906924,1643906924,1654240719,NULL),(118549906,5393,1587681022,1587681022,1587155422,1587155422,1587681022,NULL),(118606521,3298,1564112346,1564112346,1563586746,1563586746,1564112346,NULL),(119107036,7516,1569300721,1569300721,1568775121,1568775121,1569300721,NULL),(121629850,1062,1654032520,1654032520,1628789172,1628789172,1654032520,NULL),(123140472,2033,1653946482,1653946482,1649066510,1649066510,1653946482,NULL),(124044560,7935,1653694152,1653694152,1648507329,1648507329,1653694152,NULL),(124747052,4000,1653910693,1653910693,1640665197,1640665197,1653910693,NULL),(124969073,4499,1654048523,1654048523,1645555816,1645555816,1654048523,NULL),(125552283,4424,1653840175,1653840175,1576777762,1576777762,1653840175,NULL),(126570700,3484,1653944365,1653944365,1633543107,1633543107,1653944365,NULL),(127047138,8649,1591643930,1591643930,1591118330,1591118330,1591643930,NULL),(127149951,3769,1654264332,1654264332,1623963469,1623963469,1654264332,NULL),(127166874,1605,1653877750,1653877750,1569769451,1569769451,1653877750,NULL),(127714476,2532,1654267521,1654267521,1623073838,1623073838,1654267521,NULL),(128187075,8348,1653964979,1653964979,1564933792,1564933792,1653964979,NULL),(128344267,6157,1653931464,1653931464,1635673920,1635673920,1653931464,NULL),(128773267,6089,1570215196,1570215196,1569689596,1569689596,1570215196,NULL),(128994421,6676,1653700715,1653700715,1648478632,1648478632,1653700715,NULL),(129117426,3772,1653800816,1653800816,1582264448,1582264448,1653800816,NULL),(129885358,8698,1571269403,1571269403,1570743803,1570743803,1571269403,NULL),(130391736,1796,1653853349,1653853349,1643411538,1643411538,1653853349,NULL),(132352469,6175,1654013263,1654013263,1652128368,1652128368,1654013263,NULL),(134031420,1219,1587368220,1587368220,1586842620,1586842620,1587368220,NULL),(135431976,7518,1654012011,1654012011,1567123049,1567123049,1654012011,NULL),(135580353,3074,1653663605,1653663605,1639884961,1639884961,1653663605,NULL),(135669101,2416,1565888557,1565888557,1565362957,1565362957,1565888557,NULL),(135778144,4314,1577185250,1577185250,1576659650,1576659650,1577185250,NULL),(136096165,4759,1653703715,1653703715,1638665122,1638665122,1653703715,NULL),(136125821,8759,1653870572,1653870572,1628758725,1628758725,1653870572,NULL),(136312822,675,1568866629,1568866629,1568341029,1568341029,1568866629,NULL),(136759603,3173,1566367041,1566367041,1565841441,1565841441,1566367041,NULL),(136929773,1710,1653685727,1653685727,1625767588,1625767588,1653685727,NULL),(136942270,8330,1653718943,1653718943,1578058880,1578058880,1653718943,NULL),(137048951,7226,1654064069,1654064069,1623133000,1623133000,1654064069,NULL),(138722196,1226,1654146142,1654146142,1644529170,1644529170,1654146142,NULL),(138957461,1239,1654121485,1654121485,1572333746,1572333746,1654121485,NULL),(139467304,2748,1654148464,1654148464,1645211987,1645211987,1654148464,NULL),(140750274,486,1579859573,1579859573,1579333973,1579333973,1579859573,NULL),(142250733,4120,1653977214,1653977214,1587986931,1587986931,1653977214,NULL),(142616262,8311,1654072020,1654072020,1625693109,1625693109,1654072020,NULL),(143250795,8696,1584148965,1584148965,1583623365,1583623365,1584148965,NULL),(144944440,8106,1654099419,1654099419,1642950756,1642950756,1654099419,NULL),(147412929,8262,1653689967,1653689967,1650078672,1650078672,1653689967,NULL),(148385704,6712,1653744267,1653744267,1564264677,1564264677,1653744267,NULL),(148959599,9709,1653872875,1653872875,1652391976,1652391976,1653872875,NULL),(149337513,4710,1653943086,1653943086,1585572735,1585572735,1653943086,NULL),(149412244,3953,1582588408,1582588408,1582062808,1582062808,1582588408,NULL),(150118609,3827,1653878868,1653878868,1571349795,1571349795,1653878868,NULL),(150398255,4693,1653748722,1653748722,1653055085,1653055085,1653748722,NULL),(151088913,2267,1561410718,1561410718,1560885118,1560885118,1561410718,NULL),(151278982,1696,1653969454,1653969454,1578103643,1578103643,1653969454,NULL),(151441646,1795,1654235373,1654235373,1635274777,1635274777,1654235373,NULL),(153155529,3841,1653692992,1653692992,1567601494,1567601494,1653692992,NULL),(153265226,2243,1565479554,1565479554,1564953954,1564953954,1565479554,NULL),(154694521,8096,1654051377,1654051377,1630908723,1630908723,1654051377,NULL),(155253059,3652,1653877679,1653877679,1643683764,1643683764,1653877679,NULL),(155776624,4079,1653803620,1653803620,1580601149,1580601149,1653803620,NULL),(156535273,7374,1653968343,1653968343,1642862734,1642862734,1653968343,NULL),(157534879,2151,1567858246,1567858246,1567332646,1567332646,1567858246,NULL),(157609415,727,1570597389,1570597389,1570071789,1570071789,1570597389,NULL),(159721824,1057,1654100671,1654100671,1581662527,1581662527,1654100671,NULL),(160356630,9896,1653943733,1653943733,1647566844,1647566844,1653943733,NULL),(160610615,4138,1654256217,1654256217,1623549745,1623549745,1654256217,NULL),(160762670,2412,1580077967,1580077967,1579552367,1579552367,1580077967,NULL),(161777537,2770,1574063954,1574063954,1573538354,1573538354,1574063954,NULL),(162851951,3347,1574817982,1574817982,1574292382,1574292382,1574817982,NULL),(164514143,7204,1653666331,1653666331,1630366072,1630366072,1653666331,NULL),(165042777,4562,1653851286,1653851286,1628598281,1628598281,1653851286,NULL),(165070220,5014,1653925952,1653925952,1584301017,1584301017,1653925952,NULL),(165265008,9208,1564537847,1564537847,1564012247,1564012247,1564537847,NULL),(166059429,3062,1653791704,1653791704,1581555451,1581555451,1653791704,NULL),(168631985,2472,1653758845,1653758845,1644382926,1644382926,1653758845,NULL),(168926878,8749,1568398302,1568398302,1567872702,1567872702,1568398302,NULL),(170267642,7547,1653980683,1653980683,1577159175,1577159175,1653980683,NULL),(170365067,6596,1653825589,1653825589,1634789118,1634789118,1653825589,NULL),(171002982,8445,1654032349,1654032349,1630650498,1630650498,1654032349,NULL),(171409497,750,1654232240,1654232240,1624239788,1624239788,1654232240,NULL),(172310575,4010,1654137744,1654137744,1583541028,1583541028,1654137744,NULL),(174011645,9095,1589952633,1589952633,1589427033,1589427033,1589952633,NULL),(176071597,5452,1654168796,1654168796,1639300512,1639300512,1654168796,NULL),(176641520,1482,1653704797,1653704797,1561637839,1561637839,1653704797,NULL),(177980595,5947,1654016281,1654016281,1638032236,1638032236,1654016281,NULL),(178645530,6465,1653929112,1653929112,1637272513,1637272513,1653929112,NULL),(180142807,871,1590123221,1590123221,1589597621,1589597621,1590123221,NULL),(180783494,2830,1654121352,1654121352,1647019653,1647019653,1654121352,NULL),(180924436,807,1561521497,1561521497,1560995897,1560995897,1561521497,NULL),(181887341,3097,1654155974,1654155974,1641456442,1641456442,1654155974,NULL),(183680427,8657,1653820353,1653820353,1644263729,1644263729,1653820353,NULL),(184025326,4564,1590671432,1590671432,1590145832,1590145832,1590671432,NULL),(186456642,7726,1654145892,1654145892,1623303493,1623303493,1654145892,NULL),(186574454,378,1654221876,1654221876,1570972577,1570972577,1654221876,NULL),(186618801,8068,1653726595,1653726595,1641609821,1641609821,1653726595,NULL),(186994717,5248,1653927134,1653927134,1629296366,1629296366,1653927134,NULL),(187613927,2639,1567074827,1567074827,1566549227,1566549227,1567074827,NULL),(188520377,9130,1653804239,1653804239,1637918972,1637918972,1653804239,NULL),(188619917,855,1653809304,1653809304,1641079265,1641079265,1653809304,NULL),(189634728,2938,1653955904,1653955904,1573439041,1573439041,1653955904,NULL),(190405759,3890,1654266846,1654266846,1633101002,1633101002,1654266846,NULL),(19...\G -# Query 64: ID 0x2A385C2101E13805 +# Query 64: ID 0x5F782062E60690B4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 126.4ms 126.4ms 126.4ms 126.4ms 126.4ms 126.4ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 178.8ms 178.8ms 178.8ms 178.8ms 178.8ms 178.8ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_cards`\G +INSERT INTO `user_decks` VALUES (2626206,2626206,4611598449,99088668151,13161671868,1571097854,1571097854,NULL),(3398747,3398747,99988399593,469904290,25303192871,1646914355,1646914355,NULL),(3579832,3579832,39462347272,75846778790,76264550672,1590901196,1590901196,NULL),(3900917,3900917,17662287090,87822475986,13164618760,1565082929,1565082929,NULL),(4089173,4089173,29798807167,11721976740,4701424080,1562300986,1562300986,NULL),(4089723,4089723,29714835123,26312072962,44514170972,1652965911,1652965911,NULL),(4588977,4588977,72406828935,27634102601,51150770112,1580627623,1580627623,NULL),(4670848,4670848,57578459961,42157634119,36260238291,1561425134,1561425134,NULL),(4966841,4966841,81831330576,48561610563,12598181768,1643431252,1643431252,NULL),(5279455,5279455,19246800321,19927706676,48191068949,1645008715,1645008715,NULL),(8551174,8551174,53575991053,84891156978,20924849654,1560363602,1560363602,NULL),(8606201,8606201,66778605842,27128784612,26607092716,1630017049,1630017049,NULL),(10208648,10208648,60508870888,84658077429,5439335861,1567746156,1567746156,NULL),(10895455,10895455,16923970759,4315212605,81252920249,1570410454,1570410454,NULL),(11075684,11075684,45698771877,26398408953,44945333739,1578425011,1578425011,NULL),(11712850,11712850,94334270016,75904372432,2341482637,1587571787,1587571787,NULL),(12954894,12954894,50649497535,43773876599,76859732326,1576345290,1576345290,NULL),(14005829,14005829,83529178051,80333889068,79220440500,1565397164,1565397164,NULL),(14094324,14094324,45349874241,67626294004,30409482053,1572235906,1572235906,NULL),(17557615,17557615,79599940116,93374590249,60791259591,1623185630,1623185630,NULL),(19087605,19087605,87947431323,492849339,81216884658,1643323077,1643323077,NULL),(19227947,19227947,76812873029,12335134139,63619360715,1561992644,1561992644,NULL),(20785575,20785575,68849455550,67242416444,13778332577,1568756093,1568756093,NULL),(21922288,21922288,14368850209,91033550717,69314942662,1566081631,1566081631,NULL),(22584054,22584054,703484614,59734458623,95891569352,1579930072,1579930072,NULL),(23187419,23187419,39794556160,67835586549,16406651304,1571631221,1571631221,NULL),(23778708,23778708,4840285214,40120059385,27434668621,1646862300,1646862300,NULL),(23870932,23870932,70795371831,40122916346,15706959965,1560072049,1560072049,NULL),(24381866,24381866,24134181141,39929457830,34923827194,1647535630,1647535630,NULL),(25188488,25188488,4089894477,8468758372,53803703411,1590518601,1590518601,NULL),(25299612,25299612,8891080169,91840080522,73863269947,1589261631,1589261631,NULL),(26350911,26350911,47204701806,2785158626,53235689461,1569529046,1569529046,NULL),(28090430,28090430,9828955744,9452635181,71027934335,1586169776,1586169776,NULL),(28850434,28850434,68913929001,61666546565,31776867880,1647188656,1647188656,NULL),(29088926,29088926,49385976209,9706665551,56140772605,1580040098,1580040098,NULL),(29607061,29607061,98182546259,93458274432,52196895193,1590872251,1590872251,NULL),(29676047,29676047,65418604645,49062965473,7331677602,1561517896,1561517896,NULL),(30267668,30267668,56795619478,47592401763,32910382050,1647919959,1647919959,NULL),(31527932,31527932,4688378672,69814449611,72675435470,1580344302,1580344302,NULL),(32421007,32421007,96655396173,61139194935,49219884646,1560035090,1560035090,NULL),(34087240,34087240,8968550153,61099691228,8430177663,1578624481,1578624481,NULL),(34430243,34430243,79443403265,24392934781,75887748330,1572773128,1572773128,NULL),(36475985,36475985,2200605572,21199318869,27616493984,1641003039,1641003039,NULL),(36923813,36923813,12579703781,84362224552,66143826035,1569140397,1569140397,NULL),(38553819,38553819,71057501054,20653142503,40213817309,1649550340,1649550340,NULL),(40055167,40055167,44211022610,42191048905,34107764967,1581219343,1581219343,NULL),(40152943,40152943,28490948648,58013474834,51859465922,1572162947,1572162947,NULL),(40226546,40226546,46850397820,39341676973,13023180735,1585983463,1585983463,NULL),(40445560,40445560,83844424043,14872044921,56694087767,1572591469,1572591469,NULL),(41979724,41979724,37004325437,16134890827,72470764291,1574119540,1574119540,NULL),(42473221,42473221,64261116969,63873057964,8248805573,1637133811,1637133811,NULL),(43337087,43337087,52522463116,8005121618,29599724264,1571115285,1571115285,NULL),(43496485,43496485,72725075263,28326427198,23981513556,1572185146,1572185146,NULL),(44053894,44053894,40334904466,57416899715,15799677513,1560689817,1560689817,NULL),(46489733,46489733,48123576635,85251484685,59683447254,1624188854,1624188854,NULL),(47951552,47951552,51708352198,49831372269,499031892,1638926719,1638926719,NULL),(49952002,49952002,20066551750,5446112611,91032904688,1636681692,1636681692,NULL),(50033605,50033605,39118015514,22242884823,4561289670,1626645071,1626645071,NULL),(50087884,50087884,9921900783,44510214217,34825978271,1569177040,1569177040,NULL),(54977610,54977610,5294094428,39144285759,59626958327,1566181392,1566181392,NULL),(55216010,55216010,86176149108,89360855456,18806836240,1566816177,1566816177,NULL),(55637116,55637116,97907409748,79872456826,1335270914,1652616912,1652616912,NULL),(55647330,55647330,43544505989,59182896438,70692220903,1590844263,1590844263,NULL),(56210739,56210739,32762929872,39734445193,20571731883,1578970017,1578970017,NULL),(57758205,57758205,94960959249,27800476550,32316784360,1625350111,1625350111,NULL),(57954983,57954983,34660531185,26184106968,16136064308,1566244360,1566244360,NULL),(59355076,59355076,30226390024,68182520636,20575276160,1587761535,1587761535,NULL),(59529696,59529696,10379877577,80843805652,47456194479,1578895908,1578895908,NULL),(60952072,60952072,48843890840,63217486008,47545430997,1588104204,1588104204,NULL),(60998754,60998754,34680453341,84676534669,78277457961,1634222824,1634222824,NULL),(62363493,62363493,6915983707,18536699295,84714982799,1634381756,1634381756,NULL),(62461721,62461721,8718813019,30464946485,37167718297,1567282345,1567282345,NULL),(62472156,62472156,89425026161,82100801119,16331729242,1562768682,1562768682,NULL),(62507429,62507429,24517309269,32261639083,38296225380,1650613288,1650613288,NULL),(62633606,62633606,16377655282,2393187715,89230330743,1643997283,1643997283,NULL),(63128880,63128880,29270189194,64413937690,30999092924,1560538894,1560538894,NULL),(65803059,65803059,38250306805,84488305017,93807344432,1577391926,1577391926,NULL),(66539951,66539951,59798615200,78402265947,68466270129,1584894302,1584894302,NULL),(66946096,66946096,223539008,27715858129,13728823610,1635326297,1635326297,NULL),(67152497,67152497,47359322171,77518640561,82507666380,1652328768,1652328768,NULL),(67259631,67259631,21291222864,75235952855,40204011122,1652434898,1652434898,NULL),(67413151,67413151,36204210584,97877060372,57389562519,1586292025,1586292025,NULL),(69058949,69058949,32079135152,95818726300,54938396332,1586369497,1586369497,NULL),(70309020,70309020,62243201861,54581819260,6863819206,1639910327,1639910327,NULL),(71805998,71805998,71455117652,80354596183,70987496620,1562907920,1562907920,NULL),(72320520,72320520,93004514813,32801621692,99802556408,1579651674,1579651674,NULL),(72629382,72629382,34554360681,52646565264,20050867379,1584017913,1584017913,NULL),(73107485,73107485,33712621571,35671643885,23563343379,1570115403,1570115403,NULL),(74410250,74410250,68971256323,2273863898,34774506932,1583266154,1583266154,NULL),(74445234,74445234,97803111211,31982748932,62944929535,1629164660,1629164660,NULL),(75210271,75210271,31865489129,73453902343,4984203851,1562567624,1562567624,NULL),(77669571,77669571,15352663928,46746870185,14950015266,1571612937,1571612937,NULL),(79010549,79010549,73219048349,42555183639,1280117526,1572307306,1572307306,NULL),(79537068,79537068,37833337490,42304992741,60974570916,1630702178,1630702178,NULL),(79540459,79540459,68056179794,30903915439,22843681449,1572192143,1572192143,NULL),(79541020,79541020,96038061445,95625489677,30486671137,1637737168,1637737168,NULL),(80790199,80790199,43217468049,69716895122,34584129835,1582346939,1582346939,NULL),(81977580,81977580,82418419461,72021205647,47048553304,1645724834,1645724834,NULL),(82515488,82515488,565471376,58467695353,56030135189,1587584749,1587584749,NULL),(83378594,83378594,35526396959,95308639314,46748931443,1574354795,1574354795,NULL),(83756502,83756502,56586315781,88011083184,71680017229,1566912151,1566912151,NULL),(84926826,84926826,91183744583,78384034354,32069263275,1641024455,1641024455,NULL),(86135804,86135804,57193405619,1886404776,23962818573,1642881355,1642881355,NULL),(87315435,87315435,2410114124,88951468459,19384154312,1586031609,1586031609,NULL),(88562997,88562997,12512981238,35154296421,29701544640,1644545394,1644545394,NULL),(88663472,88663472,95490140131,35561357370,27858953280,1574770614,1574770614,NULL),(90493731,90493731,19825188281,2358865172,71077023333,1585183110,1585183110,NULL),(92674165,92674165,50201664486,82844830259,70818222001,1584638835,1584638835,NULL),(92753977,92753977,57198994158,19533976089,36783241724,1567048728,1567048728,NULL),(92975606,92975606,54966388919,62404358451,26984320409,1648988795,1648988795,NULL),(93623630,93623630,2495630579,15535225344,8639759220,1581966751,1581966751,NULL),(94635128,94635128,88347699142,73007306908,61425881592,1562408106,1562408106,NULL),(95497784,95497784,83492483254,80813126497,7243432250,1635759140,1635759140,NULL),(95993370,95993370,77426234789,55834214569,10736403198,1572602946,1572602946,NULL),(96169350,96169350,97053061428,77142635161,41793223995,1625031278,1625031278,NULL),(98794050,98794050,51571316297,22607217063,34384904983,1574250471,1574250471,NULL),(100519703,100519703,42470298239,97939752991,14710745215,1562299436,1562299436,NULL),(100927557,100927557,5417586929,24862820099,87101130207,1580864206,1580864206,NULL),(103343101,103343101,40561489766,58589519637,27921743444,1573684325,1573684325,NULL),(103782730,103782730,39240719166,20518993682,29551350,1574606956,1574606956,NULL),(104862398,104862398,41751509958,53904720123,45221529191,1636548491,1636548491,NULL),(106172579,106172579,88704389039,35644650736,2208353805,1591155072,1591155072,NULL),(107310254,107310254,45892710389,88964979688,77414015001,1573707524,1573707524,NULL),(108392311,108392311,4851110162,49130348103,57227348932,1578522419,1578522419,NULL),(110397988,110397988,93140714730,46442355674,38295513740,1573309099,1573309099,NULL),(110426420,110426420,44566760521,42298983009,19311653934,1576307984,1576307984,NULL),(111332422,111332422,94838650191,18596239020,42410427051,1643506077,1643506077,NULL),(111570784,111570784,58042679991,14931226278,30163191120,1564780258,1564780258,NULL),(111698588,111698588,67609430744,57070876302,21292424070,1642173358,1642173358,NULL),(112116515,112116515,78348841244,98454004630,72952275317,1650861974,1650861974,NULL),(112744515,112744515,4549988347,78779707305,84534992569,1634408366,1634408366,NULL),(112771901,112771901,19793273020,17396657360,84692196634,1579875898,1579875898,NULL),(113771348,113771348,33501885048,94053686828,3731648031,1586983010,1586983010,NULL),(114675687,114675687,79412941762,83773724793,58500092925,1581899629,1581899629,NULL),(116199062,116199062,4690286031,96832408881,12234238695,1575032828,1575032828,NULL),(116822478,116822478,76180422765,90097384019,71472647513,1627384304,1627384304,NULL),(117083620,117083620,41110439002,65341453744,18070004658,1643906924,1643906924,NULL),(118549906,118549906,52126445997,71846863579,86792780336,1587155422,1587155422,NULL),(118606521,118606521,99445391287,48067831738,86208706874,1563586746,1563586746,NULL),(119107036,119107036,16755801521,96185011295,15674818629,1568775121,1568775121,NULL),(123140472,123140472,2250408308,77219015672,23567793237,1649066510,1649066510,NULL),(124747052,124747052,38626829491,42407053314,57422198940,1640665197,1640665197,NULL),(125552283,125552283,27530783225,15832674178,87385004088,1576777762,1576777762,NULL),(127047138,127047138,52325067265,48347797167,65348409235,1591118330,1591118330,NULL),(127149951,127149951,19341489705,4866981301,52955669925,1623963469,1623963469,NULL),(127166874,127166874,82822454893,18505734837,41458876702,1569769451,1569769451,NULL),(127714476,127714476,79591396348,40299432147,95345158855,1623073838,1623073838,NULL),(128187075,128187075,33019632250,68469131406,24022394758,1564933792,1564933792,NULL),(128773267,128773267,67164691595,23860037900,52672284345,1569689596,1569689596,NULL),(128994421,128994421,15763634030,18212099002,97958491270,1648478632,1648478632,NULL),(129117426,129117426,94170366791,27224868946,31938608297,1582264448,1582264448,NULL),(129885358,129885358,41459067296,88802082167,83816028381,1570743803,1570743803,NULL),(132352469,132352469,8085875902,11953000747,19273023606,1652128368,1652128368,NULL),(134031420,134031420,43964875257,34164889876,24508970859,1586842620,1586842620,NULL),(135431976,135431976,29807790804,96395679878,95939520498,1567123049,1567123049,NULL),(135580353,135580353,70487333975,16147969767,90386708009,1639884961,1639884961,NULL),(135669101,135669101,66934091411,45531636414,83171008703,1565362957,1565362957,NULL),(135778144,135778144,51861038449,5306891401,61733722255,1576659650,1576659650,NULL),(136096165,136096165,78772773404,32539682420,43990453158,1638665122,1638665122,NULL),(136312822,136312822,13565565941,68714999713,2729400937,1568341029,1568341029,NULL),(136759603,136759603,57523317512,37996419223,15491282666,1565841441,1565841441,NULL),(136942270,136942270,85069695719,80814525508,88309738962,1578058880,1578058880,NULL),(137048951,137048951,46840350592,1103733516,28091298405,1623133000,1623133000,NULL),(138957461,138957461,89288993509,25378486237,60365803870,1572333746,1572333746,NULL),(140750274,140750274,91002148542,61039517360,93435592872,1579333973,1579333973,NULL),(142250733,142250733,57509508512,55667205074,71412344872,1587986931,1587986931,NULL),(143250795,143250795,89953861171,38820225031,84981344623,1583623365,1583623365,NULL),(148385704,148385704,54014235264,28959818360,57684849539,1564264677,1564264677,NULL),(149337513,149337513,91008159156,91681562263,58335420478,1585572735,1585572735,NULL),(149412244,149412244,61791079959,44701756015,89614897076,1582062808,1582062808,NULL),(150118609,150118609,65377524609,39437713058,89744044268,1571349795,1571349795,NULL),(150398255,150398255,26316085024,23482082170,99482680005,1653055085,1653055085,NULL),(151088913,151088913,88714139265,69654474784,44946635566,1560885118,1560885118,NULL),(151278982,151278982,72513476666,56044071297,22349760841,1578103643,1578103643,NULL),(151441646,151441646,97405028877,45860572265,61459559152,1635274777,1635274777,NULL),(153155529,153155529,4551302160,1898062977,56484960352,1567601494,1567601494,NULL),(153265226,153265226,29290005599,21415195346,85865589456,1564953954,1564953954,NULL),(155253059,155253059,29933211511,70576754925,25019986130,1643683764,1643683764,NULL),(155776624,155776624,82021522846,29550865830,82742335379,1580601149,1580601149,NULL),(157534879,157534879,17218854274,89428729097,56043089437,1567332646,1567332646,NULL),(157609415,157609415,20900457276,6473687893,21996169088,1570071789,1570071789,NULL),(159721824,159721824,41833451245,48191080702,35670205126,1581662527,1581662527,NULL),(160356630,160356630,7052049383,62972173913,4376385619,1647566844,1647566844,NULL),(160762670,160762670,44368487283,96069900649,32442026800,1579552367,1579552367,NULL),(161777537,161777537,82518109815,41298075919,27581279256,1573538354,1573538354,NULL),(162851951,162851951,11098570367,25137826799,43689199252,1574292382,1574292382,NULL),(165042777,165042777,70994215426,39241513683,81201427096,1628598281,1628598281,NULL),(165070220,165070220,6763503920,13144925051,40422788739,1584301017,1584301017,NULL),(165265008,165265008,65540745101,80937679788,26105739189,1564012247,1564012247,NULL),(166059429,166059429,26677188587,15974382625,12080789038,1581555451,1581555451,NULL),(168926878,168926878,30837094220,57947360831,56973879825,1567872702,1567872702,NULL),(170267642,170267642,47187119414,81806762604,4172061675,1577159175,1577159175,NULL),(170365067,170365067,35665761593,58806527868,28432841575,1634789118,1634789118,NULL),(171002982,171002982,84809856521,77568566917,29965700726,1630650498,1630650498,NULL),(172310575,172310575,67754412488,60978552971,94626560038,1583541028,1583541028,NULL),(174011645,174011645,84987817529,40838508234,69946772529,1589427033,1589427033,NULL),(176641520,176641520,17475704659,74697476966,22859510784,1561637839,1561637839,NULL),(180142807,180142807,3569993063,92908604880,21756623386,1589597621,1589597621,NULL),(180783494,180783494,58019185578,12243591197,8487620937,1647019653,1647019653,NULL),(180924436,180924436,85203590468,70352330001,17328449706,1560995897,1560995897,NULL),(181887341,181887341,25475271429,67775888106,94027285183,1641456442,1641456442,NULL),(183680427,183680427,81896825955,95907570236,8109838889,1644263729,1644263729,NULL),(184025326,184025326,66833051878,39875866756,37933731966,1590145832,1590145832,NULL),(186574454,186574454,31256889089,8772224165,45222261947,1570972577,1570972577,NULL),(186618801,186618801,12723319900,60681347196,84240472281,1641609821,1641609821,NULL),(187613927,187613927,37695430010,89918238385,41943970774,1566549227,1566549227,NULL),(189634728,189634728,91232117380,9494264610,32750121605,1573439041,1573439041,NULL),(190886346,190886346,43394203350,48371039823,60181288355,1628852034,1628852034,NULL),(192266761,192266761,61217200173,45080300165,34478915502,1640486598,1640486598,NULL),(194196024,194196024,36785484790,56982729019,54100211223,1571224657,1571224657,NULL),(194485597,194485597,27509788696,89171377907,77490271569,1622443351,1622443351,NULL),(195265593,195265593,96911311523,6364272901,6634869298,1638834540,1638834540,NULL),(195790710,195790710,92654178246,94869692007,65734284890,1566925729,1566925729,NULL),(198692862,198692862,36141839830,97859031960,57215165731,1644612127,1644612127,NULL),(201133820,201133820,55290077362,17489550371,92885607326,1569407045,1569407045,NULL),(201425259,201425259,4205259642,16676097588,8261391669,1576338398,1576338398,NULL),(202174877,202174877,10206441098,71098914164,808590751,1562882412,1562882412,NULL),(203495987,203495987,64269662019,27576860165,21833656417,1576614288,1576614288,NULL),(204047677,204047677,55667724976,49017193163,56541772777,1630021220,1630021220,NULL),(204789001,204789001,60181098694,94448956990,65280402075,1574670041,1574670041,NULL),(208816451,208816451,56055233866,62493633024,36312713977,1587290898,1587290898,NULL),(211588950,211588950,32193013630,62827547431,50147051619,1646004557,1646004557,NULL),(212158684,212158684,38245375256,1562387239,85343968064,1638067594,1638067594,NULL),(212202958,212202958,13792104466,72527448893,60400284367,1631909466,1631909466,NULL),(212469861,212469861,21407007970,77462710203,55343255474,1560670046,1560670046,NULL),(213921681,213921681,11874245231,91269878174,94488183214,1586018996,1586018996,NULL),(214069000,214069000,59494258109,34666880494,8329175315,1589704081,1589704081,NULL),(218080122,218080122,9273045103,82258723040,29060993014,1642728392,1642728392,NULL),(219472299,219472299,61724902009,89628374609,39993731427,1586150428,1586150428,NULL),(221709839,221709839,25060092485,43461042335,18384445959,1572413337,1572413337,NULL),(225025267,225025267,85592918523,27228231245,94364306912,1628198304,1628198304,NULL),(225741812,225741812,67625341689,57463885948,99116189982,1635947623,1635947623,NULL),(225758083,225758083,94140920679,76232856337,93201941032,1650270003,1650270003,NULL),(227260457,227260457,82212210125,93288404533,54756679299,1647099297,1647099297,NULL),(228755424,228755424,2376809440,17778561334,67362828815,1573301366,1573301366,NULL),(229642563,229642563,42217700202,32855164629,14846856835,1632030097,1632030097,NULL),(229841084,229841084,56875444153,54725811928,48484583495,1584914718,1584914718,NULL),(230361868,230361868,33852260935,39975740012,19608228275,1581638249,1581638249,NULL),(234037091,234037091,33831893735,85606906422,16434901937,1560176334,1560176334,NULL),(236422806,236422806,15336336267,66052805728,43297567377,1631938514,1631938514,NULL),(237531109,237531109,89558533332,13419868587,89935506872,1638829080,1638829080,NULL),(237986406,237986406,97636256278,16467076925,32947982739,1567066927,1567066927,NULL),(240115899,240115899,54062613281,61251662371,95508562754,1579133242,1579133242,NULL),(240878862,240878862,66401513414,81699670818,9472957614,1568433220,1568433220,NULL),(241591664,241591664,30323986070,38513676928,2875...\G -# Query 65: ID 0xD5D3F792CEA98520 +# Query 65: ID 0x7F62C1A23A2B47DF # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 46.2ms 46.2ms 46.2ms 46.2ms 46.2ms 46.2ms -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 130.1ms 130.1ms 130.1ms 130.1ms 130.1ms 130.1ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 15 15 15 15.00 15 15 +# Rows examined 8 241.65k 241.65k 241.65k 241.65k 241.65k 241.65k # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `user_bans` VALUES (38691036,6426227869,1623891637,1623891637,NULL),(47046300,9890325096,1636307618,1636307618,NULL),(126558786,5195100654,1640733247,1640733247,NULL),(206332847,5644588312,1633188074,1633188074,NULL),(230751884,4724357851,1630864533,1630864533,NULL),(236704823,9805916222,1625815021,1625815021,NULL),(243902147,9955363584,1636707152,1636707152,NULL),(282281524,8217946586,1640565291,1640565291,NULL),(300156835,7367376122,1623918176,1623918176,NULL),(306365723,7297247578,1622100272,1622100272,NULL),(318403396,5157224318,1651117264,1651117264,NULL),(319560334,3788987573,1627329613,1627329613,NULL),(381812756,1554881980,1642192231,1642192231,NULL),(400879861,406229430,1628367873,1628367873,NULL),(425273663,9805083836,1626564339,1626564339,NULL),(430743134,8306562100,1635708440,1635708440,NULL),(434911577,1257147588,1640029796,1640029796,NULL),(449378552,2069723501,1637717483,1637717483,NULL),(488712009,350243177,1627100315,1627100315,NULL),(492604131,6385924306,1642188365,1642188365,NULL),(499061014,7098318780,1641705657,1641705657,NULL),(517639849,8757850812,1622176536,1622176536,NULL),(543549498,4407042508,1640310204,1640310204,NULL),(552071444,3049201819,1624699202,1624699202,NULL),(567398041,4368879755,1635115128,1635115128,NULL),(610149628,8379613251,1632080123,1632080123,NULL),(626265330,7960701096,1633557725,1633557725,NULL),(632074755,177980595,1638032836,1638032836,NULL),(634301288,5886666929,1642229413,1642229413,NULL),(635773759,8810027132,1629981382,1629981382,NULL),(756358269,2809456411,1626094979,1626094979,NULL),(764255404,8109928308,1636681453,1636681453,NULL),(766577690,4406161416,1647637146,1647637146,NULL),(771186250,4019334412,1638726191,1638726191,NULL),(835701735,9353225525,1630573212,1630573212,NULL),(839545022,9977520688,1650756493,1650756493,NULL),(864161856,2153971700,1645633766,1645633766,NULL),(866835687,1856705281,1649466680,1649466680,NULL),(871948757,350125471,1652279055,1652279055,NULL),(882327875,4145777873,1645137037,1645137037,NULL),(944450241,8372544165,1640484133,1640484133,NULL),(1009128163,6230304818,1649525281,1649525281,NULL),(1048818975,5861156030,1628926340,1628926340,NULL),(1066166692,8211820352,1644233429,1644233429,NULL),(1067932154,6421000040,1629513472,1629513472,NULL),(1101279580,3423316888,1625270410,1625270410,NULL),(1125914663,4358970916,1651007383,1651007383,NULL),(1191423758,3952756351,1624047745,1624047745,NULL),(1305118067,6345675558,1622896340,1622896340,NULL),(1362894693,3826862931,1635737386,1635737386,NULL),(1411080858,4391120283,1633150941,1633150941,NULL),(1479440900,3718816397,1626093160,1626093160,NULL),(1491482893,7173705212,1650412358,1650412358,NULL),(1493370936,4342739073,1645898123,1645898123,NULL),(1505643058,9637236928,1623454629,1623454629,NULL),(1515038863,2002307526,1644231833,1644231833,NULL),(1516298744,2545129733,1635629763,1635629763,NULL),(1560511750,831706690,1622782584,1622782584,NULL),(1640642994,1595912499,1641002893,1641002893,NULL),(1657369743,5911358222,1629763431,1629763431,NULL),(1659951152,688322868,1632975346,1632975346,NULL),(1670301841,2830741603,1623800604,1623800604,NULL),(1676776468,8868409035,1643208852,1643208852,NULL),(1677866461,9196847765,1632453551,1632453551,NULL),(1694361179,2851228286,1632610030,1632610030,NULL),(1711248270,3197401824,1647224031,1647224031,NULL),(1727040645,5770904341,1652793374,1652793374,NULL),(1790499118,6021049557,1640096151,1640096151,NULL),(1976032048,4052493901,1643458183,1643458183,NULL),(1981910815,8418837372,1652072091,1652072091,NULL),(2019676582,1589690616,1629870418,1629870418,NULL),(2022720530,478052311,1636864559,1636864559,NULL),(2057473174,1518964235,1638214559,1638214559,NULL),(2092002747,6086574693,1638027530,1638027530,NULL),(2113183289,1565570517,1649520499,1649520499,NULL),(2166300856,4094582198,1622527084,1622527084,NULL),(2170824869,4149431537,1627922128,1627922128,NULL),(2191974772,168631985,1644383526,1644383526,NULL),(2199867746,7433118457,1643167035,1643167035,NULL),(2432951200,6630725247,1625781458,1625781458,NULL),(2446230498,7511910147,1651118624,1651118624,NULL),(2465485965,3657522500,1630804103,1630804103,NULL),(2481879755,1289371344,1649790550,1649790550,NULL),(2502044475,3899001482,1628959359,1628959359,NULL),(2534125406,7158287473,1632479435,1632479435,NULL),(2554078671,1798549934,1651554171,1651554171,NULL),(2599704123,5672005307,1650888245,1650888245,NULL),(2621999131,5544380791,1640298385,1640298385,NULL),(2633369688,6832721967,1628200875,1628200875,NULL),(2646715544,2596671662,1644231588,1644231588,NULL),(2653744723,4449174099,1638655294,1638655294,NULL),(2705072080,4603080630,1627995463,1627995463,NULL),(2735309350,7309251242,1640671038,1640671038,NULL),(2766841044,3431370308,1632140325,1632140325,NULL),(2774678440,9189682098,1627443266,1627443266,NULL),(2784007599,136125821,1628759325,1628759325,NULL),(2808268398,655419756,1650821327,1650821327,NULL),(2836854420,3548569140,1629549926,1629549926,NULL),(2861646625,4128484755,1651528792,1651528792,NULL),(2861972442,3421808686,1645301210,1645301210,NULL),(2904568567,2940739315,1649430518,1649430518,NULL),(2915350895,3992488463,1633153738,1633153738,NULL),(2921069327,8431710373,1653278220,1653278220,NULL),(2922752219,9295345676,1640473852,1640473852,NULL),(2975938498,8011695043,1624026728,1624026728,NULL),(2993485545,9410974689,1645095618,1645095618,NULL),(3075394467,4083739286,1643254852,1643254852,NULL),(3101132338,1606067893,1629420820,1629420820,NULL),(3112499749,4765442461,1623344227,1623344227,NULL),(3173342427,3553798262,1641144265,1641144265,NULL),(3194069192,5577028955,1647471561,1647471561,NULL),(3195351504,9238406713,1627713158,1627713158,NULL),(3218045185,4247554197,1629180746,1629180746,NULL),(3297321971,6685580676,1631309270,1631309270,NULL),(3303674958,2029285723,1629829988,1629829988,NULL),(3319590732,4756024281,1633555458,1633555458,NULL),(3357975266,4981989765,1645168184,1645168184,NULL),(3377507937,493615924,1628886727,1628886727,NULL),(3394364592,6452484171,1624923622,1624923622,NULL),(3407964297,8758587595,1626113925,1626113925,NULL),(3452891202,3617943799,1626766889,1626766889,NULL),(3463179280,8509732824,1631445433,1631445433,NULL),(3587109834,1223498989,1642249082,1642249082,NULL),(3644640692,9003355759,1646053556,1646053556,NULL),(3656223937,5436388483,1625058153,1625058153,NULL),(3696176417,5076710521,1625784405,1625784405,NULL),(3704131469,6770695461,1644601270,1644601270,NULL),(3712894431,4829619001,1632768759,1632768759,NULL),(3750508262,1405906706,1628182193,1628182193,NULL),(3779694240,4997869387,1639991286,1639991286,NULL),(3828081407,9135155095,1640722252,1640722252,NULL),(3851089666,895677445,1642595315,1642595315,NULL),(3853355115,3901464780,1653517401,1653517401,NULL),(3868876151,5496607643,1626157100,1626157100,NULL),(3915124210,6711880255,1629332225,1629332225,NULL),(3960049350,1266457598,1626520008,1626520008,NULL),(3991610783,8274504445,1626764342,1626764342,NULL),(4012016970,9569123374,1625657529,1625657529,NULL),(4015655676,331912917,1629612010,1629612010,NULL),(4032811382,4829122144,1631180391,1631180391,NULL),(4041871343,4846348361,1633356112,1633356112,NULL),(4049132968,3675940440,1627477430,1627477430,NULL),(4198722497,9939986944,1628235865,1628235865,NULL),(4272153638,8771372958,1626633432,1626633432,NULL),(4325321116,7661319742,1646644216,1646644216,NULL),(4328427277,2178770281,1650160895,1650160895,NULL),(4329244635,4335860260,1643123170,1643123170,NULL),(4345780075,8130474630,1623669687,1623669687,NULL),(4365948253,1706681174,1638104145,1638104145,NULL),(4398691040,4234481279,1643013277,1643013277,NULL),(4406852025,3176098370,1649203060,1649203060,NULL),(4415160601,1841622095,1635698398,1635698398,NULL),(4455691884,1460043547,1637490856,1637490856,NULL),(4483349115,8705922025,1632650420,1632650420,NULL),(4623906189,8497827018,1644701236,1644701236,NULL),(4696282368,4419860354,1649129971,1649129971,NULL),(4715522366,6274914571,1650467107,1650467107,NULL),(4772356949,7373863530,1648854447,1648854447,NULL),(4779646455,8642784455,1653426914,1653426914,NULL),(4804362926,768418529,1641711582,1641711582,NULL),(4846054782,5699529761,1647278601,1647278601,NULL),(4854183831,1635566707,1634357035,1634357035,NULL),(4870420361,3086593744,1626967643,1626967643,NULL),(4937534652,5706723810,1649390845,1649390845,NULL),(4985854957,1737200870,1637810641,1637810641,NULL),(5029047228,5705783637,1652016418,1652016418,NULL),(5075660651,5477706166,1648242893,1648242893,NULL),(5153741518,4182620796,1650598424,1650598424,NULL),(5185102553,629765828,1639469771,1639469771,NULL),(5188582075,7002133403,1643783960,1643783960,NULL),(5190837615,4586909913,1650324778,1650324778,NULL),(5222881983,6425512883,1643680228,1643680228,NULL),(5306146892,3207758788,1637455508,1637455508,NULL),(5306879586,5750165566,1645692004,1645692004,NULL),(5313466919,6896719941,1647572791,1647572791,NULL),(5327737352,5932749609,1650135016,1650135016,NULL),(5336059237,8141382466,1628834719,1628834719,NULL),(5371627589,363890579,1644209397,1644209397,NULL),(5388602994,9950205597,1622055496,1622055496,NULL),(5449195390,7514932879,1651076379,1651076379,NULL),(5469000715,427257193,1641036132,1641036132,NULL),(5479186920,7745646134,1652571550,1652571550,NULL),(5498444779,1538626789,1630859792,1630859792,NULL),(5569066696,7221016435,1625590447,1625590447,NULL),(5569826470,101732505,1636067071,1636067071,NULL),(5575435568,8854521828,1637775579,1637775579,NULL),(5640037231,2166945900,1646975947,1646975947,NULL),(5735288396,6540508704,1639245342,1639245342,NULL),(5757542745,525614611,1647198863,1647198863,NULL),(5827676306,2408264522,1635870636,1635870636,NULL),(5870642929,9043623534,1628226777,1628226777,NULL),(5992876835,8135371136,1627559510,1627559510,NULL),(5994567773,6277149156,1649558012,1649558012,NULL),(5999843165,4549321126,1628341903,1628341903,NULL),(6043376597,4978615252,1630961179,1630961179,NULL),(6052866937,9002607406,1634829597,1634829597,NULL),(6056374274,5734418571,1653423865,1653423865,NULL),(6075593155,9669959449,1622195184,1622195184,NULL),(6089490694,3393888890,1623544624,1623544624,NULL),(6124389133,2815421250,1652290679,1652290679,NULL),(6149448030,3254405533,1631273662,1631273662,NULL),(6221587056,3006831849,1623060094,1623060094,NULL),(6283411145,7393252307,1642867721,1642867721,NULL),(6346093706,1315696441,1647749477,1647749477,NULL),(6370886419,8246629153,1630925135,1630925135,NULL),(6379095007,8505074916,1628345748,1628345748,NULL),(6439381451,7596973388,1631456879,1631456879,NULL),(6443501572,7349390030,1639864107,1639864107,NULL),(6633641924,3250895077,1642395090,1642395090,NULL),(6646500831,4491487079,1636760014,1636760014,NULL),(6719105095,1691409453,1647134036,1647134036,NULL),(6726660930,5588023745,1647624005,1647624005,NULL),(6769239178,9428463478,1630434398,1630434398,NULL),(6792828700,7028316060,1640584433,1640584433,NULL),(6807872939,9939435163,1628042304,1628042304,NULL),(6882937809,9416045402,1637885382,1637885382,NULL),(6927188452,8574639062,1642758706,1642758706,NULL),(6962818365,4018743776,1632730657,1632730657,NULL),(6987933325,2092217892,1638420938,1638420938,NULL),(7006301044,4679944553,1634700115,1634700115,NULL),(7016741908,2068859372,1647845174,1647845174,NULL),(7022853925,5931436940,1624385127,1624385127,NULL),(7036627808,6433133741,1631310685,1631310685,NULL),(7079720990,1676859262,1650006165,1650006165,NULL),(7086012124,9912748248,1631993549,1631993549,NULL),(7105986188,4088756014,1645957958,1645957958,NULL),(7142142670,2490894586,1626904705,1626904705,NULL),(7154729514,4605326684,1645956448,1645956448,NULL),(7198743899,7795508432,1653032765,1653032765,NULL),(7213155705,7270846495,1626245617,1626245617,NULL),(7258542379,1727888123,1623396157,1623396157,NULL),(7284586641,2188129937,1648855469,1648855469,NULL),(7385132024,5550674030,1634570863,1634570863,NULL),(7385545376,9624970178,1631680530,1631680530,NULL),(7419355490,5041756549,1636263631,1636263631,NULL),(7432532353,4276548030,1623093915,1623093915,NULL),(7476006558,4134008891,1624781885,1624781885,NULL),(7498571020,9468378104,1623836990,1623836990,NULL),(7520964076,6982735594,1642293391,1642293391,NULL),(7544457704,7581614014,1630944885,1630944885,NULL),(7566111867,1087597028,1652074783,1652074783,NULL),(7570250563,8298726115,1643189944,1643189944,NULL),(7586493063,9130937877,1652469423,1652469423,NULL),(7596195411,4528529980,1623133102,1623133102,NULL),(7636167781,2779543952,1634600716,1634600716,NULL),(7651870148,3027222757,1648935562,1648935562,NULL),(7682170322,8833170708,1637178273,1637178273,NULL),(7686479795,5263432978,1624953596,1624953596,NULL),(7758713293,729526645,1638081100,1638081100,NULL),(7771543745,7477265222,1633473295,1633473295,NULL),(7778196100,7969451885,1649272329,1649272329,NULL),(7800242663,4064985468,1630529854,1630529854,NULL),(7817858257,9512245653,1642652186,1642652186,NULL),(7873607383,9067194557,1644366770,1644366770,NULL),(7892019857,6543410640,1642199468,1642199468,NULL),(7903561666,8079832903,1636444651,1636444651,NULL),(7924967099,8266685029,1650057052,1650057052,NULL),(7960049138,6694484648,1650432566,1650432566,NULL),(7984397506,6211858994,1626828979,1626828979,NULL),(8034741460,8045492442,1628942627,1628942627,NULL),(8084291540,4535697325,1631641658,1631641658,NULL),(8129171439,2911424961,1636946939,1636946939,NULL),(8145436581,6200869493,1646410686,1646410686,NULL),(8151151168,2492196548,1652094082,1652094082,NULL),(8193124445,5454049152,1629718221,1629718221,NULL),(8196261855,7352008078,1650825126,1650825126,NULL),(8196361134,5720579008,1649394459,1649394459,NULL),(8227168725,8640779552,1646381768,1646381768,NULL),(8296786611,2698818036,1630164514,1630164514,NULL),(8332590237,6575423471,1628945371,1628945371,NULL),(8361471305,9618351727,1648640489,1648640489,NULL),(8402513712,3966558232,1637186020,1637186020,NULL),(8406844600,4777542022,1632604567,1632604567,NULL),(8516660936,1298460478,1642709048,1642709048,NULL),(8523981733,3051195272,1633392257,1633392257,NULL),(8557328078,8410004141,1644378497,1644378497,NULL),(8560917592,3191394520,1643496079,1643496079,NULL),(8574489886,8375840240,1626648686,1626648686,NULL),(8578332473,5246590801,1622924221,1622924221,NULL),(8607558223,9155510473,1626681685,1626681685,NULL),(8626259402,9932321699,1647590062,1647590062,NULL),(8657114657,6379534390,1651645779,1651645779,NULL),(8701528276,9831100647,1625401261,1625401261,NULL),(8743985639,2299357127,1637362928,1637362928,NULL),(8756775496,6311076357,1625276455,1625276455,NULL),(8775283569,4090481394,1637474548,1637474548,NULL),(8857252720,2519320094,1638481026,1638481026,NULL),(8857401542,9819026180,1625993829,1625993829,NULL),(8881316797,8789991655,1643196218,1643196218,NULL),(8950875694,8647729009,1623978723,1623978723,NULL),(8988423557,5003991865,1652760062,1652760062,NULL),(9022619617,7118567164,1642903624,1642903624,NULL),(9058625131,17498228,1653531973,1653531973,NULL),(9084485191,6485339490,1651848765,1651848765,NULL),(9085980770,758211144,1622325896,1622325896,NULL),(9103839947,3883134781,1623940036,1623940036,NULL),(9180187127,9418781766,1627368270,1627368270,NULL),(9250139050,7606204815,1632229534,1632229534,NULL),(9357684245,354794065,1648769553,1648769553,NULL),(9416812132,9210515871,1633008930,1633008930,NULL),(9435065337,2696850778,1651733752,1651733752,NULL),(9440347092,992483855,1625760808,1625760808,NULL),(9487532287,5772472245,1644627300,1644627300,NULL),(9568863079,492270652,1649540169,1649540169,NULL),(9579890083,6025708466,1643176076,1643176076,NULL),(9610115879,885412822,1637004511,1637004511,NULL),(9611166356,4331004139,1632966849,1632966849,NULL),(9680884805,9097191759,1626751830,1626751830,NULL),(9771720233,9928557937,1647247979,1647247979,NULL),(9803364655,6207449015,1631731428,1631731428,NULL),(9815327246,4944187713,1647764617,1647764617,NULL),(9823873965,4851046411,1632202113,1632202113,NULL),(9824137468,658834565,1636468185,1636468185,NULL),(9827851447,6253288297,1632245434,1632245434,NULL),(9895052355,6879393055,1639656482,1639656482,NULL),(9914510837,9260855707,1647226564,1647226564,NULL),(9916052230,359242197,1638120680,1638120680,NULL),(9916988997,323243363,1637215366,1637215366,NULL),(9919758784,2248075410,1623614720,1623614720,NULL),(9923806742,8623077962,1650487161,1650487161,NULL),(9994778009,3414887053,1623976709,1623976709,NULL),(10058256183,4397060451,1651503705,1651503705,NULL),(10058701448,3379211213,1647608637,1647608637,NULL),(10079138755,7055490020,1626273786,1626273786,NULL),(10099788469,6034581175,1630133913,1630133913,NULL),(10113803229,1107473764,1628436186,1628436186,NULL),(10121370481,8569050285,1629289257,1629289257,NULL),(10134495152,7439308781,1647326669,1647326669,NULL),(10146080983,4304840949,1625849715,1625849715,NULL),(10153835365,9593544794,1638615018,1638615018,NULL),(10182776036,4547476847,1653449204,1653449204,NULL),(10191921427,2883091707,1640852612,1640852612,NULL),(10208720556,2581184528,1625366542,1625366542,NULL),(10218118028,9700724818,1633607320,1633607320,NULL),(10255094141,3003141913,1624356866,1624356866,NULL),(10349880622,9451600243,1624190539,1624190539,NULL),(10358960016,1035361256,1631852714,1631852714,NULL),(10377229214,2908961792,1622953063,1622953063,NULL),(10405615782,6277124574,1640946991,1640946991,NULL),(10409118783,3487456772,1627714916,1627714916,NULL),(10490017580,7684194205,1633340993,1633340993,NULL),(10513435869,3257453158,1622323653,1622323653,NULL),(10514683324,497464280,1649392975,1649392975,NULL),(10524176119,6121230149,1637802734,1637802734,NULL),(10525272562,2207479196,1631773010,1631773010,NULL),(10525656075,1370331846,1622294187,1622294187,NULL),(10578422974,2135939203,1646841024,1646841024,NULL),(10584633916,7825035299,1630973439,1630973439,NULL),(10587700913,5982693554,1632289157,1632289157,NULL),(10611402999,1075472294,1641226876,1641226876,NULL),(10619043133,6542918853,1623142576,1623142576,NULL),(10633410033,3855103008,1645672601,1645672601,NULL),(10634086744,1378267671,1632779807,1632779807,NULL),(10646259080,3008715805,1629894358,1629894358,NULL),(10756714260,819648218,1622976107,1622976107,NULL),(10764085015,1018039505,1627468177,1627468177,NULL),(10809806054,683176933,1645107644,1645107644,NULL),(10870826947,766767508,1625582728,1625582728,NULL),(10894421704,7954583887,1632545921,1632545921,NULL),(10899704159,2797033078,1622627809,1622627809,NULL),(10969965185,4895105750,1623011404,1623011404,NULL),(10982999049,1458219555,1629322512,1629322512,NULL),(10989765147,7536200151,1626740240,1626740240,NULL),(11023348148,2681061347,1632652761,1632652761,NULL),(11031162917,8053065872,1640762897,1640762897,NULL),(11037549276,3663041205,1651032458,1651032458,NULL),(11137063295,4940327891,1645900959,1645900959,NULL),(11261972784,6170193541,1644229557,1644229557,NULL),(11277288668,9676652605,1626788761,1626788761,NULL),(11307582554,597075694,1631191738,1631191738,NULL),(11363610541,3793378086,1642222213,1642222213,NULL),(11404384814,84248902,1631401560,1631401560,NULL),(11436785606,2982793872,1644787843,1644787843,NULL),(11535266322,1994763318,1649081993,1649081993,NULL),(11565545372,5711609431,1630899429,1630899429,NULL),(11643896137,7601156783,1649178182,1649178182,NULL),(11706161249,3659370618,1632382320,1632382320,NULL),(11796818932,1234098946,1624371447,1624371447,NULL),(11833393505,5306144617,1652960483,1652960483,NULL),(11839022323,3338279319,1650013100,1650013100,NULL),(11871008240,6791892839,1650817843,1650817843,NULL),(11894956946,5087675912,1633373499,1633373499,NULL),(11902770315,639692436,1634054760,1634054760,NULL),(11919528333,8193787257,1651365738,1651365738,NULL),(11941718867,2296555877,1633884862,1633884862,NULL),(11962885961,6827661768,1646979977,1646979977,NULL),(11977111894,1484723819,1637041789,1637041789,NULL),(12018944960,3204715424,1622115045,1622115045,NULL),(12054625742,9942629517,1626720579,1626720579,NULL),(12164653649,5740399241,1640849921,1640849921,NULL),(12168338085,3618532806,1631835725,1631835725,NULL),(12216062190,7114454408,1635234294,1635234294,NULL),(12216152151,8793886980,1632812309,1632812309,NULL),(12223232441,7846270195,1629104164,1629104164,NULL),(12232671480,7194942266,1623483523,1623483523,NULL),(12253124314,495694759,1645584397,1645584397,NULL),(12278833177,3134503797,1632138162,1632138162,NULL),(12317595761,6036711284,1653431342,1653431342,NULL),(12357868821,6848632732,1633592852,1633592852,NULL),(12506074528,3785180195,1630954824,1630954824,NULL),(12518567215,9301588427,1644668938,1644668938,NUL...\G +SELECT * FROM user_present_all_received_history WHERE user_id=4315879259\G -# Query 66: ID 0x2DCCDC0DDEA0517C +# Query 66: ID 0x2A385C2101E13805 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 41.9ms 41.9ms 41.9ms 41.9ms 41.9ms 41.9ms -# Lock time 0 24.0us 24.0us 24.0us 24.0us 24.0us 24.0us +# Exec time 0 93.6ms 93.6ms 93.6ms 93.6ms 93.6ms 93.6ms +# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `admin_sessions`\G +DROP TABLE IF EXISTS `user_cards`\G # Query 67: ID 0x8ED794C0D5413D5A # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2410 -# Exec time 0 30.1ms 1.0us 13.1ms 12.5us 2.0us 1.0us +# Count 0 2561 +# Exec time 0 67.8ms 1.0us 25.8ms 26.5us 2.0us 1.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 -# Rows examined 4 103.07k 0 82.07k 42.00 58 1 +# Rows examined 4 112.19k 0 89.32k 43.00 54 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ Quit\G -# Query 68: ID 0x4F901834723878F6 +# Query 68: ID 0xD5D3F792CEA98520 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 26.1ms 26.1ms 26.1ms 26.1ms 26.1ms 26.1ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 45.6ms 45.6ms 45.6ms 45.6ms 45.6ms 45.6ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_present_all_received_history`\G +INSERT INTO `user_bans` VALUES (38691036,6426227869,1623891637,1623891637,NULL),(47046300,9890325096,1636307618,1636307618,NULL),(126558786,5195100654,1640733247,1640733247,NULL),(206332847,5644588312,1633188074,1633188074,NULL),(230751884,4724357851,1630864533,1630864533,NULL),(236704823,9805916222,1625815021,1625815021,NULL),(243902147,9955363584,1636707152,1636707152,NULL),(282281524,8217946586,1640565291,1640565291,NULL),(300156835,7367376122,1623918176,1623918176,NULL),(306365723,7297247578,1622100272,1622100272,NULL),(318403396,5157224318,1651117264,1651117264,NULL),(319560334,3788987573,1627329613,1627329613,NULL),(381812756,1554881980,1642192231,1642192231,NULL),(400879861,406229430,1628367873,1628367873,NULL),(425273663,9805083836,1626564339,1626564339,NULL),(430743134,8306562100,1635708440,1635708440,NULL),(434911577,1257147588,1640029796,1640029796,NULL),(449378552,2069723501,1637717483,1637717483,NULL),(488712009,350243177,1627100315,1627100315,NULL),(492604131,6385924306,1642188365,1642188365,NULL),(499061014,7098318780,1641705657,1641705657,NULL),(517639849,8757850812,1622176536,1622176536,NULL),(543549498,4407042508,1640310204,1640310204,NULL),(552071444,3049201819,1624699202,1624699202,NULL),(567398041,4368879755,1635115128,1635115128,NULL),(610149628,8379613251,1632080123,1632080123,NULL),(626265330,7960701096,1633557725,1633557725,NULL),(632074755,177980595,1638032836,1638032836,NULL),(634301288,5886666929,1642229413,1642229413,NULL),(635773759,8810027132,1629981382,1629981382,NULL),(756358269,2809456411,1626094979,1626094979,NULL),(764255404,8109928308,1636681453,1636681453,NULL),(766577690,4406161416,1647637146,1647637146,NULL),(771186250,4019334412,1638726191,1638726191,NULL),(835701735,9353225525,1630573212,1630573212,NULL),(839545022,9977520688,1650756493,1650756493,NULL),(864161856,2153971700,1645633766,1645633766,NULL),(866835687,1856705281,1649466680,1649466680,NULL),(871948757,350125471,1652279055,1652279055,NULL),(882327875,4145777873,1645137037,1645137037,NULL),(944450241,8372544165,1640484133,1640484133,NULL),(1009128163,6230304818,1649525281,1649525281,NULL),(1048818975,5861156030,1628926340,1628926340,NULL),(1066166692,8211820352,1644233429,1644233429,NULL),(1067932154,6421000040,1629513472,1629513472,NULL),(1101279580,3423316888,1625270410,1625270410,NULL),(1125914663,4358970916,1651007383,1651007383,NULL),(1191423758,3952756351,1624047745,1624047745,NULL),(1305118067,6345675558,1622896340,1622896340,NULL),(1362894693,3826862931,1635737386,1635737386,NULL),(1411080858,4391120283,1633150941,1633150941,NULL),(1479440900,3718816397,1626093160,1626093160,NULL),(1491482893,7173705212,1650412358,1650412358,NULL),(1493370936,4342739073,1645898123,1645898123,NULL),(1505643058,9637236928,1623454629,1623454629,NULL),(1515038863,2002307526,1644231833,1644231833,NULL),(1516298744,2545129733,1635629763,1635629763,NULL),(1560511750,831706690,1622782584,1622782584,NULL),(1640642994,1595912499,1641002893,1641002893,NULL),(1657369743,5911358222,1629763431,1629763431,NULL),(1659951152,688322868,1632975346,1632975346,NULL),(1670301841,2830741603,1623800604,1623800604,NULL),(1676776468,8868409035,1643208852,1643208852,NULL),(1677866461,9196847765,1632453551,1632453551,NULL),(1694361179,2851228286,1632610030,1632610030,NULL),(1711248270,3197401824,1647224031,1647224031,NULL),(1727040645,5770904341,1652793374,1652793374,NULL),(1790499118,6021049557,1640096151,1640096151,NULL),(1976032048,4052493901,1643458183,1643458183,NULL),(1981910815,8418837372,1652072091,1652072091,NULL),(2019676582,1589690616,1629870418,1629870418,NULL),(2022720530,478052311,1636864559,1636864559,NULL),(2057473174,1518964235,1638214559,1638214559,NULL),(2092002747,6086574693,1638027530,1638027530,NULL),(2113183289,1565570517,1649520499,1649520499,NULL),(2166300856,4094582198,1622527084,1622527084,NULL),(2170824869,4149431537,1627922128,1627922128,NULL),(2191974772,168631985,1644383526,1644383526,NULL),(2199867746,7433118457,1643167035,1643167035,NULL),(2432951200,6630725247,1625781458,1625781458,NULL),(2446230498,7511910147,1651118624,1651118624,NULL),(2465485965,3657522500,1630804103,1630804103,NULL),(2481879755,1289371344,1649790550,1649790550,NULL),(2502044475,3899001482,1628959359,1628959359,NULL),(2534125406,7158287473,1632479435,1632479435,NULL),(2554078671,1798549934,1651554171,1651554171,NULL),(2599704123,5672005307,1650888245,1650888245,NULL),(2621999131,5544380791,1640298385,1640298385,NULL),(2633369688,6832721967,1628200875,1628200875,NULL),(2646715544,2596671662,1644231588,1644231588,NULL),(2653744723,4449174099,1638655294,1638655294,NULL),(2705072080,4603080630,1627995463,1627995463,NULL),(2735309350,7309251242,1640671038,1640671038,NULL),(2766841044,3431370308,1632140325,1632140325,NULL),(2774678440,9189682098,1627443266,1627443266,NULL),(2784007599,136125821,1628759325,1628759325,NULL),(2808268398,655419756,1650821327,1650821327,NULL),(2836854420,3548569140,1629549926,1629549926,NULL),(2861646625,4128484755,1651528792,1651528792,NULL),(2861972442,3421808686,1645301210,1645301210,NULL),(2904568567,2940739315,1649430518,1649430518,NULL),(2915350895,3992488463,1633153738,1633153738,NULL),(2921069327,8431710373,1653278220,1653278220,NULL),(2922752219,9295345676,1640473852,1640473852,NULL),(2975938498,8011695043,1624026728,1624026728,NULL),(2993485545,9410974689,1645095618,1645095618,NULL),(3075394467,4083739286,1643254852,1643254852,NULL),(3101132338,1606067893,1629420820,1629420820,NULL),(3112499749,4765442461,1623344227,1623344227,NULL),(3173342427,3553798262,1641144265,1641144265,NULL),(3194069192,5577028955,1647471561,1647471561,NULL),(3195351504,9238406713,1627713158,1627713158,NULL),(3218045185,4247554197,1629180746,1629180746,NULL),(3297321971,6685580676,1631309270,1631309270,NULL),(3303674958,2029285723,1629829988,1629829988,NULL),(3319590732,4756024281,1633555458,1633555458,NULL),(3357975266,4981989765,1645168184,1645168184,NULL),(3377507937,493615924,1628886727,1628886727,NULL),(3394364592,6452484171,1624923622,1624923622,NULL),(3407964297,8758587595,1626113925,1626113925,NULL),(3452891202,3617943799,1626766889,1626766889,NULL),(3463179280,8509732824,1631445433,1631445433,NULL),(3587109834,1223498989,1642249082,1642249082,NULL),(3644640692,9003355759,1646053556,1646053556,NULL),(3656223937,5436388483,1625058153,1625058153,NULL),(3696176417,5076710521,1625784405,1625784405,NULL),(3704131469,6770695461,1644601270,1644601270,NULL),(3712894431,4829619001,1632768759,1632768759,NULL),(3750508262,1405906706,1628182193,1628182193,NULL),(3779694240,4997869387,1639991286,1639991286,NULL),(3828081407,9135155095,1640722252,1640722252,NULL),(3851089666,895677445,1642595315,1642595315,NULL),(3853355115,3901464780,1653517401,1653517401,NULL),(3868876151,5496607643,1626157100,1626157100,NULL),(3915124210,6711880255,1629332225,1629332225,NULL),(3960049350,1266457598,1626520008,1626520008,NULL),(3991610783,8274504445,1626764342,1626764342,NULL),(4012016970,9569123374,1625657529,1625657529,NULL),(4015655676,331912917,1629612010,1629612010,NULL),(4032811382,4829122144,1631180391,1631180391,NULL),(4041871343,4846348361,1633356112,1633356112,NULL),(4049132968,3675940440,1627477430,1627477430,NULL),(4198722497,9939986944,1628235865,1628235865,NULL),(4272153638,8771372958,1626633432,1626633432,NULL),(4325321116,7661319742,1646644216,1646644216,NULL),(4328427277,2178770281,1650160895,1650160895,NULL),(4329244635,4335860260,1643123170,1643123170,NULL),(4345780075,8130474630,1623669687,1623669687,NULL),(4365948253,1706681174,1638104145,1638104145,NULL),(4398691040,4234481279,1643013277,1643013277,NULL),(4406852025,3176098370,1649203060,1649203060,NULL),(4415160601,1841622095,1635698398,1635698398,NULL),(4455691884,1460043547,1637490856,1637490856,NULL),(4483349115,8705922025,1632650420,1632650420,NULL),(4623906189,8497827018,1644701236,1644701236,NULL),(4696282368,4419860354,1649129971,1649129971,NULL),(4715522366,6274914571,1650467107,1650467107,NULL),(4772356949,7373863530,1648854447,1648854447,NULL),(4779646455,8642784455,1653426914,1653426914,NULL),(4804362926,768418529,1641711582,1641711582,NULL),(4846054782,5699529761,1647278601,1647278601,NULL),(4854183831,1635566707,1634357035,1634357035,NULL),(4870420361,3086593744,1626967643,1626967643,NULL),(4937534652,5706723810,1649390845,1649390845,NULL),(4985854957,1737200870,1637810641,1637810641,NULL),(5029047228,5705783637,1652016418,1652016418,NULL),(5075660651,5477706166,1648242893,1648242893,NULL),(5153741518,4182620796,1650598424,1650598424,NULL),(5185102553,629765828,1639469771,1639469771,NULL),(5188582075,7002133403,1643783960,1643783960,NULL),(5190837615,4586909913,1650324778,1650324778,NULL),(5222881983,6425512883,1643680228,1643680228,NULL),(5306146892,3207758788,1637455508,1637455508,NULL),(5306879586,5750165566,1645692004,1645692004,NULL),(5313466919,6896719941,1647572791,1647572791,NULL),(5327737352,5932749609,1650135016,1650135016,NULL),(5336059237,8141382466,1628834719,1628834719,NULL),(5371627589,363890579,1644209397,1644209397,NULL),(5388602994,9950205597,1622055496,1622055496,NULL),(5449195390,7514932879,1651076379,1651076379,NULL),(5469000715,427257193,1641036132,1641036132,NULL),(5479186920,7745646134,1652571550,1652571550,NULL),(5498444779,1538626789,1630859792,1630859792,NULL),(5569066696,7221016435,1625590447,1625590447,NULL),(5569826470,101732505,1636067071,1636067071,NULL),(5575435568,8854521828,1637775579,1637775579,NULL),(5640037231,2166945900,1646975947,1646975947,NULL),(5735288396,6540508704,1639245342,1639245342,NULL),(5757542745,525614611,1647198863,1647198863,NULL),(5827676306,2408264522,1635870636,1635870636,NULL),(5870642929,9043623534,1628226777,1628226777,NULL),(5992876835,8135371136,1627559510,1627559510,NULL),(5994567773,6277149156,1649558012,1649558012,NULL),(5999843165,4549321126,1628341903,1628341903,NULL),(6043376597,4978615252,1630961179,1630961179,NULL),(6052866937,9002607406,1634829597,1634829597,NULL),(6056374274,5734418571,1653423865,1653423865,NULL),(6075593155,9669959449,1622195184,1622195184,NULL),(6089490694,3393888890,1623544624,1623544624,NULL),(6124389133,2815421250,1652290679,1652290679,NULL),(6149448030,3254405533,1631273662,1631273662,NULL),(6221587056,3006831849,1623060094,1623060094,NULL),(6283411145,7393252307,1642867721,1642867721,NULL),(6346093706,1315696441,1647749477,1647749477,NULL),(6370886419,8246629153,1630925135,1630925135,NULL),(6379095007,8505074916,1628345748,1628345748,NULL),(6439381451,7596973388,1631456879,1631456879,NULL),(6443501572,7349390030,1639864107,1639864107,NULL),(6633641924,3250895077,1642395090,1642395090,NULL),(6646500831,4491487079,1636760014,1636760014,NULL),(6719105095,1691409453,1647134036,1647134036,NULL),(6726660930,5588023745,1647624005,1647624005,NULL),(6769239178,9428463478,1630434398,1630434398,NULL),(6792828700,7028316060,1640584433,1640584433,NULL),(6807872939,9939435163,1628042304,1628042304,NULL),(6882937809,9416045402,1637885382,1637885382,NULL),(6927188452,8574639062,1642758706,1642758706,NULL),(6962818365,4018743776,1632730657,1632730657,NULL),(6987933325,2092217892,1638420938,1638420938,NULL),(7006301044,4679944553,1634700115,1634700115,NULL),(7016741908,2068859372,1647845174,1647845174,NULL),(7022853925,5931436940,1624385127,1624385127,NULL),(7036627808,6433133741,1631310685,1631310685,NULL),(7079720990,1676859262,1650006165,1650006165,NULL),(7086012124,9912748248,1631993549,1631993549,NULL),(7105986188,4088756014,1645957958,1645957958,NULL),(7142142670,2490894586,1626904705,1626904705,NULL),(7154729514,4605326684,1645956448,1645956448,NULL),(7198743899,7795508432,1653032765,1653032765,NULL),(7213155705,7270846495,1626245617,1626245617,NULL),(7258542379,1727888123,1623396157,1623396157,NULL),(7284586641,2188129937,1648855469,1648855469,NULL),(7385132024,5550674030,1634570863,1634570863,NULL),(7385545376,9624970178,1631680530,1631680530,NULL),(7419355490,5041756549,1636263631,1636263631,NULL),(7432532353,4276548030,1623093915,1623093915,NULL),(7476006558,4134008891,1624781885,1624781885,NULL),(7498571020,9468378104,1623836990,1623836990,NULL),(7520964076,6982735594,1642293391,1642293391,NULL),(7544457704,7581614014,1630944885,1630944885,NULL),(7566111867,1087597028,1652074783,1652074783,NULL),(7570250563,8298726115,1643189944,1643189944,NULL),(7586493063,9130937877,1652469423,1652469423,NULL),(7596195411,4528529980,1623133102,1623133102,NULL),(7636167781,2779543952,1634600716,1634600716,NULL),(7651870148,3027222757,1648935562,1648935562,NULL),(7682170322,8833170708,1637178273,1637178273,NULL),(7686479795,5263432978,1624953596,1624953596,NULL),(7758713293,729526645,1638081100,1638081100,NULL),(7771543745,7477265222,1633473295,1633473295,NULL),(7778196100,7969451885,1649272329,1649272329,NULL),(7800242663,4064985468,1630529854,1630529854,NULL),(7817858257,9512245653,1642652186,1642652186,NULL),(7873607383,9067194557,1644366770,1644366770,NULL),(7892019857,6543410640,1642199468,1642199468,NULL),(7903561666,8079832903,1636444651,1636444651,NULL),(7924967099,8266685029,1650057052,1650057052,NULL),(7960049138,6694484648,1650432566,1650432566,NULL),(7984397506,6211858994,1626828979,1626828979,NULL),(8034741460,8045492442,1628942627,1628942627,NULL),(8084291540,4535697325,1631641658,1631641658,NULL),(8129171439,2911424961,1636946939,1636946939,NULL),(8145436581,6200869493,1646410686,1646410686,NULL),(8151151168,2492196548,1652094082,1652094082,NULL),(8193124445,5454049152,1629718221,1629718221,NULL),(8196261855,7352008078,1650825126,1650825126,NULL),(8196361134,5720579008,1649394459,1649394459,NULL),(8227168725,8640779552,1646381768,1646381768,NULL),(8296786611,2698818036,1630164514,1630164514,NULL),(8332590237,6575423471,1628945371,1628945371,NULL),(8361471305,9618351727,1648640489,1648640489,NULL),(8402513712,3966558232,1637186020,1637186020,NULL),(8406844600,4777542022,1632604567,1632604567,NULL),(8516660936,1298460478,1642709048,1642709048,NULL),(8523981733,3051195272,1633392257,1633392257,NULL),(8557328078,8410004141,1644378497,1644378497,NULL),(8560917592,3191394520,1643496079,1643496079,NULL),(8574489886,8375840240,1626648686,1626648686,NULL),(8578332473,5246590801,1622924221,1622924221,NULL),(8607558223,9155510473,1626681685,1626681685,NULL),(8626259402,9932321699,1647590062,1647590062,NULL),(8657114657,6379534390,1651645779,1651645779,NULL),(8701528276,9831100647,1625401261,1625401261,NULL),(8743985639,2299357127,1637362928,1637362928,NULL),(8756775496,6311076357,1625276455,1625276455,NULL),(8775283569,4090481394,1637474548,1637474548,NULL),(8857252720,2519320094,1638481026,1638481026,NULL),(8857401542,9819026180,1625993829,1625993829,NULL),(8881316797,8789991655,1643196218,1643196218,NULL),(8950875694,8647729009,1623978723,1623978723,NULL),(8988423557,5003991865,1652760062,1652760062,NULL),(9022619617,7118567164,1642903624,1642903624,NULL),(9058625131,17498228,1653531973,1653531973,NULL),(9084485191,6485339490,1651848765,1651848765,NULL),(9085980770,758211144,1622325896,1622325896,NULL),(9103839947,3883134781,1623940036,1623940036,NULL),(9180187127,9418781766,1627368270,1627368270,NULL),(9250139050,7606204815,1632229534,1632229534,NULL),(9357684245,354794065,1648769553,1648769553,NULL),(9416812132,9210515871,1633008930,1633008930,NULL),(9435065337,2696850778,1651733752,1651733752,NULL),(9440347092,992483855,1625760808,1625760808,NULL),(9487532287,5772472245,1644627300,1644627300,NULL),(9568863079,492270652,1649540169,1649540169,NULL),(9579890083,6025708466,1643176076,1643176076,NULL),(9610115879,885412822,1637004511,1637004511,NULL),(9611166356,4331004139,1632966849,1632966849,NULL),(9680884805,9097191759,1626751830,1626751830,NULL),(9771720233,9928557937,1647247979,1647247979,NULL),(9803364655,6207449015,1631731428,1631731428,NULL),(9815327246,4944187713,1647764617,1647764617,NULL),(9823873965,4851046411,1632202113,1632202113,NULL),(9824137468,658834565,1636468185,1636468185,NULL),(9827851447,6253288297,1632245434,1632245434,NULL),(9895052355,6879393055,1639656482,1639656482,NULL),(9914510837,9260855707,1647226564,1647226564,NULL),(9916052230,359242197,1638120680,1638120680,NULL),(9916988997,323243363,1637215366,1637215366,NULL),(9919758784,2248075410,1623614720,1623614720,NULL),(9923806742,8623077962,1650487161,1650487161,NULL),(9994778009,3414887053,1623976709,1623976709,NULL),(10058256183,4397060451,1651503705,1651503705,NULL),(10058701448,3379211213,1647608637,1647608637,NULL),(10079138755,7055490020,1626273786,1626273786,NULL),(10099788469,6034581175,1630133913,1630133913,NULL),(10113803229,1107473764,1628436186,1628436186,NULL),(10121370481,8569050285,1629289257,1629289257,NULL),(10134495152,7439308781,1647326669,1647326669,NULL),(10146080983,4304840949,1625849715,1625849715,NULL),(10153835365,9593544794,1638615018,1638615018,NULL),(10182776036,4547476847,1653449204,1653449204,NULL),(10191921427,2883091707,1640852612,1640852612,NULL),(10208720556,2581184528,1625366542,1625366542,NULL),(10218118028,9700724818,1633607320,1633607320,NULL),(10255094141,3003141913,1624356866,1624356866,NULL),(10349880622,9451600243,1624190539,1624190539,NULL),(10358960016,1035361256,1631852714,1631852714,NULL),(10377229214,2908961792,1622953063,1622953063,NULL),(10405615782,6277124574,1640946991,1640946991,NULL),(10409118783,3487456772,1627714916,1627714916,NULL),(10490017580,7684194205,1633340993,1633340993,NULL),(10513435869,3257453158,1622323653,1622323653,NULL),(10514683324,497464280,1649392975,1649392975,NULL),(10524176119,6121230149,1637802734,1637802734,NULL),(10525272562,2207479196,1631773010,1631773010,NULL),(10525656075,1370331846,1622294187,1622294187,NULL),(10578422974,2135939203,1646841024,1646841024,NULL),(10584633916,7825035299,1630973439,1630973439,NULL),(10587700913,5982693554,1632289157,1632289157,NULL),(10611402999,1075472294,1641226876,1641226876,NULL),(10619043133,6542918853,1623142576,1623142576,NULL),(10633410033,3855103008,1645672601,1645672601,NULL),(10634086744,1378267671,1632779807,1632779807,NULL),(10646259080,3008715805,1629894358,1629894358,NULL),(10756714260,819648218,1622976107,1622976107,NULL),(10764085015,1018039505,1627468177,1627468177,NULL),(10809806054,683176933,1645107644,1645107644,NULL),(10870826947,766767508,1625582728,1625582728,NULL),(10894421704,7954583887,1632545921,1632545921,NULL),(10899704159,2797033078,1622627809,1622627809,NULL),(10969965185,4895105750,1623011404,1623011404,NULL),(10982999049,1458219555,1629322512,1629322512,NULL),(10989765147,7536200151,1626740240,1626740240,NULL),(11023348148,2681061347,1632652761,1632652761,NULL),(11031162917,8053065872,1640762897,1640762897,NULL),(11037549276,3663041205,1651032458,1651032458,NULL),(11137063295,4940327891,1645900959,1645900959,NULL),(11261972784,6170193541,1644229557,1644229557,NULL),(11277288668,9676652605,1626788761,1626788761,NULL),(11307582554,597075694,1631191738,1631191738,NULL),(11363610541,3793378086,1642222213,1642222213,NULL),(11404384814,84248902,1631401560,1631401560,NULL),(11436785606,2982793872,1644787843,1644787843,NULL),(11535266322,1994763318,1649081993,1649081993,NULL),(11565545372,5711609431,1630899429,1630899429,NULL),(11643896137,7601156783,1649178182,1649178182,NULL),(11706161249,3659370618,1632382320,1632382320,NULL),(11796818932,1234098946,1624371447,1624371447,NULL),(11833393505,5306144617,1652960483,1652960483,NULL),(11839022323,3338279319,1650013100,1650013100,NULL),(11871008240,6791892839,1650817843,1650817843,NULL),(11894956946,5087675912,1633373499,1633373499,NULL),(11902770315,639692436,1634054760,1634054760,NULL),(11919528333,8193787257,1651365738,1651365738,NULL),(11941718867,2296555877,1633884862,1633884862,NULL),(11962885961,6827661768,1646979977,1646979977,NULL),(11977111894,1484723819,1637041789,1637041789,NULL),(12018944960,3204715424,1622115045,1622115045,NULL),(12054625742,9942629517,1626720579,1626720579,NULL),(12164653649,5740399241,1640849921,1640849921,NULL),(12168338085,3618532806,1631835725,1631835725,NULL),(12216062190,7114454408,1635234294,1635234294,NULL),(12216152151,8793886980,1632812309,1632812309,NULL),(12223232441,7846270195,1629104164,1629104164,NULL),(12232671480,7194942266,1623483523,1623483523,NULL),(12253124314,495694759,1645584397,1645584397,NULL),(12278833177,3134503797,1632138162,1632138162,NULL),(12317595761,6036711284,1653431342,1653431342,NULL),(12357868821,6848632732,1633592852,1633592852,NULL),(12506074528,3785180195,1630954824,1630954824,NULL),(12518567215,9301588427,1644668938,1644668938,NUL...\G -# Query 69: ID 0x33B1BA42D94563E9 +# Query 69: ID 0x2DCCDC0DDEA0517C # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 24.7ms 24.7ms 24.7ms 24.7ms 24.7ms 24.7ms -# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Exec time 0 29.1ms 29.1ms 29.1ms 29.1ms 29.1ms 29.1ms +# Lock time 0 19.0us 19.0us 19.0us 19.0us 19.0us 19.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_items`\G +DROP TABLE IF EXISTS `admin_sessions`\G -# Query 70: ID 0x2C08E20F560D395C +# Query 70: ID 0x4F901834723878F6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 22.8ms 22.8ms 22.8ms 22.8ms 22.8ms 22.8ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 22.4ms 22.4ms 22.4ms 22.4ms 22.4ms 22.4ms +# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_one_time_tokens`\G +DROP TABLE IF EXISTS `user_present_all_received_history`\G -# Query 71: ID 0x86747EE909530562 +# Query 71: ID 0x33B1BA42D94563E9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 18.4ms 18.4ms 18.4ms 18.4ms 18.4ms 18.4ms -# Lock time 0 0 0 0 0 0 0 +# Exec time 0 19.0ms 19.0ms 19.0ms 19.0ms 19.0ms 19.0ms +# Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `gacha_item_masters` VALUES (1,1,3,17,1,3000,1575126000),(2,1,3,18,1,1000,1575126000),(3,1,3,19,1,800,1575126000),(4,1,3,20,1,200,1575126000),(5,1,4,21,1,1400,1575126000),(6,1,4,22,1,400,1575126000),(7,1,4,23,1,300,1575126000),(8,1,4,24,1,250,1575126000),(9,1,4,25,1,200,1575126000),(10,1,4,26,1,150,1575126000),(11,1,4,27,1,100,1575126000),(12,1,4,28,1,80,1575126000),(13,1,4,29,1,70,1575126000),(14,1,4,30,1,50,1575126000),(15,1,2,2,1,500,1575126000),(16,1,2,3,1,450,1575126000),(17,1,2,4,1,400,1575126000),(18,1,2,5,1,300,1575126000),(19,1,2,6,1,200,1575126000),(20,1,2,7,1,100,1575126000),(21,1,2,8,1,50,1575126000),(22,2,3,17,1,3000,1575126000),(23,2,3,18,1,1000,1575126000),(24,2,3,19,1,800,1575126000),(25,2,3,20,1,200,1575126000),(26,2,4,21,1,1400,1575126000),(27,2,4,22,1,400,1575126000),(28,2,4,23,1,300,1575126000),(29,2,4,24,1,250,1575126000),(30,2,4,25,1,200,1575126000),(31,2,4,26,1,150,1575126000),(32,2,4,27,1,100,1575126000),(33,2,4,28,1,80,1575126000),(34,2,4,29,1,70,1575126000),(35,2,4,30,1,50,1575126000),(36,2,2,2,1,500,1575126000),(37,2,2,3,1,450,1575126000),(38,2,2,4,1,400,1575126000),(39,2,2,5,1,300,1575126000),(40,2,2,6,1,200,1575126000),(41,2,2,7,1,150,1575126000),(42,3,3,17,1,3000,1577804400),(43,3,3,18,1,1000,1577804400),(44,3,3,19,1,800,1577804400),(45,3,3,20,1,200,1577804400),(46,3,4,21,1,1400,1577804400),(47,3,4,22,1,400,1577804400),(48,3,4,23,1,300,1577804400),(49,3,4,24,1,250,1577804400),(50,3,4,25,1,200,1577804400),(51,3,4,26,1,150,1577804400),(52,3,4,27,1,100,1577804400),(53,3,4,28,1,80,1577804400),(54,3,4,29,1,70,1577804400),(55,3,4,30,1,50,1577804400),(56,3,2,2,1,480,1577804400),(57,3,2,3,1,450,1577804400),(58,3,2,4,1,400,1577804400),(59,3,2,5,1,300,1577804400),(60,3,2,6,1,200,1577804400),(61,3,2,7,1,100,1577804400),(62,3,2,8,1,70,1577804400),(63,4,3,17,1,3000,1580482800),(64,4,3,18,1,1000,1580482800),(65,4,3,19,1,800,1580482800),(66,4,3,20,1,200,1580482800),(67,4,4,21,1,1380,1580482800),(68,4,4,22,1,400,1580482800),(69,4,4,23,1,300,1580482800),(70,4,4,24,1,250,1580482800),(71,4,4,25,1,200,1580482800),(72,4,4,26,1,150,1580482800),(73,4,4,27,1,100,1580482800),(74,4,4,28,1,80,1580482800),(75,4,4,29,1,70,1580482800),(76,4,4,30,1,70,1580482800),(77,4,2,2,1,500,1580482800),(78,4,2,3,1,450,1580482800),(79,4,2,4,1,400,1580482800),(80,4,2,5,1,300,1580482800),(81,4,2,6,1,200,1580482800),(82,4,2,7,1,100,1580482800),(83,4,2,8,1,50,1580482800),(84,5,3,17,1,3000,1582988400),(85,5,3,18,1,1000,1582988400),(86,5,3,19,1,800,1582988400),(87,5,3,20,1,200,1582988400),(88,5,4,21,1,1400,1582988400),(89,5,4,22,1,400,1582988400),(90,5,4,23,1,300,1582988400),(91,5,4,24,1,250,1582988400),(92,5,4,25,1,200,1582988400),(93,5,4,26,1,150,1582988400),(94,5,4,27,1,100,1582988400),(95,5,4,28,1,80,1582988400),(96,5,4,29,1,70,1582988400),(97,5,4,30,1,50,1582988400),(98,5,2,2,1,490,1582988400),(99,5,2,3,1,440,1582988400),(100,5,2,4,1,390,1582988400),(101,5,2,5,1,300,1582988400),(102,5,2,6,1,200,1582988400),(103,5,2,7,1,100,1582988400),(104,5,2,8,1,50,1582988400),(105,5,2,9,1,30,1582988400),(106,6,3,17,1,3000,1585666800),(107,6,3,18,1,1000,1585666800),(108,6,3,19,1,800,1585666800),(109,6,3,20,1,200,1585666800),(110,6,4,21,1,1380,1585666800),(111,6,4,22,1,400,1585666800),(112,6,4,23,1,300,1585666800),(113,6,4,24,1,250,1585666800),(114,6,4,25,1,200,1585666800),(115,6,4,26,1,150,1585666800),(116,6,4,27,1,100,1585666800),(117,6,4,28,1,80,1585666800),(118,6,4,29,1,70,1585666800),(119,6,4,30,1,70,1585666800),(120,6,2,2,1,490,1585666800),(121,6,2,3,1,440,1585666800),(122,6,2,4,1,390,1585666800),(123,6,2,5,1,300,1585666800),(124,6,2,6,1,200,1585666800),(125,6,2,7,1,100,1585666800),(126,6,2,8,1,50,1585666800),(127,6,2,9,1,30,1585666800),(128,7,3,17,1,3000,1588258800),(129,7,3,18,1,1000,1588258800),(130,7,3,19,1,800,1588258800),(131,7,3,20,1,200,1588258800),(132,7,4,21,1,1400,1588258800),(133,7,4,22,1,400,1588258800),(134,7,4,23,1,300,1588258800),(135,7,4,24,1,250,1588258800),(136,7,4,25,1,200,1588258800),(137,7,4,26,1,150,1588258800),(138,7,4,27,1,100,1588258800),(139,7,4,28,1,80,1588258800),(140,7,4,29,1,70,1588258800),(141,7,4,30,1,50,1588258800),(142,7,2,2,1,490,1588258800),(143,7,2,3,1,440,1588258800),(144,7,2,4,1,390,1588258800),(145,7,2,5,1,290,1588258800),(146,7,2,6,1,200,1588258800),(147,7,2,7,1,100,1588258800),(148,7,2,8,1,50,1588258800),(149,7,2,9,1,30,1588258800),(150,7,2,10,1,10,1588258800),(151,8,3,17,1,3000,1588258800),(152,8,3,18,1,1000,1588258800),(153,8,3,19,1,800,1588258800),(154,8,3,20,1,200,1588258800),(155,8,4,21,1,1400,1588258800),(156,8,4,22,1,400,1588258800),(157,8,4,23,1,300,1588258800),(158,8,4,24,1,250,1588258800),(159,8,4,25,1,200,1588258800),(160,8,4,26,1,150,1588258800),(161,8,4,27,1,100,1588258800),(162,8,4,28,1,80,1588258800),(163,8,4,29,1,70,1588258800),(164,8,4,30,1,50,1588258800),(165,8,2,2,1,480,1588258800),(166,8,2,3,1,440,1588258800),(167,8,2,4,1,390,1588258800),(168,8,2,5,1,290,1588258800),(169,8,2,6,1,200,1588258800),(170,8,2,7,1,100,1588258800),(171,8,2,8,1,50,1588258800),(172,8,2,9,1,50,1588258800),(173,9,3,17,1,3000,1590937200),(174,9,3,18,1,1000,1590937200),(175,9,3,19,1,800,1590937200),(176,9,3,20,1,200,1590937200),(177,9,4,21,1,1400,1590937200),(178,9,4,22,1,400,1590937200),(179,9,4,23,1,300,1590937200),(180,9,4,24,1,250,1590937200),(181,9,4,25,1,200,1590937200),(182,9,4,26,1,150,1590937200),(183,9,4,27,1,100,1590937200),(184,9,4,28,1,80,1590937200),(185,9,4,29,1,70,1590937200),(186,9,4,30,1,50,1590937200),(187,9,2,2,1,490,1590937200),(188,9,2,3,1,440,1590937200),(189,9,2,4,1,390,1590937200),(190,9,2,5,1,290,1590937200),(191,9,2,6,1,200,1590937200),(192,9,2,7,1,100,1590937200),(193,9,2,8,1,50,1590937200),(194,9,2,9,1,30,1590937200),(195,9,2,10,1,10,1590937200),(196,10,3,17,1,3000,1590937200),(197,10,3,18,1,1000,1590937200),(198,10,3,19,1,800,1590937200),(199,10,3,20,1,200,1590937200),(200,10,4,21,1,1400,1590937200),(201,10,4,22,1,400,1590937200),(202,10,4,23,1,300,1590937200),(203,10,4,24,1,250,1590937200),(204,10,4,25,1,200,1590937200),(205,10,4,26,1,150,1590937200),(206,10,4,27,1,100,1590937200),(207,10,4,28,1,80,1590937200),(208,10,4,29,1,70,1590937200),(209,10,4,30,1,50,1590937200),(210,10,2,2,1,480,1590937200),(211,10,2,3,1,440,1590937200),(212,10,2,4,1,390,1590937200),(213,10,2,5,1,290,1590937200),(214,10,2,6,1,200,1590937200),(215,10,2,7,1,100,1590937200),(216,10,2,8,1,50,1590937200),(217,10,2,9,1,30,1590937200),(218,10,2,10,1,20,1590937200),(219,11,3,17,1,3000,1593529200),(220,11,3,18,1,1000,1593529200),(221,11,3,19,1,800,1593529200),(222,11,3,20,1,200,1593529200),(223,11,4,21,1,1380,1593529200),(224,11,4,22,1,400,1593529200),(225,11,4,23,1,300,1593529200),(226,11,4,24,1,250,1593529200),(227,11,4,25,1,200,1593529200),(228,11,4,26,1,150,1593529200),(229,11,4,27,1,100,1593529200),(230,11,4,28,1,80,1593529200),(231,11,4,29,1,70,1593529200),(232,11,4,30,1,70,1593529200),(233,11,2,2,1,480,1593529200),(234,11,2,3,1,440,1593529200),(235,11,2,4,1,390,1593529200),(236,11,2,5,1,290,1593529200),(237,11,2,6,1,200,1593529200),(238,11,2,7,1,100,1593529200),(239,11,2,8,1,50,1593529200),(240,11,2,9,1,30,1593529200),(241,11,2,10,1,20,1593529200),(242,12,3,17,1,3000,1596207600),(243,12,3,18,1,1000,1596207600),(244,12,3,19,1,800,1596207600),(245,12,3,20,1,200,1596207600),(246,12,4,21,1,1400,1596207600),(247,12,4,22,1,400,1596207600),(248,12,4,23,1,300,1596207600),(249,12,4,24,1,250,1596207600),(250,12,4,25,1,200,1596207600),(251,12,4,26,1,150,1596207600),(252,12,4,27,1,100,1596207600),(253,12,4,28,1,80,1596207600),(254,12,4,29,1,70,1596207600),(255,12,4,30,1,50,1596207600),(256,12,2,2,1,480,1596207600),(257,12,2,3,1,440,1596207600),(258,12,2,4,1,390,1596207600),(259,12,2,5,1,290,1596207600),(260,12,2,6,1,190,1596207600),(261,12,2,7,1,100,1596207600),(262,12,2,8,1,50,1596207600),(263,12,2,9,1,30,1596207600),(264,12,2,10,1,20,1596207600),(265,12,2,11,1,10,1596207600),(266,13,3,17,1,3000,1598886000),(267,13,3,18,1,1000,1598886000),(268,13,3,19,1,800,1598886000),(269,13,3,20,1,200,1598886000),(270,13,4,21,1,1380,1598886000),(271,13,4,22,1,400,1598886000),(272,13,4,23,1,300,1598886000),(273,13,4,24,1,250,1598886000),(274,13,4,25,1,200,1598886000),(275,13,4,26,1,150,1598886000),(276,13,4,27,1,100,1598886000),(277,13,4,28,1,80,1598886000),(278,13,4,29,1,70,1598886000),(279,13,4,30,1,70,1598886000),(280,13,2,2,1,480,1598886000),(281,13,2,3,1,440,1598886000),(282,13,2,4,1,390,1598886000),(283,13,2,5,1,290,1598886000),(284,13,2,6,1,190,1598886000),(285,13,2,7,1,100,1598886000),(286,13,2,8,1,50,1598886000),(287,13,2,9,1,30,1598886000),(288,13,2,10,1,20,1598886000),(289,13,2,11,1,10,1598886000),(290,14,3,17,1,3000,1601478000),(291,14,3,18,1,1000,1601478000),(292,14,3,19,1,800,1601478000),(293,14,3,20,1,200,1601478000),(294,14,4,21,1,1400,1601478000),(295,14,4,22,1,400,1601478000),(296,14,4,23,1,300,1601478000),(297,14,4,24,1,250,1601478000),(298,14,4,25,1,200,1601478000),(299,14,4,26,1,150,1601478000),(300,14,4,27,1,100,1601478000),(301,14,4,28,1,80,1601478000),(302,14,4,29,1,70,1601478000),(303,14,4,30,1,50,1601478000),(304,14,2,2,1,480,1601478000),(305,14,2,3,1,440,1601478000),(306,14,2,4,1,390,1601478000),(307,14,2,5,1,290,1601478000),(308,14,2,6,1,190,1601478000),(309,14,2,7,1,90,1601478000),(310,14,2,8,1,50,1601478000),(311,14,2,9,1,30,1601478000),(312,14,2,10,1,20,1601478000),(313,14,2,11,1,20,1601478000),(314,15,3,17,1,3000,1604156400),(315,15,3,18,1,1000,1604156400),(316,15,3,19,1,800,1604156400),(317,15,3,20,1,200,1604156400),(318,15,4,21,1,1380,1604156400),(319,15,4,22,1,400,1604156400),(320,15,4,23,1,300,1604156400),(321,15,4,24,1,250,1604156400),(322,15,4,25,1,200,1604156400),(323,15,4,26,1,150,1604156400),(324,15,4,27,1,100,1604156400),(325,15,4,28,1,80,1604156400),(326,15,4,29,1,70,1604156400),(327,15,4,30,1,70,1604156400),(328,15,2,2,1,480,1604156400),(329,15,2,3,1,440,1604156400),(330,15,2,4,1,390,1604156400),(331,15,2,5,1,290,1604156400),(332,15,2,6,1,190,1604156400),(333,15,2,7,1,100,1604156400),(334,15,2,8,1,50,1604156400),(335,15,2,9,1,30,1604156400),(336,15,2,10,1,20,1604156400),(337,15,2,11,1,10,1604156400),(338,16,3,17,1,3000,1606748400),(339,16,3,18,1,1000,1606748400),(340,16,3,19,1,800,1606748400),(341,16,3,20,1,200,1606748400),(342,16,4,21,1,1400,1606748400),(343,16,4,22,1,400,1606748400),(344,16,4,23,1,300,1606748400),(345,16,4,24,1,250,1606748400),(346,16,4,25,1,200,1606748400),(347,16,4,26,1,150,1606748400),(348,16,4,27,1,100,1606748400),(349,16,4,28,1,80,1606748400),(350,16,4,29,1,70,1606748400),(351,16,4,30,1,50,1606748400),(352,16,2,2,1,480,1606748400),(353,16,2,3,1,440,1606748400),(354,16,2,4,1,390,1606748400),(355,16,2,5,1,290,1606748400),(356,16,2,6,1,190,1606748400),(357,16,2,7,1,100,1606748400),(358,16,2,8,1,50,1606748400),(359,16,2,9,1,30,1606748400),(360,16,2,10,1,20,1606748400),(361,16,2,11,1,10,1606748400),(362,17,3,17,1,3000,1606748400),(363,17,3,18,1,1000,1606748400),(364,17,3,19,1,800,1606748400),(365,17,3,20,1,200,1606748400),(366,17,4,21,1,1400,1606748400),(367,17,4,22,1,400,1606748400),(368,17,4,23,1,300,1606748400),(369,17,4,24,1,250,1606748400),(370,17,4,25,1,200,1606748400),(371,17,4,26,1,150,1606748400),(372,17,4,27,1,100,1606748400),(373,17,4,28,1,80,1606748400),(374,17,4,29,1,70,1606748400),(375,17,4,30,1,50,1606748400),(376,17,2,2,1,460,1606748400),(377,17,2,3,1,430,1606748400),(378,17,2,4,1,380,1606748400),(379,17,2,5,1,290,1606748400),(380,17,2,6,1,190,1606748400),(381,17,2,7,1,100,1606748400),(382,17,2,8,1,60,1606748400),(383,17,2,9,1,40,1606748400),(384,17,2,10,1,25,1606748400),(385,17,2,11,1,15,1606748400),(386,17,2,12,1,10,1606748400),(387,18,3,17,1,3000,1609426800),(388,18,3,18,1,1000,1609426800),(389,18,3,19,1,800,1609426800),(390,18,3,20,1,200,1609426800),(391,18,4,21,1,1380,1609426800),(392,18,4,22,1,400,1609426800),(393,18,4,23,1,300,1609426800),(394,18,4,24,1,250,1609426800),(395,18,4,25,1,200,1609426800),(396,18,4,26,1,150,1609426800),(397,18,4,27,1,100,1609426800),(398,18,4,28,1,80,1609426800),(399,18,4,29,1,70,1609426800),(400,18,4,30,1,70,1609426800),(401,18,2,2,1,460,1609426800),(402,18,2,3,1,430,1609426800),(403,18,2,4,1,380,1609426800),(404,18,2,5,1,290,1609426800),(405,18,2,6,1,190,1609426800),(406,18,2,7,1,100,1609426800),(407,18,2,8,1,60,1609426800),(408,18,2,9,1,40,1609426800),(409,18,2,10,1,25,1609426800),(410,18,2,11,1,15,1609426800),(411,18,2,12,1,10,1609426800),(412,19,3,17,1,3000,1612105200),(413,19,3,18,1,1000,1612105200),(414,19,3,19,1,800,1612105200),(415,19,3,20,1,200,1612105200),(416,19,4,21,1,1400,1612105200),(417,19,4,22,1,400,1612105200),(418,19,4,23,1,300,1612105200),(419,19,4,24,1,250,1612105200),(420,19,4,25,1,200,1612105200),(421,19,4,26,1,150,1612105200),(422,19,4,27,1,100,1612105200),(423,19,4,28,1,80,1612105200),(424,19,4,29,1,70,1612105200),(425,19,4,30,1,50,1612105200),(426,19,2,2,1,455,1612105200),(427,19,2,3,1,430,1612105200),(428,19,2,4,1,380,1612105200),(429,19,2,5,1,290,1612105200),(430,19,2,6,1,190,1612105200),(431,19,2,7,1,100,1612105200),(432,19,2,8,1,60,1612105200),(433,19,2,9,1,40,1612105200),(434,19,2,10,1,25,1612105200),(435,19,2,11,1,15,1612105200),(436,19,2,12,1,10,1612105200),(437,19,2,13,1,5,1612105200),(438,20,3,17,1,3000,1614524400),(439,20,3,18,1,1000,1614524400),(440,20,3,19,1,800,1614524400),(441,20,3,20,1,200,1614524400),(442,20,4,21,1,1380,1614524400),(443,20,4,22,1,400,1614524400),(444,20,4,23,1,300,1614524400),(445,20,4,24,1,250,1614524400),(446,20,4,25,1,200,1614524400),(447,20,4,26,1,150,1614524400),(448,20,4,27,1,100,1614524400),(449,20,4,28,1,80,1614524400),(450,20,4,29,1,70,1614524400),(451,20,4,30,1,70,1614524400),(452,20,2,2,1,455,1614524400),(453,20,2,3,1,430,1614524400),(454,20,2,4,1,380,1614524400),(455,20,2,5,1,290,1614524400),(456,20,2,6,1,190,1614524400),(457,20,2,7,1,100,1614524400),(458,20,2,8,1,60,1614524400),(459,20,2,9,1,40,1614524400),(460,20,2,10,1,25,1614524400),(461,20,2,11,1,15,1614524400),(462,20,2,12,1,10,1614524400),(463,20,2,13,1,5,1614524400),(464,21,3,17,1,3000,1617202800),(465,21,3,18,1,1000,1617202800),(466,21,3,19,1,800,1617202800),(467,21,3,20,1,200,1617202800),(468,21,4,21,1,1400,1617202800),(469,21,4,22,1,400,1617202800),(470,21,4,23,1,300,1617202800),(471,21,4,24,1,250,1617202800),(472,21,4,25,1,200,1617202800),(473,21,4,26,1,150,1617202800),(474,21,4,27,1,100,1617202800),(475,21,4,28,1,80,1617202800),(476,21,4,29,1,70,1617202800),(477,21,4,30,1,50,1617202800),(478,21,2,2,1,455,1617202800),(479,21,2,3,1,430,1617202800),(480,21,2,4,1,380,1617202800),(481,21,2,5,1,290,1617202800),(482,21,2,6,1,180,1617202800),(483,21,2,7,1,100,1617202800),(484,21,2,8,1,50,1617202800),(485,21,2,9,1,40,1617202800),(486,21,2,10,1,30,1617202800),(487,21,2,11,1,20,1617202800),(488,21,2,12,1,15,1617202800),(489,21,2,13,1,10,1617202800),(490,22,3,17,1,3000,1619794800),(491,22,3,18,1,1000,1619794800),(492,22,3,19,1,800,1619794800),(493,22,3,20,1,200,1619794800),(494,22,4,21,1,1400,1619794800),(495,22,4,22,1,400,1619794800),(496,22,4,23,1,300,1619794800),(497,22,4,24,1,250,1619794800),(498,22,4,25,1,200,1619794800),(499,22,4,26,1,150,1619794800),(500,22,4,27,1,100,1619794800),(501,22,4,28,1,80,1619794800),(502,22,4,29,1,70,1619794800),(503,22,4,30,1,50,1619794800),(504,22,2,2,1,450,1619794800),(505,22,2,3,1,400,1619794800),(506,22,2,4,1,350,1619794800),(507,22,2,5,1,280,1619794800),(508,22,2,6,1,180,1619794800),(509,22,2,7,1,120,1619794800),(510,22,2,8,1,65,1619794800),(511,22,2,9,1,50,1619794800),(512,22,2,10,1,40,1619794800),(513,22,2,11,1,30,1619794800),(514,22,2,12,1,20,1619794800),(515,22,2,13,1,10,1619794800),(516,22,2,14,1,5,1619794800),(517,23,3,17,1,3000,1619794800),(518,23,3,18,1,1000,1619794800),(519,23,3,19,1,800,1619794800),(520,23,3,20,1,200,1619794800),(521,23,4,21,1,1400,1619794800),(522,23,4,22,1,400,1619794800),(523,23,4,23,1,300,1619794800),(524,23,4,24,1,250,1619794800),(525,23,4,25,1,200,1619794800),(526,23,4,26,1,150,1619794800),(527,23,4,27,1,100,1619794800),(528,23,4,28,1,80,1619794800),(529,23,4,29,1,70,1619794800),(530,23,4,30,1,50,1619794800),(531,23,2,2,1,450,1619794800),(532,23,2,3,1,400,1619794800),(533,23,2,4,1,350,1619794800),(534,23,2,5,1,280,1619794800),(535,23,2,6,1,180,1619794800),(536,23,2,7,1,120,1619794800),(537,23,2,8,1,65,1619794800),(538,23,2,9,1,50,1619794800),(539,23,2,10,1,40,1619794800),(540,23,2,11,1,30,1619794800),(541,23,2,12,1,20,1619794800),(542,23,2,13,1,15,1619794800),(543,24,3,17,1,3000,1622473200),(544,24,3,18,1,1000,1622473200),(545,24,3,19,1,800,1622473200),(546,24,3,20,1,200,1622473200),(547,24,4,21,1,1400,1622473200),(548,24,4,22,1,400,1622473200),(549,24,4,23,1,300,1622473200),(550,24,4,24,1,250,1622473200),(551,24,4,25,1,200,1622473200),(552,24,4,26,1,150,1622473200),(553,24,4,27,1,100,1622473200),(554,24,4,28,1,80,1622473200),(555,24,4,29,1,70,1622473200),(556,24,4,30,1,50,1622473200),(557,24,2,2,1,455,1622473200),(558,24,2,3,1,400,1622473200),(559,24,2,4,1,350,1622473200),(560,24,2,5,1,280,1622473200),(561,24,2,6,1,180,1622473200),(562,24,2,7,1,120,1622473200),(563,24,2,8,1,65,1622473200),(564,24,2,9,1,50,1622473200),(565,24,2,10,1,40,1622473200),(566,24,2,11,1,30,1622473200),(567,24,2,12,1,20,1622473200),(568,24,2,13,1,10,1622473200),(569,25,3,17,1,3000,1622473200),(570,25,3,18,1,1000,1622473200),(571,25,3,19,1,800,1622473200),(572,25,3,20,1,200,1622473200),(573,25,4,21,1,1400,1622473200),(574,25,4,22,1,400,1622473200),(575,25,4,23,1,300,1622473200),(576,25,4,24,1,250,1622473200),(577,25,4,25,1,200,1622473200),(578,25,4,26,1,150,1622473200),(579,25,4,27,1,100,1622473200),(580,25,4,28,1,80,1622473200),(581,25,4,29,1,70,1622473200),(582,25,4,30,1,50,1622473200),(583,25,2,2,1,450,1622473200),(584,25,2,3,1,400,1622473200),(585,25,2,4,1,350,1622473200),(586,25,2,5,1,280,1622473200),(587,25,2,6,1,180,1622473200),(588,25,2,7,1,120,1622473200),(589,25,2,8,1,65,1622473200),(590,25,2,9,1,50,1622473200),(591,25,2,10,1,40,1622473200),(592,25,2,11,1,30,1622473200),(593,25,2,12,1,20,1622473200),(594,25,2,13,1,10,1622473200),(595,25,2,14,1,5,1622473200),(596,26,3,17,1,3000,1625065200),(597,26,3,18,1,1000,1625065200),(598,26,3,19,1,800,1625065200),(599,26,3,20,1,200,1625065200),(600,26,4,21,1,1380,1625065200),(601,26,4,22,1,400,1625065200),(602,26,4,23,1,300,1625065200),(603,26,4,24,1,250,1625065200),(604,26,4,25,1,200,1625065200),(605,26,4,26,1,150,1625065200),(606,26,4,27,1,100,1625065200),(607,26,4,28,1,80,1625065200),(608,26,4,29,1,70,1625065200),(609,26,4,30,1,70,1625065200),(610,26,2,2,1,450,1625065200),(611,26,2,3,1,400,1625065200),(612,26,2,4,1,350,1625065200),(613,26,2,5,1,280,1625065200),(614,26,2,6,1,180,1625065200),(615,26,2,7,1,120,1625065200),(616,26,2,8,1,65,1625065200),(617,26,2,9,1,50,1625065200),(618,26,2,10,1,40,1625065200),(619,26,2,11,1,30,1625065200),(620,26,2,12,1,20,1625065200),(621,26,2,13,1,10,1625065200),(622,26,2,14,1,5,1625065200),(623,27,3,17,1,3000,1627743600),(624,27,3,18,1,1000,1627743600),(625,27,3,19,1,800,1627743600),(626,27,3,20,1,200,1627743600),(627,27,4,21,1,1400,1627743600),(628,27,4,22,1,400,1627743600),(629,27,4,23,1,300,1627743600),(630,27,4,24,1,250,1627743600),(631,27,4,25,1,200,1627743600),(632,27,4,26,1,150,1627743600),(633,27,4,27,1,100,1627743600),(634,27,4,28,1,80,1627743600),(635,27,4,29,1,70,1627743600),(636,27,4,30,1,50,1627743600),(637,27,2,2,1,450,1627743600),(638,27,2,3,1,400,1627743600),(639,27,2,4,1,350,1627743600),(640,27,2,5,1,270,1627743600),(641,27,2,6,1,180,1627743600),(642,27,2,7,1,120,1627743600),(643,27,2,8,1,65,1627743600),(644,27,2,9,1,50,1627743600),(645,27,2,10,1,40,1627743600),(646,27,2,11,1,30,1627743600),(647,27,2,12,1,20,1627743600),(648,27,2,13,1,15,1627743600),(649,27,2,14,1,10,1627743600),(650,28,3,17,1,3000,1630422000),(651,28,3,18,1,1000,1630422000),(652,28,3,19,1,800,1630422000),(653,28,3,20,1,200,1630422000),(654,28,4,21,1,1380,1630422000),(655,28,4,22,1,400,1630422000),(656,28,4,23,1,300,1630422000),(657,28,4,24,1,250,1630422000),(658,28,4,25,1,200,1630422000),(659,28,4,26,1,150,1630422000),(660,28,4,27,1,100,1630422000),(661,28,4,28,1,80,1630422000),(662,28,4,29,1,70,1630422000),(663,28,4,30,1,70,1630422000),(664,28,2,2,1,450,1630422000),(665,28,2,3,1,400,1630422000),(666,28,2,4,1,350,1630422000),(667,28,2,5,1,270,1630422000),(668,28,2,6,1,180,1630422000),(669,28,2,7,1,120,1630422000),(670,28,2,8,1,70,1630422000),(671,28,2,9,1,50,1630422000),(672,28,2,10,1,40,1630422000),(673,28,2,11,1,30,1630422000),(674,28,2,12,1,20,1630422000),(675,28,2,13,1,15,1630422000),(676,28,2,14,1,5,1630422000),(677,29,3,17,1,3000,1633014000),(678,29,3,18,1,1000,1633014000),(679,29,3,19,1,800,1633014000),(680,29,3,20,1,200,1633014000),...\G +DROP TABLE IF EXISTS `user_items`\G -# Query 72: ID 0x1E3A07D890F5E3D9 +# Query 72: ID 0xF4679FBCB9B776C4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 16.5ms 16.5ms 16.5ms 16.5ms 16.5ms 16.5ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 17.9ms 17.9ms 17.9ms 17.9ms 17.9ms 17.9ms +# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_devices`\G +DROP TABLE IF EXISTS `login_bonus_masters`\G -# Query 73: ID 0x57421969A9CA84AB +# Query 73: ID 0x86747EE909530562 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 14.5ms 14.5ms 14.5ms 14.5ms 14.5ms 14.5ms -# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us +# Exec time 0 16.8ms 16.8ms 16.8ms 16.8ms 16.8ms 16.8ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_sessions`\G +INSERT INTO `gacha_item_masters` VALUES (1,1,3,17,1,3000,1575126000),(2,1,3,18,1,1000,1575126000),(3,1,3,19,1,800,1575126000),(4,1,3,20,1,200,1575126000),(5,1,4,21,1,1400,1575126000),(6,1,4,22,1,400,1575126000),(7,1,4,23,1,300,1575126000),(8,1,4,24,1,250,1575126000),(9,1,4,25,1,200,1575126000),(10,1,4,26,1,150,1575126000),(11,1,4,27,1,100,1575126000),(12,1,4,28,1,80,1575126000),(13,1,4,29,1,70,1575126000),(14,1,4,30,1,50,1575126000),(15,1,2,2,1,500,1575126000),(16,1,2,3,1,450,1575126000),(17,1,2,4,1,400,1575126000),(18,1,2,5,1,300,1575126000),(19,1,2,6,1,200,1575126000),(20,1,2,7,1,100,1575126000),(21,1,2,8,1,50,1575126000),(22,2,3,17,1,3000,1575126000),(23,2,3,18,1,1000,1575126000),(24,2,3,19,1,800,1575126000),(25,2,3,20,1,200,1575126000),(26,2,4,21,1,1400,1575126000),(27,2,4,22,1,400,1575126000),(28,2,4,23,1,300,1575126000),(29,2,4,24,1,250,1575126000),(30,2,4,25,1,200,1575126000),(31,2,4,26,1,150,1575126000),(32,2,4,27,1,100,1575126000),(33,2,4,28,1,80,1575126000),(34,2,4,29,1,70,1575126000),(35,2,4,30,1,50,1575126000),(36,2,2,2,1,500,1575126000),(37,2,2,3,1,450,1575126000),(38,2,2,4,1,400,1575126000),(39,2,2,5,1,300,1575126000),(40,2,2,6,1,200,1575126000),(41,2,2,7,1,150,1575126000),(42,3,3,17,1,3000,1577804400),(43,3,3,18,1,1000,1577804400),(44,3,3,19,1,800,1577804400),(45,3,3,20,1,200,1577804400),(46,3,4,21,1,1400,1577804400),(47,3,4,22,1,400,1577804400),(48,3,4,23,1,300,1577804400),(49,3,4,24,1,250,1577804400),(50,3,4,25,1,200,1577804400),(51,3,4,26,1,150,1577804400),(52,3,4,27,1,100,1577804400),(53,3,4,28,1,80,1577804400),(54,3,4,29,1,70,1577804400),(55,3,4,30,1,50,1577804400),(56,3,2,2,1,480,1577804400),(57,3,2,3,1,450,1577804400),(58,3,2,4,1,400,1577804400),(59,3,2,5,1,300,1577804400),(60,3,2,6,1,200,1577804400),(61,3,2,7,1,100,1577804400),(62,3,2,8,1,70,1577804400),(63,4,3,17,1,3000,1580482800),(64,4,3,18,1,1000,1580482800),(65,4,3,19,1,800,1580482800),(66,4,3,20,1,200,1580482800),(67,4,4,21,1,1380,1580482800),(68,4,4,22,1,400,1580482800),(69,4,4,23,1,300,1580482800),(70,4,4,24,1,250,1580482800),(71,4,4,25,1,200,1580482800),(72,4,4,26,1,150,1580482800),(73,4,4,27,1,100,1580482800),(74,4,4,28,1,80,1580482800),(75,4,4,29,1,70,1580482800),(76,4,4,30,1,70,1580482800),(77,4,2,2,1,500,1580482800),(78,4,2,3,1,450,1580482800),(79,4,2,4,1,400,1580482800),(80,4,2,5,1,300,1580482800),(81,4,2,6,1,200,1580482800),(82,4,2,7,1,100,1580482800),(83,4,2,8,1,50,1580482800),(84,5,3,17,1,3000,1582988400),(85,5,3,18,1,1000,1582988400),(86,5,3,19,1,800,1582988400),(87,5,3,20,1,200,1582988400),(88,5,4,21,1,1400,1582988400),(89,5,4,22,1,400,1582988400),(90,5,4,23,1,300,1582988400),(91,5,4,24,1,250,1582988400),(92,5,4,25,1,200,1582988400),(93,5,4,26,1,150,1582988400),(94,5,4,27,1,100,1582988400),(95,5,4,28,1,80,1582988400),(96,5,4,29,1,70,1582988400),(97,5,4,30,1,50,1582988400),(98,5,2,2,1,490,1582988400),(99,5,2,3,1,440,1582988400),(100,5,2,4,1,390,1582988400),(101,5,2,5,1,300,1582988400),(102,5,2,6,1,200,1582988400),(103,5,2,7,1,100,1582988400),(104,5,2,8,1,50,1582988400),(105,5,2,9,1,30,1582988400),(106,6,3,17,1,3000,1585666800),(107,6,3,18,1,1000,1585666800),(108,6,3,19,1,800,1585666800),(109,6,3,20,1,200,1585666800),(110,6,4,21,1,1380,1585666800),(111,6,4,22,1,400,1585666800),(112,6,4,23,1,300,1585666800),(113,6,4,24,1,250,1585666800),(114,6,4,25,1,200,1585666800),(115,6,4,26,1,150,1585666800),(116,6,4,27,1,100,1585666800),(117,6,4,28,1,80,1585666800),(118,6,4,29,1,70,1585666800),(119,6,4,30,1,70,1585666800),(120,6,2,2,1,490,1585666800),(121,6,2,3,1,440,1585666800),(122,6,2,4,1,390,1585666800),(123,6,2,5,1,300,1585666800),(124,6,2,6,1,200,1585666800),(125,6,2,7,1,100,1585666800),(126,6,2,8,1,50,1585666800),(127,6,2,9,1,30,1585666800),(128,7,3,17,1,3000,1588258800),(129,7,3,18,1,1000,1588258800),(130,7,3,19,1,800,1588258800),(131,7,3,20,1,200,1588258800),(132,7,4,21,1,1400,1588258800),(133,7,4,22,1,400,1588258800),(134,7,4,23,1,300,1588258800),(135,7,4,24,1,250,1588258800),(136,7,4,25,1,200,1588258800),(137,7,4,26,1,150,1588258800),(138,7,4,27,1,100,1588258800),(139,7,4,28,1,80,1588258800),(140,7,4,29,1,70,1588258800),(141,7,4,30,1,50,1588258800),(142,7,2,2,1,490,1588258800),(143,7,2,3,1,440,1588258800),(144,7,2,4,1,390,1588258800),(145,7,2,5,1,290,1588258800),(146,7,2,6,1,200,1588258800),(147,7,2,7,1,100,1588258800),(148,7,2,8,1,50,1588258800),(149,7,2,9,1,30,1588258800),(150,7,2,10,1,10,1588258800),(151,8,3,17,1,3000,1588258800),(152,8,3,18,1,1000,1588258800),(153,8,3,19,1,800,1588258800),(154,8,3,20,1,200,1588258800),(155,8,4,21,1,1400,1588258800),(156,8,4,22,1,400,1588258800),(157,8,4,23,1,300,1588258800),(158,8,4,24,1,250,1588258800),(159,8,4,25,1,200,1588258800),(160,8,4,26,1,150,1588258800),(161,8,4,27,1,100,1588258800),(162,8,4,28,1,80,1588258800),(163,8,4,29,1,70,1588258800),(164,8,4,30,1,50,1588258800),(165,8,2,2,1,480,1588258800),(166,8,2,3,1,440,1588258800),(167,8,2,4,1,390,1588258800),(168,8,2,5,1,290,1588258800),(169,8,2,6,1,200,1588258800),(170,8,2,7,1,100,1588258800),(171,8,2,8,1,50,1588258800),(172,8,2,9,1,50,1588258800),(173,9,3,17,1,3000,1590937200),(174,9,3,18,1,1000,1590937200),(175,9,3,19,1,800,1590937200),(176,9,3,20,1,200,1590937200),(177,9,4,21,1,1400,1590937200),(178,9,4,22,1,400,1590937200),(179,9,4,23,1,300,1590937200),(180,9,4,24,1,250,1590937200),(181,9,4,25,1,200,1590937200),(182,9,4,26,1,150,1590937200),(183,9,4,27,1,100,1590937200),(184,9,4,28,1,80,1590937200),(185,9,4,29,1,70,1590937200),(186,9,4,30,1,50,1590937200),(187,9,2,2,1,490,1590937200),(188,9,2,3,1,440,1590937200),(189,9,2,4,1,390,1590937200),(190,9,2,5,1,290,1590937200),(191,9,2,6,1,200,1590937200),(192,9,2,7,1,100,1590937200),(193,9,2,8,1,50,1590937200),(194,9,2,9,1,30,1590937200),(195,9,2,10,1,10,1590937200),(196,10,3,17,1,3000,1590937200),(197,10,3,18,1,1000,1590937200),(198,10,3,19,1,800,1590937200),(199,10,3,20,1,200,1590937200),(200,10,4,21,1,1400,1590937200),(201,10,4,22,1,400,1590937200),(202,10,4,23,1,300,1590937200),(203,10,4,24,1,250,1590937200),(204,10,4,25,1,200,1590937200),(205,10,4,26,1,150,1590937200),(206,10,4,27,1,100,1590937200),(207,10,4,28,1,80,1590937200),(208,10,4,29,1,70,1590937200),(209,10,4,30,1,50,1590937200),(210,10,2,2,1,480,1590937200),(211,10,2,3,1,440,1590937200),(212,10,2,4,1,390,1590937200),(213,10,2,5,1,290,1590937200),(214,10,2,6,1,200,1590937200),(215,10,2,7,1,100,1590937200),(216,10,2,8,1,50,1590937200),(217,10,2,9,1,30,1590937200),(218,10,2,10,1,20,1590937200),(219,11,3,17,1,3000,1593529200),(220,11,3,18,1,1000,1593529200),(221,11,3,19,1,800,1593529200),(222,11,3,20,1,200,1593529200),(223,11,4,21,1,1380,1593529200),(224,11,4,22,1,400,1593529200),(225,11,4,23,1,300,1593529200),(226,11,4,24,1,250,1593529200),(227,11,4,25,1,200,1593529200),(228,11,4,26,1,150,1593529200),(229,11,4,27,1,100,1593529200),(230,11,4,28,1,80,1593529200),(231,11,4,29,1,70,1593529200),(232,11,4,30,1,70,1593529200),(233,11,2,2,1,480,1593529200),(234,11,2,3,1,440,1593529200),(235,11,2,4,1,390,1593529200),(236,11,2,5,1,290,1593529200),(237,11,2,6,1,200,1593529200),(238,11,2,7,1,100,1593529200),(239,11,2,8,1,50,1593529200),(240,11,2,9,1,30,1593529200),(241,11,2,10,1,20,1593529200),(242,12,3,17,1,3000,1596207600),(243,12,3,18,1,1000,1596207600),(244,12,3,19,1,800,1596207600),(245,12,3,20,1,200,1596207600),(246,12,4,21,1,1400,1596207600),(247,12,4,22,1,400,1596207600),(248,12,4,23,1,300,1596207600),(249,12,4,24,1,250,1596207600),(250,12,4,25,1,200,1596207600),(251,12,4,26,1,150,1596207600),(252,12,4,27,1,100,1596207600),(253,12,4,28,1,80,1596207600),(254,12,4,29,1,70,1596207600),(255,12,4,30,1,50,1596207600),(256,12,2,2,1,480,1596207600),(257,12,2,3,1,440,1596207600),(258,12,2,4,1,390,1596207600),(259,12,2,5,1,290,1596207600),(260,12,2,6,1,190,1596207600),(261,12,2,7,1,100,1596207600),(262,12,2,8,1,50,1596207600),(263,12,2,9,1,30,1596207600),(264,12,2,10,1,20,1596207600),(265,12,2,11,1,10,1596207600),(266,13,3,17,1,3000,1598886000),(267,13,3,18,1,1000,1598886000),(268,13,3,19,1,800,1598886000),(269,13,3,20,1,200,1598886000),(270,13,4,21,1,1380,1598886000),(271,13,4,22,1,400,1598886000),(272,13,4,23,1,300,1598886000),(273,13,4,24,1,250,1598886000),(274,13,4,25,1,200,1598886000),(275,13,4,26,1,150,1598886000),(276,13,4,27,1,100,1598886000),(277,13,4,28,1,80,1598886000),(278,13,4,29,1,70,1598886000),(279,13,4,30,1,70,1598886000),(280,13,2,2,1,480,1598886000),(281,13,2,3,1,440,1598886000),(282,13,2,4,1,390,1598886000),(283,13,2,5,1,290,1598886000),(284,13,2,6,1,190,1598886000),(285,13,2,7,1,100,1598886000),(286,13,2,8,1,50,1598886000),(287,13,2,9,1,30,1598886000),(288,13,2,10,1,20,1598886000),(289,13,2,11,1,10,1598886000),(290,14,3,17,1,3000,1601478000),(291,14,3,18,1,1000,1601478000),(292,14,3,19,1,800,1601478000),(293,14,3,20,1,200,1601478000),(294,14,4,21,1,1400,1601478000),(295,14,4,22,1,400,1601478000),(296,14,4,23,1,300,1601478000),(297,14,4,24,1,250,1601478000),(298,14,4,25,1,200,1601478000),(299,14,4,26,1,150,1601478000),(300,14,4,27,1,100,1601478000),(301,14,4,28,1,80,1601478000),(302,14,4,29,1,70,1601478000),(303,14,4,30,1,50,1601478000),(304,14,2,2,1,480,1601478000),(305,14,2,3,1,440,1601478000),(306,14,2,4,1,390,1601478000),(307,14,2,5,1,290,1601478000),(308,14,2,6,1,190,1601478000),(309,14,2,7,1,90,1601478000),(310,14,2,8,1,50,1601478000),(311,14,2,9,1,30,1601478000),(312,14,2,10,1,20,1601478000),(313,14,2,11,1,20,1601478000),(314,15,3,17,1,3000,1604156400),(315,15,3,18,1,1000,1604156400),(316,15,3,19,1,800,1604156400),(317,15,3,20,1,200,1604156400),(318,15,4,21,1,1380,1604156400),(319,15,4,22,1,400,1604156400),(320,15,4,23,1,300,1604156400),(321,15,4,24,1,250,1604156400),(322,15,4,25,1,200,1604156400),(323,15,4,26,1,150,1604156400),(324,15,4,27,1,100,1604156400),(325,15,4,28,1,80,1604156400),(326,15,4,29,1,70,1604156400),(327,15,4,30,1,70,1604156400),(328,15,2,2,1,480,1604156400),(329,15,2,3,1,440,1604156400),(330,15,2,4,1,390,1604156400),(331,15,2,5,1,290,1604156400),(332,15,2,6,1,190,1604156400),(333,15,2,7,1,100,1604156400),(334,15,2,8,1,50,1604156400),(335,15,2,9,1,30,1604156400),(336,15,2,10,1,20,1604156400),(337,15,2,11,1,10,1604156400),(338,16,3,17,1,3000,1606748400),(339,16,3,18,1,1000,1606748400),(340,16,3,19,1,800,1606748400),(341,16,3,20,1,200,1606748400),(342,16,4,21,1,1400,1606748400),(343,16,4,22,1,400,1606748400),(344,16,4,23,1,300,1606748400),(345,16,4,24,1,250,1606748400),(346,16,4,25,1,200,1606748400),(347,16,4,26,1,150,1606748400),(348,16,4,27,1,100,1606748400),(349,16,4,28,1,80,1606748400),(350,16,4,29,1,70,1606748400),(351,16,4,30,1,50,1606748400),(352,16,2,2,1,480,1606748400),(353,16,2,3,1,440,1606748400),(354,16,2,4,1,390,1606748400),(355,16,2,5,1,290,1606748400),(356,16,2,6,1,190,1606748400),(357,16,2,7,1,100,1606748400),(358,16,2,8,1,50,1606748400),(359,16,2,9,1,30,1606748400),(360,16,2,10,1,20,1606748400),(361,16,2,11,1,10,1606748400),(362,17,3,17,1,3000,1606748400),(363,17,3,18,1,1000,1606748400),(364,17,3,19,1,800,1606748400),(365,17,3,20,1,200,1606748400),(366,17,4,21,1,1400,1606748400),(367,17,4,22,1,400,1606748400),(368,17,4,23,1,300,1606748400),(369,17,4,24,1,250,1606748400),(370,17,4,25,1,200,1606748400),(371,17,4,26,1,150,1606748400),(372,17,4,27,1,100,1606748400),(373,17,4,28,1,80,1606748400),(374,17,4,29,1,70,1606748400),(375,17,4,30,1,50,1606748400),(376,17,2,2,1,460,1606748400),(377,17,2,3,1,430,1606748400),(378,17,2,4,1,380,1606748400),(379,17,2,5,1,290,1606748400),(380,17,2,6,1,190,1606748400),(381,17,2,7,1,100,1606748400),(382,17,2,8,1,60,1606748400),(383,17,2,9,1,40,1606748400),(384,17,2,10,1,25,1606748400),(385,17,2,11,1,15,1606748400),(386,17,2,12,1,10,1606748400),(387,18,3,17,1,3000,1609426800),(388,18,3,18,1,1000,1609426800),(389,18,3,19,1,800,1609426800),(390,18,3,20,1,200,1609426800),(391,18,4,21,1,1380,1609426800),(392,18,4,22,1,400,1609426800),(393,18,4,23,1,300,1609426800),(394,18,4,24,1,250,1609426800),(395,18,4,25,1,200,1609426800),(396,18,4,26,1,150,1609426800),(397,18,4,27,1,100,1609426800),(398,18,4,28,1,80,1609426800),(399,18,4,29,1,70,1609426800),(400,18,4,30,1,70,1609426800),(401,18,2,2,1,460,1609426800),(402,18,2,3,1,430,1609426800),(403,18,2,4,1,380,1609426800),(404,18,2,5,1,290,1609426800),(405,18,2,6,1,190,1609426800),(406,18,2,7,1,100,1609426800),(407,18,2,8,1,60,1609426800),(408,18,2,9,1,40,1609426800),(409,18,2,10,1,25,1609426800),(410,18,2,11,1,15,1609426800),(411,18,2,12,1,10,1609426800),(412,19,3,17,1,3000,1612105200),(413,19,3,18,1,1000,1612105200),(414,19,3,19,1,800,1612105200),(415,19,3,20,1,200,1612105200),(416,19,4,21,1,1400,1612105200),(417,19,4,22,1,400,1612105200),(418,19,4,23,1,300,1612105200),(419,19,4,24,1,250,1612105200),(420,19,4,25,1,200,1612105200),(421,19,4,26,1,150,1612105200),(422,19,4,27,1,100,1612105200),(423,19,4,28,1,80,1612105200),(424,19,4,29,1,70,1612105200),(425,19,4,30,1,50,1612105200),(426,19,2,2,1,455,1612105200),(427,19,2,3,1,430,1612105200),(428,19,2,4,1,380,1612105200),(429,19,2,5,1,290,1612105200),(430,19,2,6,1,190,1612105200),(431,19,2,7,1,100,1612105200),(432,19,2,8,1,60,1612105200),(433,19,2,9,1,40,1612105200),(434,19,2,10,1,25,1612105200),(435,19,2,11,1,15,1612105200),(436,19,2,12,1,10,1612105200),(437,19,2,13,1,5,1612105200),(438,20,3,17,1,3000,1614524400),(439,20,3,18,1,1000,1614524400),(440,20,3,19,1,800,1614524400),(441,20,3,20,1,200,1614524400),(442,20,4,21,1,1380,1614524400),(443,20,4,22,1,400,1614524400),(444,20,4,23,1,300,1614524400),(445,20,4,24,1,250,1614524400),(446,20,4,25,1,200,1614524400),(447,20,4,26,1,150,1614524400),(448,20,4,27,1,100,1614524400),(449,20,4,28,1,80,1614524400),(450,20,4,29,1,70,1614524400),(451,20,4,30,1,70,1614524400),(452,20,2,2,1,455,1614524400),(453,20,2,3,1,430,1614524400),(454,20,2,4,1,380,1614524400),(455,20,2,5,1,290,1614524400),(456,20,2,6,1,190,1614524400),(457,20,2,7,1,100,1614524400),(458,20,2,8,1,60,1614524400),(459,20,2,9,1,40,1614524400),(460,20,2,10,1,25,1614524400),(461,20,2,11,1,15,1614524400),(462,20,2,12,1,10,1614524400),(463,20,2,13,1,5,1614524400),(464,21,3,17,1,3000,1617202800),(465,21,3,18,1,1000,1617202800),(466,21,3,19,1,800,1617202800),(467,21,3,20,1,200,1617202800),(468,21,4,21,1,1400,1617202800),(469,21,4,22,1,400,1617202800),(470,21,4,23,1,300,1617202800),(471,21,4,24,1,250,1617202800),(472,21,4,25,1,200,1617202800),(473,21,4,26,1,150,1617202800),(474,21,4,27,1,100,1617202800),(475,21,4,28,1,80,1617202800),(476,21,4,29,1,70,1617202800),(477,21,4,30,1,50,1617202800),(478,21,2,2,1,455,1617202800),(479,21,2,3,1,430,1617202800),(480,21,2,4,1,380,1617202800),(481,21,2,5,1,290,1617202800),(482,21,2,6,1,180,1617202800),(483,21,2,7,1,100,1617202800),(484,21,2,8,1,50,1617202800),(485,21,2,9,1,40,1617202800),(486,21,2,10,1,30,1617202800),(487,21,2,11,1,20,1617202800),(488,21,2,12,1,15,1617202800),(489,21,2,13,1,10,1617202800),(490,22,3,17,1,3000,1619794800),(491,22,3,18,1,1000,1619794800),(492,22,3,19,1,800,1619794800),(493,22,3,20,1,200,1619794800),(494,22,4,21,1,1400,1619794800),(495,22,4,22,1,400,1619794800),(496,22,4,23,1,300,1619794800),(497,22,4,24,1,250,1619794800),(498,22,4,25,1,200,1619794800),(499,22,4,26,1,150,1619794800),(500,22,4,27,1,100,1619794800),(501,22,4,28,1,80,1619794800),(502,22,4,29,1,70,1619794800),(503,22,4,30,1,50,1619794800),(504,22,2,2,1,450,1619794800),(505,22,2,3,1,400,1619794800),(506,22,2,4,1,350,1619794800),(507,22,2,5,1,280,1619794800),(508,22,2,6,1,180,1619794800),(509,22,2,7,1,120,1619794800),(510,22,2,8,1,65,1619794800),(511,22,2,9,1,50,1619794800),(512,22,2,10,1,40,1619794800),(513,22,2,11,1,30,1619794800),(514,22,2,12,1,20,1619794800),(515,22,2,13,1,10,1619794800),(516,22,2,14,1,5,1619794800),(517,23,3,17,1,3000,1619794800),(518,23,3,18,1,1000,1619794800),(519,23,3,19,1,800,1619794800),(520,23,3,20,1,200,1619794800),(521,23,4,21,1,1400,1619794800),(522,23,4,22,1,400,1619794800),(523,23,4,23,1,300,1619794800),(524,23,4,24,1,250,1619794800),(525,23,4,25,1,200,1619794800),(526,23,4,26,1,150,1619794800),(527,23,4,27,1,100,1619794800),(528,23,4,28,1,80,1619794800),(529,23,4,29,1,70,1619794800),(530,23,4,30,1,50,1619794800),(531,23,2,2,1,450,1619794800),(532,23,2,3,1,400,1619794800),(533,23,2,4,1,350,1619794800),(534,23,2,5,1,280,1619794800),(535,23,2,6,1,180,1619794800),(536,23,2,7,1,120,1619794800),(537,23,2,8,1,65,1619794800),(538,23,2,9,1,50,1619794800),(539,23,2,10,1,40,1619794800),(540,23,2,11,1,30,1619794800),(541,23,2,12,1,20,1619794800),(542,23,2,13,1,15,1619794800),(543,24,3,17,1,3000,1622473200),(544,24,3,18,1,1000,1622473200),(545,24,3,19,1,800,1622473200),(546,24,3,20,1,200,1622473200),(547,24,4,21,1,1400,1622473200),(548,24,4,22,1,400,1622473200),(549,24,4,23,1,300,1622473200),(550,24,4,24,1,250,1622473200),(551,24,4,25,1,200,1622473200),(552,24,4,26,1,150,1622473200),(553,24,4,27,1,100,1622473200),(554,24,4,28,1,80,1622473200),(555,24,4,29,1,70,1622473200),(556,24,4,30,1,50,1622473200),(557,24,2,2,1,455,1622473200),(558,24,2,3,1,400,1622473200),(559,24,2,4,1,350,1622473200),(560,24,2,5,1,280,1622473200),(561,24,2,6,1,180,1622473200),(562,24,2,7,1,120,1622473200),(563,24,2,8,1,65,1622473200),(564,24,2,9,1,50,1622473200),(565,24,2,10,1,40,1622473200),(566,24,2,11,1,30,1622473200),(567,24,2,12,1,20,1622473200),(568,24,2,13,1,10,1622473200),(569,25,3,17,1,3000,1622473200),(570,25,3,18,1,1000,1622473200),(571,25,3,19,1,800,1622473200),(572,25,3,20,1,200,1622473200),(573,25,4,21,1,1400,1622473200),(574,25,4,22,1,400,1622473200),(575,25,4,23,1,300,1622473200),(576,25,4,24,1,250,1622473200),(577,25,4,25,1,200,1622473200),(578,25,4,26,1,150,1622473200),(579,25,4,27,1,100,1622473200),(580,25,4,28,1,80,1622473200),(581,25,4,29,1,70,1622473200),(582,25,4,30,1,50,1622473200),(583,25,2,2,1,450,1622473200),(584,25,2,3,1,400,1622473200),(585,25,2,4,1,350,1622473200),(586,25,2,5,1,280,1622473200),(587,25,2,6,1,180,1622473200),(588,25,2,7,1,120,1622473200),(589,25,2,8,1,65,1622473200),(590,25,2,9,1,50,1622473200),(591,25,2,10,1,40,1622473200),(592,25,2,11,1,30,1622473200),(593,25,2,12,1,20,1622473200),(594,25,2,13,1,10,1622473200),(595,25,2,14,1,5,1622473200),(596,26,3,17,1,3000,1625065200),(597,26,3,18,1,1000,1625065200),(598,26,3,19,1,800,1625065200),(599,26,3,20,1,200,1625065200),(600,26,4,21,1,1380,1625065200),(601,26,4,22,1,400,1625065200),(602,26,4,23,1,300,1625065200),(603,26,4,24,1,250,1625065200),(604,26,4,25,1,200,1625065200),(605,26,4,26,1,150,1625065200),(606,26,4,27,1,100,1625065200),(607,26,4,28,1,80,1625065200),(608,26,4,29,1,70,1625065200),(609,26,4,30,1,70,1625065200),(610,26,2,2,1,450,1625065200),(611,26,2,3,1,400,1625065200),(612,26,2,4,1,350,1625065200),(613,26,2,5,1,280,1625065200),(614,26,2,6,1,180,1625065200),(615,26,2,7,1,120,1625065200),(616,26,2,8,1,65,1625065200),(617,26,2,9,1,50,1625065200),(618,26,2,10,1,40,1625065200),(619,26,2,11,1,30,1625065200),(620,26,2,12,1,20,1625065200),(621,26,2,13,1,10,1625065200),(622,26,2,14,1,5,1625065200),(623,27,3,17,1,3000,1627743600),(624,27,3,18,1,1000,1627743600),(625,27,3,19,1,800,1627743600),(626,27,3,20,1,200,1627743600),(627,27,4,21,1,1400,1627743600),(628,27,4,22,1,400,1627743600),(629,27,4,23,1,300,1627743600),(630,27,4,24,1,250,1627743600),(631,27,4,25,1,200,1627743600),(632,27,4,26,1,150,1627743600),(633,27,4,27,1,100,1627743600),(634,27,4,28,1,80,1627743600),(635,27,4,29,1,70,1627743600),(636,27,4,30,1,50,1627743600),(637,27,2,2,1,450,1627743600),(638,27,2,3,1,400,1627743600),(639,27,2,4,1,350,1627743600),(640,27,2,5,1,270,1627743600),(641,27,2,6,1,180,1627743600),(642,27,2,7,1,120,1627743600),(643,27,2,8,1,65,1627743600),(644,27,2,9,1,50,1627743600),(645,27,2,10,1,40,1627743600),(646,27,2,11,1,30,1627743600),(647,27,2,12,1,20,1627743600),(648,27,2,13,1,15,1627743600),(649,27,2,14,1,10,1627743600),(650,28,3,17,1,3000,1630422000),(651,28,3,18,1,1000,1630422000),(652,28,3,19,1,800,1630422000),(653,28,3,20,1,200,1630422000),(654,28,4,21,1,1380,1630422000),(655,28,4,22,1,400,1630422000),(656,28,4,23,1,300,1630422000),(657,28,4,24,1,250,1630422000),(658,28,4,25,1,200,1630422000),(659,28,4,26,1,150,1630422000),(660,28,4,27,1,100,1630422000),(661,28,4,28,1,80,1630422000),(662,28,4,29,1,70,1630422000),(663,28,4,30,1,70,1630422000),(664,28,2,2,1,450,1630422000),(665,28,2,3,1,400,1630422000),(666,28,2,4,1,350,1630422000),(667,28,2,5,1,270,1630422000),(668,28,2,6,1,180,1630422000),(669,28,2,7,1,120,1630422000),(670,28,2,8,1,70,1630422000),(671,28,2,9,1,50,1630422000),(672,28,2,10,1,40,1630422000),(673,28,2,11,1,30,1630422000),(674,28,2,12,1,20,1630422000),(675,28,2,13,1,15,1630422000),(676,28,2,14,1,5,1630422000),(677,29,3,17,1,3000,1633014000),(678,29,3,18,1,1000,1633014000),(679,29,3,19,1,800,1633014000),(680,29,3,20,1,200,1633014000),...\G -# Query 74: ID 0x5650C082714B7223 +# Query 74: ID 0xF2A27D3F93FA52C7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 14.5ms 14.5ms 14.5ms 14.5ms 14.5ms 14.5ms -# Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us +# Exec time 0 16.5ms 16.5ms 16.5ms 16.5ms 16.5ms 16.5ms +# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `users`\G +CREATE TABLE `gacha_item_masters` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `gacha_id` bigint NOT NULL comment 'ガチャ台のID', + `item_type` int(1) NOT NULL comment 'アイテム種別', + `item_id` int NOT NULL comment 'アイテムID', + `amount` int NOT NULL comment 'アイテム数', + `weight` int NOT NULL comment '確率。万分率で表示', + `created_at` bigint NOT NULL, + PRIMARY KEY (`id`), + UNIQUE uniq_item_id (`gacha_id`, `item_type`, `item_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 75: ID 0x01E658CE344D6C62 +# Query 75: ID 0x2C08E20F560D395C # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 13.9ms 13.9ms 13.9ms 13.9ms 13.9ms 13.9ms -# Lock time 0 14.0us 14.0us 14.0us 14.0us 14.0us 14.0us -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 579 579 579 579.00 579 579 +# Exec time 0 16.0ms 16.0ms 16.0ms 16.0ms 16.0ms 16.0ms +# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT ENGINE, SUM(DATA_LENGTH+INDEX_LENGTH), COUNT(ENGINE), SUM(DATA_LENGTH), SUM(INDEX_LENGTH) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ('information_schema', 'performance_schema', 'mysql') AND ENGINE IS NOT NULL GROUP BY ENGINE ORDER BY ENGINE ASC\G +DROP TABLE IF EXISTS `user_one_time_tokens`\G -# Query 76: ID 0xD20899B0F0556337 +# Query 76: ID 0x57421969A9CA84AB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 13.3ms 13.3ms 13.3ms 13.3ms 13.3ms 13.3ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 15.9ms 15.9ms 15.9ms 15.9ms 15.9ms 15.9ms +# Lock time 0 14.0us 14.0us 14.0us 14.0us 14.0us 14.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_decks`\G +DROP TABLE IF EXISTS `user_sessions`\G # Query 77: ID 0x860EEC9555762063 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 13.1ms 13.1ms 13.1ms 13.1ms 13.1ms 13.1ms -# Lock time 0 15.0us 15.0us 15.0us 15.0us 15.0us 15.0us +# Exec time 0 15.5ms 15.5ms 15.5ms 15.5ms 15.5ms 15.5ms +# Lock time 0 13.0us 13.0us 13.0us 13.0us 13.0us 13.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: @@ -1311,150 +1323,167 @@ CREATE TABLE `users` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 78: ID 0x758FB6A2FA40D74E +# Query 78: ID 0x01E658CE344D6C62 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 12.6ms 12.6ms 12.6ms 12.6ms 12.6ms 12.6ms -# Lock time 0 24.0us 24.0us 24.0us 24.0us 24.0us 24.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 15.3ms 15.3ms 15.3ms 15.3ms 15.3ms 15.3ms +# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 579 579 579 579.00 579 579 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_login_bonuses`\G +SELECT ENGINE, SUM(DATA_LENGTH+INDEX_LENGTH), COUNT(ENGINE), SUM(DATA_LENGTH), SUM(INDEX_LENGTH) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ('information_schema', 'performance_schema', 'mysql') AND ENGINE IS NOT NULL GROUP BY ENGINE ORDER BY ENGINE ASC\G -# Query 79: ID 0x29F808E286E92849 +# Query 79: ID 0x0497272F00A23F5D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 11.9ms 11.9ms 11.9ms 11.9ms 11.9ms 11.9ms -# Lock time 0 20.0us 20.0us 20.0us 20.0us 20.0us 20.0us +# Exec time 0 9.8ms 9.8ms 9.8ms 9.8ms 9.8ms 9.8ms +# Lock time 0 14.0us 14.0us 14.0us 14.0us 14.0us 14.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `user_bans`\G +CREATE TABLE `item_masters` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `item_type` int(2) NOT NULL comment '1:ISUCOIN、2:ハンマー(カード)、3:強化素材、4:時短アイテム(タイマー)', + `name` varchar(128) NOT NULL comment 'アイテム名', + `description` varchar(255) comment 'アイテム説明文', + `amount_per_sec` int comment 'TYPE2:level1の時の生産性(ISU/sec)', + `max_level` int comment 'TYPE2:生産性(ISU/sec)', + `max_amount_per_sec` int comment 'TYPE2:level max時の生産性(ISU/sec)', + `base_exp_per_level` int comment 'TYP2:level1 -> 2に必要な経験値、以降、前のlevelの1.2倍(切り上げ)必要', + `gained_exp` int comment 'TYPE3:獲得経験値', + `shortening_min` bigint comment 'TYPE4:短縮時間(分)', + + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 80: ID 0x506251FB64ECAF39 +# Query 80: ID 0xB47F9DB7C8715FDE # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 11.5ms 11.5ms 11.5ms 11.5ms 11.5ms 11.5ms -# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Exec time 0 9.5ms 9.5ms 9.5ms 9.5ms 9.5ms 9.5ms +# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `login_bonus_masters` ( +CREATE TABLE `user_devices` ( `id` bigint NOT NULL AUTO_INCREMENT, - `start_at` bigint NOT NULL comment '開始日時', - `end_at` bigint comment '終了日時。Nullの場合、終了しない。', - `column_count` int(2) NOT NULL comment '何日分用意するかの日数。例:7日のスタートダッシュ、20日の通常ログイン', - `looped` boolean NOT NULL comment 'ループするかどうか', + `user_id` bigint NOT NULL comment 'ユーザID', + `platform_id` varchar(255) NOT NULL comment 'プラットフォームのviewer_id', + `platform_type` int(1) NOT NULL comment 'PC:1,iOS:2,Android:3', `created_at` bigint NOT NULL, - PRIMARY KEY (`id`) + `updated_at`bigint NOT NULL, + `deleted_at` bigint default NULL, + PRIMARY KEY(`id`), + UNIQUE uniq_user_id ( `user_id`, `platform_type`, `deleted_at`), + UNIQUE uniq_platform_id (`platform_id`, `platform_type`, `deleted_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 81: ID 0x1A1B4F622181A0E8 +# Query 81: ID 0x40A5548652B4DFDB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 10.6ms 10.6ms 10.6ms 10.6ms 10.6ms 10.6ms -# Lock time 0 14.0us 14.0us 14.0us 14.0us 14.0us 14.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 9.1ms 9.1ms 9.1ms 9.1ms 9.1ms 9.1ms +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 111 111 111 111.00 111 111 +# Rows examined 0 335 335 335 335.00 335 335 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_present_all_received_history` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment '受けとったユーザID', - `present_all_id` bigint NOT NULL comment '全員プレゼントマスタのID', - `received_at` bigint NOT NULL comment '受け取った日時', - `created_at` bigint NOT NULL, - `updated_at`bigint NOT NULL, - `deleted_at` bigint default NULL, - INDEX (user_id, present_all_id), - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +SHOW TABLE STATUS FROM `performance_schema`\G -# Query 82: ID 0xAFF7204489401BB0 +# Query 82: ID 0xC489832D743BBCB7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 9.8ms 9.8ms 9.8ms 9.8ms 9.8ms 9.8ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 8.9ms 8.9ms 8.9ms 8.9ms 8.9ms 8.9ms +# Lock time 0 13.0us 13.0us 13.0us 13.0us 13.0us 13.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_one_time_tokens` ( +CREATE TABLE `admin_sessions` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint NOT NULL, - `token` varchar(128) NOT NULL, - `token_type` int(2) NOT NULL comment '1:ガチャ用、2:カード強化用', + `session_id` varchar(128) NOT NULL, `created_at` bigint NOT NULL, `updated_at` bigint NOT NULL, `expired_at` bigint NOT NULL, `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - INDEX (`token`), - UNIQUE uniq_token (`user_id`, `deleted_at`, `token`) + INDEX (`session_id`), + UNIQUE uniq_admin_session_id (`user_id`, `deleted_at`, `session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 83: ID 0x766103D07D2ECF5E +# Query 83: ID 0x3F55BA10AED604CD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 9.5ms 9.5ms 9.5ms 9.5ms 9.5ms 9.5ms -# Lock time 0 24.0us 24.0us 24.0us 24.0us 24.0us 24.0us +# Exec time 0 8.6ms 8.6ms 8.6ms 8.6ms 8.6ms 8.6ms +# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `item_masters`\G +CREATE TABLE `user_sessions` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `user_id` bigint NOT NULL, + `session_id` varchar(128) NOT NULL, + `created_at` bigint NOT NULL, + `updated_at` bigint NOT NULL, + `expired_at` bigint NOT NULL, + `deleted_at` bigint default NULL, + PRIMARY KEY (`id`), + INDEX (`session_id`), + UNIQUE uniq_session_id (`user_id`, `deleted_at`, `session_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 84: ID 0xC489832D743BBCB7 +# Query 84: ID 0xAFF7204489401BB0 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 8.8ms 8.8ms 8.8ms 8.8ms 8.8ms 8.8ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 8.6ms 8.6ms 8.6ms 8.6ms 8.6ms 8.6ms +# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `admin_sessions` ( +CREATE TABLE `user_one_time_tokens` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint NOT NULL, - `session_id` varchar(128) NOT NULL, + `token` varchar(128) NOT NULL, + `token_type` int(2) NOT NULL comment '1:ガチャ用、2:カード強化用', `created_at` bigint NOT NULL, `updated_at` bigint NOT NULL, `expired_at` bigint NOT NULL, `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - INDEX (`session_id`), - UNIQUE uniq_admin_session_id (`user_id`, `deleted_at`, `session_id`) + INDEX (`token`), + UNIQUE uniq_token (`user_id`, `deleted_at`, `token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 85: ID 0xCCE859C9AD6E6ADF +# Query 85: ID 0x158B19621151BDC6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 8.4ms 8.4ms 8.4ms 8.4ms 8.4ms 8.4ms +# Exec time 0 8.5ms 8.5ms 8.5ms 8.5ms 8.5ms 8.5ms # Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1462,20 +1491,20 @@ CREATE TABLE `admin_sessions` ( # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_decks` ( +CREATE TABLE `user_items` ( `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment 'ユーザID', - `user_card_id_1` bigint NOT NULL comment '装備枠1', - `user_card_id_2` bigint NOT NULL comment '装備枠2', - `user_card_id_3` bigint NOT NULL comment '装備枠3', + `user_id` bigint NOT NULL comment 'ユーザID', + `item_type` int(1) NOT NULL comment 'アイテム種別:1はusersテーブル、2はuser_cardsへ。3,4をこのテーブルへ保存', + `item_id` int NOT NULL comment 'アイテムID', + `amount` int NOT NULL comment 'アイテム数', `created_at` bigint NOT NULL, `updated_at`bigint NOT NULL, `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - UNIQUE uniq_user_id ( `user_id`, `deleted_at`) + INDEX userid_idx (`user_id`, `item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 86: ID 0x3F55BA10AED604CD +# Query 86: ID 0x0C925CB4F3B1E40B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 @@ -1487,75 +1516,54 @@ CREATE TABLE `user_decks` ( # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_sessions` ( +CREATE TABLE `user_cards` ( `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL, - `session_id` varchar(128) NOT NULL, + `user_id` bigint NOT NULL comment 'ユーザID', + `card_id` int NOT NULL comment '装備のID', + `amount_per_sec` int NOT NULL comment '生産性(ISU/sec)', + `level` int NOT NULL comment 'カードレベル', + `total_exp` bigint NOT NULL comment '累計経験値', `created_at` bigint NOT NULL, - `updated_at` bigint NOT NULL, - `expired_at` bigint NOT NULL, + `updated_at`bigint NOT NULL, `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - INDEX (`session_id`), - UNIQUE uniq_session_id (`user_id`, `deleted_at`, `session_id`) + UNIQUE uniq_card_id (`user_id`, `card_id`, `deleted_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 87: ID 0xB47F9DB7C8715FDE +# Query 87: ID 0x5650C082714B7223 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 # Exec time 0 8.2ms 8.2ms 8.2ms 8.2ms 8.2ms 8.2ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_devices` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment 'ユーザID', - `platform_id` varchar(255) NOT NULL comment 'プラットフォームのviewer_id', - `platform_type` int(1) NOT NULL comment 'PC:1,iOS:2,Android:3', - `created_at` bigint NOT NULL, - `updated_at`bigint NOT NULL, - `deleted_at` bigint default NULL, - PRIMARY KEY(`id`), - UNIQUE uniq_user_id ( `user_id`, `platform_type`, `deleted_at`), - UNIQUE uniq_platform_id (`platform_id`, `platform_type`, `deleted_at`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +DROP TABLE IF EXISTS `users`\G -# Query 88: ID 0x158B19621151BDC6 +# Query 88: ID 0x758FB6A2FA40D74E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 # Exec time 0 7.8ms 7.8ms 7.8ms 7.8ms 7.8ms 7.8ms -# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_items` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment 'ユーザID', - `item_type` int(1) NOT NULL comment 'アイテム種別:1はusersテーブル、2はuser_cardsへ。3,4をこのテーブルへ保存', - `item_id` int NOT NULL comment 'アイテムID', - `amount` int NOT NULL comment 'アイテム数', - `created_at` bigint NOT NULL, - `updated_at`bigint NOT NULL, - `deleted_at` bigint default NULL, - PRIMARY KEY (`id`), - INDEX userid_idx (`user_id`, `item_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +DROP TABLE IF EXISTS `user_login_bonuses`\G # Query 89: ID 0x6EF64B8B0D596017 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 7.2ms 7.2ms 7.2ms 7.2ms 7.2ms 7.2ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms +# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: @@ -1575,124 +1583,110 @@ CREATE TABLE `user_login_bonuses` ( UNIQUE uniq_user_id (`user_id`, `login_bonus_id`, `deleted_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 90: ID 0xF2A27D3F93FA52C7 +# Query 90: ID 0xCCE859C9AD6E6ADF # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 7.2ms 7.2ms 7.2ms 7.2ms 7.2ms 7.2ms -# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us +# Exec time 0 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms +# Lock time 0 41.0us 41.0us 41.0us 41.0us 41.0us 41.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `gacha_item_masters` ( +CREATE TABLE `user_decks` ( `id` bigint NOT NULL AUTO_INCREMENT, - `gacha_id` bigint NOT NULL comment 'ガチャ台のID', - `item_type` int(1) NOT NULL comment 'アイテム種別', - `item_id` int NOT NULL comment 'アイテムID', - `amount` int NOT NULL comment 'アイテム数', - `weight` int NOT NULL comment '確率。万分率で表示', + `user_id` bigint NOT NULL comment 'ユーザID', + `user_card_id_1` bigint NOT NULL comment '装備枠1', + `user_card_id_2` bigint NOT NULL comment '装備枠2', + `user_card_id_3` bigint NOT NULL comment '装備枠3', `created_at` bigint NOT NULL, + `updated_at`bigint NOT NULL, + `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - UNIQUE uniq_item_id (`gacha_id`, `item_type`, `item_id`) + UNIQUE uniq_user_id ( `user_id`, `deleted_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 91: ID 0xD70F2D1B5A5C63E7 +# Query 91: ID 0x766103D07D2ECF5E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 7.1ms 7.1ms 7.1ms 7.1ms 7.1ms 7.1ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Exec time 0 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms 7.7ms +# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_bans` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment 'ユーザID', - `created_at` bigint NOT NULL, - `updated_at`bigint NOT NULL, - `deleted_at` bigint default NULL, - PRIMARY KEY (`id`), - UNIQUE uniq_user_id (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +DROP TABLE IF EXISTS `item_masters`\G -# Query 92: ID 0x0C925CB4F3B1E40B +# Query 92: ID 0xD70F2D1B5A5C63E7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 6.9ms 6.9ms 6.9ms 6.9ms 6.9ms 6.9ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Exec time 0 7.5ms 7.5ms 7.5ms 7.5ms 7.5ms 7.5ms +# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `user_cards` ( +CREATE TABLE `user_bans` ( `id` bigint NOT NULL AUTO_INCREMENT, - `user_id` bigint NOT NULL comment 'ユーザID', - `card_id` int NOT NULL comment '装備のID', - `amount_per_sec` int NOT NULL comment '生産性(ISU/sec)', - `level` int NOT NULL comment 'カードレベル', - `total_exp` bigint NOT NULL comment '累計経験値', + `user_id` bigint NOT NULL comment 'ユーザID', `created_at` bigint NOT NULL, `updated_at`bigint NOT NULL, `deleted_at` bigint default NULL, PRIMARY KEY (`id`), - UNIQUE uniq_card_id (`user_id`, `card_id`, `deleted_at`) + UNIQUE uniq_user_id (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 93: ID 0x0497272F00A23F5D +# Query 93: ID 0x1E3A07D890F5E3D9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 6.6ms 6.6ms 6.6ms 6.6ms 6.6ms 6.6ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 7.3ms 7.3ms 7.3ms 7.3ms 7.3ms 7.3ms +# Lock time 0 6.0us 6.0us 6.0us 6.0us 6.0us 6.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `item_masters` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `item_type` int(2) NOT NULL comment '1:ISUCOIN、2:ハンマー(カード)、3:強化素材、4:時短アイテム(タイマー)', - `name` varchar(128) NOT NULL comment 'アイテム名', - `description` varchar(255) comment 'アイテム説明文', - `amount_per_sec` int comment 'TYPE2:level1の時の生産性(ISU/sec)', - `max_level` int comment 'TYPE2:生産性(ISU/sec)', - `max_amount_per_sec` int comment 'TYPE2:level max時の生産性(ISU/sec)', - `base_exp_per_level` int comment 'TYP2:level1 -> 2に必要な経験値、以降、前のlevelの1.2倍(切り上げ)必要', - `gained_exp` int comment 'TYPE3:獲得経験値', - `shortening_min` bigint comment 'TYPE4:短縮時間(分)', - - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +DROP TABLE IF EXISTS `user_devices`\G -# Query 94: ID 0x7DD5F6760F2D2EBB +# Query 94: ID 0x1A1B4F622181A0E8 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 6.0ms 6.0ms 6.0ms 6.0ms 6.0ms 6.0ms -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 1 1 1 1.00 1 1 +# Exec time 0 7.0ms 7.0ms 7.0ms 7.0ms 7.0ms 7.0ms +# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -show variables like 'secure_file_priv'\G +CREATE TABLE `user_present_all_received_history` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `user_id` bigint NOT NULL comment '受けとったユーザID', + `present_all_id` bigint NOT NULL comment '全員プレゼントマスタのID', + `received_at` bigint NOT NULL comment '受け取った日時', + `created_at` bigint NOT NULL, + `updated_at`bigint NOT NULL, + `deleted_at` bigint default NULL, + INDEX (user_id, present_all_id), + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 95: ID 0xF722041A0576C426 +# Query 95: ID 0x506251FB64ECAF39 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.8ms 5.8ms 5.8ms 5.8ms 5.8ms 5.8ms +# Exec time 0 6.9ms 6.9ms 6.9ms 6.9ms 6.9ms 6.9ms # Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -1700,28 +1694,41 @@ show variables like 'secure_file_priv'\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `gacha_item_masters`\G +CREATE TABLE `login_bonus_masters` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `start_at` bigint NOT NULL comment '開始日時', + `end_at` bigint comment '終了日時。Nullの場合、終了しない。', + `column_count` int(2) NOT NULL comment '何日分用意するかの日数。例:7日のスタートダッシュ、20日の通常ログイン', + `looped` boolean NOT NULL comment 'ループするかどうか', + `created_at` bigint NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 96: ID 0xFADCC181D6675A71 +# Query 96: ID 0x54051646874A08A3 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.8ms 5.8ms 5.8ms 5.8ms 5.8ms 5.8ms -# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us +# Exec time 0 6.8ms 6.8ms 6.8ms 6.8ms 6.8ms 6.8ms +# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `gacha_masters`\G +CREATE TABLE `version_masters` ( + `id` bigint NOT NULL AUTO_INCREMENT, + `status` int(2) NOT NULL comment 'ステータス 1: available、2:not_available', + `master_version` varchar(128) NOT NULL comment 'マスタバージョン', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G # Query 97: ID 0x8EABCDAC39D801DC # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.7ms 5.7ms 5.7ms 5.7ms 5.7ms 5.7ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Exec time 0 6.7ms 6.7ms 6.7ms 6.7ms 6.7ms 6.7ms +# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: @@ -1743,8 +1750,8 @@ CREATE TABLE `login_bonus_reward_masters` ( # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 4 -# Exec time 0 5.7ms 119.0us 4.9ms 1.4ms 4.9ms 479.0us -# Lock time 0 6.0us 0 3.0us 1.5us 3.0us 2.0us +# Exec time 0 6.6ms 111.0us 5.2ms 1.7ms 5.2ms 1.2ms +# Lock time 0 8.0us 0 4.0us 2.0us 4.0us 3.0us # Rows sent 0 3 0 1 0 1 1 # Rows examined 0 3 0 1 0 1 1 # String: @@ -1753,36 +1760,40 @@ CREATE TABLE `login_bonus_reward_masters` ( # EXPLAIN /*!50100 PARTITIONS*/ SELECT * FROM admin_users WHERE id=123456\G -# Query 99: ID 0x05631FDCC2F141A1 +# Query 99: ID 0x3E22CE721AAF52A6 +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 6 +# Exec time 0 6.5ms 148.0us 4.4ms 1.1ms 4.4ms 287.0us +# Lock time 0 9.0us 1.0us 2.0us 1.5us 2.0us 2.0us +# Rows sent 0 5 0 1 0 1 1 +# Rows examined 0 5 0 1 0 1 1 +# String: +# Databases +# +# EXPLAIN /*!50100 PARTITIONS*/ +SELECT * FROM admin_sessions WHERE session_id='655fcec3-1d5c-4c03-b686-c0951a6e292c' AND deleted_at IS NULL\G + +# Query 100: ID 0x7DD5F6760F2D2EBB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 6.1ms 6.1ms 6.1ms 6.1ms 6.1ms 6.1ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `present_all_masters` ( - `id` bigint NOT NULL AUTO_INCREMENT, - `registered_start_at` bigint NOT NULL comment '配布対象のユーザの登録日時の起点日。この日付以降のユーザが対象', - `registered_end_at` bigint NOT NULL comment '配布対象のユーザの登録日時の終点日。この日付以前のユーザが対象', - `item_type` int(1) NOT NULL comment 'アイテム種別', - `item_id` int NOT NULL comment 'アイテムID', - `amount` int NOT NULL comment 'アイテム数', - `present_message` varchar(255) comment 'プレゼント(お詫び)メッセージ', - `created_at` bigint NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G +show variables like 'secure_file_priv'\G -# Query 100: ID 0xA9A1BD1B654D33D9 +# Query 101: ID 0xA9A1BD1B654D33D9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Exec time 0 6.0ms 6.0ms 6.0ms 6.0ms 6.0ms 6.0ms +# Lock time 0 12.0us 12.0us 12.0us 12.0us 12.0us 12.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: @@ -1799,26 +1810,26 @@ CREATE TABLE `admin_users` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 101: ID 0xD2705E8CB293B336 +# Query 102: ID 0xD20899B0F0556337 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.5ms 5.5ms 5.5ms 5.5ms 5.5ms 5.5ms -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us -# Rows sent 0 151 151 151 151.00 151 151 -# Rows examined 0 151 151 151 151.00 151 151 +# Exec time 0 5.9ms 5.9ms 5.9ms 5.9ms 5.9ms 5.9ms +# Lock time 0 5.0us 5.0us 5.0us 5.0us 5.0us 5.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_presents WHERE user_id=4929824682\G +DROP TABLE IF EXISTS `user_decks`\G -# Query 102: ID 0xE0D26BE905B5D79F +# Query 103: ID 0xE0D26BE905B5D79F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.5ms 5.5ms 5.5ms 5.5ms 5.5ms 5.5ms -# Lock time 0 11.0us 11.0us 11.0us 11.0us 11.0us 11.0us +# Exec time 0 5.9ms 5.9ms 5.9ms 5.9ms 5.9ms 5.9ms +# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: @@ -1835,45 +1846,64 @@ CREATE TABLE `gacha_masters` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 103: ID 0x54051646874A08A3 +# Query 104: ID 0xFADCC181D6675A71 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.4ms 5.4ms 5.4ms 5.4ms 5.4ms 5.4ms -# Lock time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us +# Exec time 0 5.7ms 5.7ms 5.7ms 5.7ms 5.7ms 5.7ms +# Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -CREATE TABLE `version_masters` ( +DROP TABLE IF EXISTS `gacha_masters`\G + +# Query 105: ID 0x05631FDCC2F141A1 +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 1 +# Exec time 0 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms 5.6ms +# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 +# String: +# Databases +# +# EXPLAIN /*!50100 PARTITIONS*/ +CREATE TABLE `present_all_masters` ( `id` bigint NOT NULL AUTO_INCREMENT, - `status` int(2) NOT NULL comment 'ステータス 1: available、2:not_available', - `master_version` varchar(128) NOT NULL comment 'マスタバージョン', + `registered_start_at` bigint NOT NULL comment '配布対象のユーザの登録日時の起点日。この日付以降のユーザが対象', + `registered_end_at` bigint NOT NULL comment '配布対象のユーザの登録日時の終点日。この日付以前のユーザが対象', + `item_type` int(1) NOT NULL comment 'アイテム種別', + `item_id` int NOT NULL comment 'アイテムID', + `amount` int NOT NULL comment 'アイテム数', + `present_message` varchar(255) comment 'プレゼント(お詫び)メッセージ', + `created_at` bigint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\G -# Query 104: ID 0x40A5548652B4DFDB +# Query 106: ID 0xF722041A0576C426 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 5.3ms 5.3ms 5.3ms 5.3ms 5.3ms 5.3ms -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 111 111 111 111.00 111 111 -# Rows examined 0 335 335 335 335.00 335 335 +# Exec time 0 4.9ms 4.9ms 4.9ms 4.9ms 4.9ms 4.9ms +# Lock time 0 8.0us 8.0us 8.0us 8.0us 8.0us 8.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW TABLE STATUS FROM `performance_schema`\G +DROP TABLE IF EXISTS `gacha_item_masters`\G -# Query 105: ID 0x5CBA2034458B5BC9 +# Query 107: ID 0x5CBA2034458B5BC9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 2 -# Exec time 0 4.4ms 398.0us 4.0ms 2.2ms 4.0ms 4.0ms -# Lock time 0 3.0us 1.0us 2.0us 1.5us 2.0us 2.0us +# Exec time 0 4.7ms 449.0us 4.3ms 2.4ms 4.3ms 4.3ms +# Lock time 0 5.0us 2.0us 3.0us 2.5us 3.0us 3.0us # Rows sent 0 10 5 5 5.00 5 5 # Rows examined 0 42 21 21 21.00 21 21 # String: @@ -1882,12 +1912,26 @@ SHOW TABLE STATUS FROM `performance_schema`\G # EXPLAIN /*!50100 PARTITIONS*/ SHOW DATABASES\G -# Query 106: ID 0xD57560CE9D0852EE +# Query 108: ID 0x29F808E286E92849 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 2.7ms 2.7ms 2.7ms 2.7ms 2.7ms 2.7ms -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Exec time 0 4.0ms 4.0ms 4.0ms 4.0ms 4.0ms 4.0ms +# Lock time 0 6.0us 6.0us 6.0us 6.0us 6.0us 6.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 +# String: +# Databases +# +# EXPLAIN /*!50100 PARTITIONS*/ +DROP TABLE IF EXISTS `user_bans`\G + +# Query 109: ID 0xD57560CE9D0852EE +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 1 +# Exec time 0 3.3ms 3.3ms 3.3ms 3.3ms 3.3ms 3.3ms +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 37 37 37 37.00 37 37 # Rows examined 0 217 217 217 217.00 217 217 # String: @@ -1896,39 +1940,39 @@ SHOW DATABASES\G # EXPLAIN /*!50100 PARTITIONS*/ SHOW TABLE STATUS FROM `mysql`\G -# Query 107: ID 0xCB0FD3921A5E73CD +# Query 110: ID 0x791C5370A1021F19 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 2.7ms 2.7ms 2.7ms 2.7ms 2.7ms 2.7ms -# Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us +# Exec time 0 2.9ms 2.9ms 2.9ms 2.9ms 2.9ms 2.9ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `present_all_masters`\G +SHOW SLAVE STATUS\G -# Query 108: ID 0x000FB76CA510CECD +# Query 111: ID 0x99D2000A5879F724 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 2.3ms 1.1ms 1.2ms 1.1ms 1.2ms 1.2ms -# Lock time 0 6.0us 3.0us 3.0us 3.0us 3.0us 3.0us -# Rows sent 0 2 1 1 1.00 1 1 -# Rows examined 0 766 383 383 383.00 383 383 +# Count 0 1 +# Exec time 0 2.8ms 2.8ms 2.8ms 2.8ms 2.8ms 2.8ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 1.01k 1.01k 1.01k 1.01k 1.01k 1.01k +# Rows examined 0 1.01k 1.01k 1.01k 1.01k 1.01k 1.01k # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT IFNULL(SUM(INDEX_LENGTH), 0) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ('information_schema') AND ENGINE = 'MyISAM'\G +SELECT * FROM gacha_item_masters\G -# Query 109: ID 0xE3A3649C5FAC418D +# Query 112: ID 0xE3A3649C5FAC418D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 34 -# Exec time 0 2.2ms 36.0us 231.0us 65.5us 152.0us 44.0us +# Exec time 0 2.4ms 44.0us 164.0us 70.1us 152.0us 56.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 34 1 1 1.00 1 1 # Rows examined 0 34 1 1 1.00 1 1 @@ -1938,11 +1982,11 @@ SELECT IFNULL(SUM(INDEX_LENGTH), 0) FROM information_schema.TABLES WHERE TABLE_S # EXPLAIN /*!50100 PARTITIONS*/ select @@version_comment limit 1\G -# Query 110: ID 0x8981418B1DB454E0 +# Query 113: ID 0x8981418B1DB454E0 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 2.2ms 2.2ms 2.2ms 2.2ms 2.2ms 2.2ms +# Exec time 0 2.4ms 2.4ms 2.4ms 2.4ms 2.4ms 2.4ms # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 1 1 1 1.00 1 1 # Rows examined 0 996 996 996 996.00 996 996 @@ -1952,82 +1996,82 @@ select @@version_comment limit 1\G # EXPLAIN /*!50100 PARTITIONS*/ SELECT COUNT(*) FROM information_schema.tables\G -# Query 111: ID 0x82548DE9C4F3E046 +# Query 114: ID 0xD2705E8CB293B336 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 2.1ms 2.1ms 2.1ms 2.1ms 2.1ms 2.1ms -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us -# Rows sent 0 101 101 101 101.00 101 101 -# Rows examined 0 206 206 206 206.00 206 206 +# Exec time 0 2.3ms 2.3ms 2.3ms 2.3ms 2.3ms 2.3ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 158 158 158 158.00 158 158 +# Rows examined 0 158 158 158 158.00 158 158 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW TABLE STATUS FROM `sys`\G +SELECT * FROM user_presents WHERE user_id=4315879259\G -# Query 112: ID 0x791C5370A1021F19 +# Query 115: ID 0x82548DE9C4F3E046 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 2.1ms 2.1ms 2.1ms 2.1ms 2.1ms 2.1ms -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 2.3ms 2.3ms 2.3ms 2.3ms 2.3ms 2.3ms +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Rows sent 0 101 101 101 101.00 101 101 +# Rows examined 0 206 206 206 206.00 206 206 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW SLAVE STATUS\G +SHOW TABLE STATUS FROM `sys`\G -# Query 113: ID 0xCB0F56BDC7ECFD1E +# Query 116: ID 0x000FB76CA510CECD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us -# Rows sent 0 21 21 21 21.00 21 21 -# Rows examined 0 86 86 86 86.00 86 86 +# Count 0 2 +# Exec time 0 2.3ms 968.0us 1.3ms 1.1ms 1.3ms 1.3ms +# Lock time 0 4.0us 1.0us 3.0us 2.0us 3.0us 3.0us +# Rows sent 0 2 1 1 1.00 1 1 +# Rows examined 0 766 383 383 383.00 383 383 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW TABLE STATUS FROM `isucon`\G +SELECT IFNULL(SUM(INDEX_LENGTH), 0) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ('information_schema') AND ENGINE = 'MyISAM'\G -# Query 114: ID 0x31DA25F95494CA95 +# Query 117: ID 0x911658842DA64DC4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 493 493 493 493.00 493 493 -# Rows examined 0 493 493 493 493.00 493 493 +# Exec time 0 2.0ms 2.0ms 2.0ms 2.0ms 2.0ms 2.0ms +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Rows sent 0 653 653 653 653.00 653 653 +# Rows examined 0 653 653 653 653.00 653 653 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW STATUS\G +SHOW VARIABLES\G -# Query 115: ID 0x911658842DA64DC4 +# Query 118: ID 0x19C8068B5C1997CD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us -# Rows sent 0 653 653 653 653.00 653 653 -# Rows examined 0 653 653 653 653.00 653 653 +# Count 0 6 +# Exec time 0 2.0ms 21.0us 1.1ms 325.8us 1.1ms 87.0us +# Lock time 0 0 0 0 0 0 0 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW VARIABLES\G +ROLLBACK\G -# Query 116: ID 0xDC5AC4F51E1A7597 +# Query 119: ID 0xDC5AC4F51E1A7597 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Exec time 0 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us # Rows sent 0 630 630 630 630.00 630 630 # Rows examined 0 630 630 630 630.00 630 630 # String: @@ -2036,67 +2080,81 @@ SHOW VARIABLES\G # EXPLAIN /*!50100 PARTITIONS*/ SHOW GLOBAL VARIABLES\G -# Query 117: ID 0x99D2000A5879F724 +# Query 120: ID 0xCB0FD3921A5E73CD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 1.01k 1.01k 1.01k 1.01k 1.01k 1.01k -# Rows examined 0 1.01k 1.01k 1.01k 1.01k 1.01k 1.01k +# Exec time 0 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms 1.8ms +# Lock time 0 5.0us 5.0us 5.0us 5.0us 5.0us 5.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM gacha_item_masters\G +DROP TABLE IF EXISTS `present_all_masters`\G -# Query 118: ID 0xF4679FBCB9B776C4 +# Query 121: ID 0x21526B75CC7EEF39 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms -# Lock time 0 5.0us 5.0us 5.0us 5.0us 5.0us 5.0us +# Count 0 2 +# Exec time 0 1.7ms 544.0us 1.2ms 853.0us 1.2ms 1.2ms +# Lock time 0 3.0us 1.0us 2.0us 1.5us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 2 0 2 1.00 2 2 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `login_bonus_masters`\G +UPDATE admin_sessions SET deleted_at=1661580852 WHERE user_id=123456 AND deleted_at IS NULL\G -# Query 119: ID 0x439DEDC555DEACFF +# Query 122: ID 0x31DA25F95494CA95 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms -# Lock time 0 6.0us 6.0us 6.0us 6.0us 6.0us 6.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 493 493 493 493.00 493 493 +# Rows examined 0 493 493 493 493.00 493 493 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `login_bonus_reward_masters`\G +SHOW STATUS\G -# Query 120: ID 0xFCE24E325FEEEF91 +# Query 123: ID 0x6C099B0B73EA7633 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms -# Lock time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Exec time 0 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms 1.7ms +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: +# Databases isucon +# +# EXPLAIN /*!50100 PARTITIONS*/ +USE `isucon`\G + +# Query 124: ID 0xCB0F56BDC7ECFD1E +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 1 +# Exec time 0 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms +# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us +# Rows sent 0 21 21 21 21.00 21 21 +# Rows examined 0 86 86 86 86.00 86 86 +# String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `version_masters`\G +SHOW TABLE STATUS FROM `isucon`\G -# Query 121: ID 0xF534C01A654A40CD +# Query 125: ID 0xF534C01A654A40CD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms 1.4ms +# Exec time 0 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms # Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 597 597 597 597.00 597 597 @@ -2106,11 +2164,11 @@ DROP TABLE IF EXISTS `version_masters`\G # EXPLAIN /*!50100 PARTITIONS*/ SELECT CONCAT(CONCAT(TABLE_SCHEMA, '.'), TABLE_NAME),cast(DATA_FREE as signed) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ('information_schema', 'performance_schema', 'mysql') AND DATA_LENGTH/1024/1024>100 AND cast(DATA_FREE as signed)*100/(DATA_LENGTH+INDEX_LENGTH+cast(DATA_FREE as signed)) > 10 AND NOT ENGINE='MEMORY'\G -# Query 122: ID 0x765037C2DBD450AB +# Query 126: ID 0x439DEDC555DEACFF # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 1.1ms 1.1ms 1.1ms 1.1ms 1.1ms 1.1ms +# Exec time 0 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms 1.6ms # Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2118,27 +2176,27 @@ SELECT CONCAT(CONCAT(TABLE_SCHEMA, '.'), TABLE_NAME),cast(DATA_FREE as signed) F # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -DROP TABLE IF EXISTS `admin_users`\G +DROP TABLE IF EXISTS `login_bonus_reward_masters`\G -# Query 123: ID 0x3E22CE721AAF52A6 +# Query 127: ID 0xFB38455BF7035609 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 5 -# Exec time 0 980.0us 94.0us 301.0us 196.0us 301.0us 186.0us -# Lock time 0 4.0us 0 1.0us 800.0ns 1.0us 1.0us -# Rows sent 0 5 1 1 1.00 1 1 -# Rows examined 0 5 1 1 1.00 1 1 +# Count 0 2 +# Exec time 0 1.5ms 44.0us 1.4ms 728.5us 1.4ms 1.4ms +# Lock time 0 0 0 0 0 0 0 +# Rows sent 0 2 1 1 1.00 1 1 +# Rows examined 0 2 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM admin_sessions WHERE session_id='dda23bf4-3720-485e-be6a-c54c9fcffe01' AND deleted_at IS NULL\G +SELECT DATABASE()\G -# Query 124: ID 0x23E3E3AAC552EBC7 +# Query 128: ID 0x90D18133B56F55D4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 19 -# Exec time 0 966.0us 32.0us 84.0us 50.8us 84.0us 47.0us +# Count 0 6 +# Exec time 0 1.3ms 64.0us 988.0us 222.3us 988.0us 69.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2146,83 +2204,69 @@ SELECT * FROM admin_sessions WHERE session_id='dda23bf4-3720-485e-be6a-c54c9fcff # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UNLOCK TABLES\G +SHOW ENGINE PERFORMANCE_SCHEMA STATUS\G -# Query 125: ID 0x3181F2187117AC04 +# Query 129: ID 0xFCE24E325FEEEF91 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 850.0us 850.0us 850.0us 850.0us 850.0us 850.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 42 42 42 42.00 42 42 -# Rows examined 0 42 42 42 42.00 42 42 -# String: -# Databases -# -# EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM login_bonus_reward_masters\G - -# Query 126: ID 0x21526B75CC7EEF39 -# Attribute pct total min max avg 95% median -# ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 846.0us 167.0us 679.0us 423.0us 679.0us 679.0us -# Lock time 0 3.0us 1.0us 2.0us 1.5us 2.0us 2.0us +# Exec time 0 1.3ms 1.3ms 1.3ms 1.3ms 1.3ms 1.3ms +# Lock time 0 7.0us 7.0us 7.0us 7.0us 7.0us 7.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 2 0 2 1.00 2 2 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE admin_sessions SET deleted_at=1661579885 WHERE user_id=123456 AND deleted_at IS NULL\G +DROP TABLE IF EXISTS `version_masters`\G -# Query 127: ID 0x28FC5B5D583E2DA6 +# Query 130: ID 0x765037C2DBD450AB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 700.0us 700.0us 700.0us 700.0us 700.0us 700.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 488 488 488 488.00 488 488 -# Rows examined 0 488 488 488 488.00 488 488 +# Exec time 0 1.3ms 1.3ms 1.3ms 1.3ms 1.3ms 1.3ms +# Lock time 0 6.0us 6.0us 6.0us 6.0us 6.0us 6.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW GLOBAL STATUS\G +DROP TABLE IF EXISTS `admin_users`\G -# Query 128: ID 0xE7510B6AA8901368 +# Query 131: ID 0x23E3E3AAC552EBC7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 594.0us 594.0us 594.0us 594.0us 594.0us 594.0us -# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 1 1 1 1.00 1 1 +# Count 0 19 +# Exec time 0 972.0us 34.0us 83.0us 51.2us 83.0us 46.0us +# Lock time 0 0 0 0 0 0 0 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_decks WHERE user_id=4929824682\G +UNLOCK TABLES\G -# Query 129: ID 0x21831F03D8A49DC5 +# Query 132: ID 0x3181F2187117AC04 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 503.0us 503.0us 503.0us 503.0us 503.0us 503.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 966.0us 966.0us 966.0us 966.0us 966.0us 966.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 42 42 42 42.00 42 42 +# Rows examined 0 42 42 42 42.00 42 42 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `item_masters` VALUES (1,1,'ISU-COIN','ISU-COIN',NULL,NULL,NULL,NULL,NULL,NULL),(2,2,'紙のハンマー','1秒間に1個椅子を作れるハンマー',1,50,50,10,NULL,NULL),(3,2,'ゴムのハンマー','1秒間に2個椅子を作れるハンマー',2,50,100,10,NULL,NULL),(4,2,'木のハンマー','1秒間に5個椅子を作れるハンマー',5,50,250,10,NULL,NULL),(5,2,'アルミのハンマー','1秒間に10個椅子を作れるハンマー',10,50,500,10,NULL,NULL),(6,2,'鉄のハンマー','1秒間に20個椅子を作れるハンマー',20,50,1000,10,NULL,NULL),(7,2,'青銅のハンマー','1秒間に50個椅子を作れるハンマー',50,50,2500,10,NULL,NULL),(8,2,'鋼鉄のハンマー','1秒間に100個椅子を作れるハンマー',100,80,8000,11,NULL,NULL),(9,2,'銅のハンマー','1秒間に200個椅子を作れるハンマー',200,80,16000,11,NULL,NULL),(10,2,'銀のハンマー','1秒間に300個椅子を作れるハンマー',300,80,24000,11,NULL,NULL),(11,2,'珊瑚のハンマー','1秒間に500個椅子を作れるハンマー',500,80,40000,11,NULL,NULL),(12,2,'ルビーのハンマー','1秒間に1,000個椅子を作れるハンマー',1000,100,100000,12,NULL,NULL),(13,2,'サファイアのハンマー','1秒間に5,000個椅子を作れるハンマー',5000,100,500000,12,NULL,NULL),(14,2,'金のハンマー','1秒間に10,000個椅子を作れるハンマー',10000,100,1000000,12,NULL,NULL),(15,2,'エメラルドのハンマー','1秒間に50,000個椅子を作れるハンマー',50000,100,5000000,12,NULL,NULL),(16,2,'ダイアモンドのハンマー','1秒間に100,000個椅子を作れるハンマー',100000,100,10000000,12,NULL,NULL),(17,3,'強化素材小','経験値10獲得',NULL,NULL,NULL,NULL,10,NULL),(18,3,'強化素材中','経験値100獲得',NULL,NULL,NULL,NULL,100,NULL),(19,3,'強化素材大','経験値1,000獲得',NULL,NULL,NULL,NULL,1000,NULL),(20,3,'強化素材特大','経験値10,000獲得',NULL,NULL,NULL,NULL,10000,NULL),(21,4,'1分短縮タイマー','1分短縮',NULL,NULL,NULL,NULL,NULL,1),(22,4,'3分短縮タイマー','3分短縮',NULL,NULL,NULL,NULL,NULL,3),(23,4,'5分短縮タイマー','5分短縮',NULL,NULL,NULL,NULL,NULL,5),(24,4,'10分短縮タイマー','10分短縮',NULL,NULL,NULL,NULL,NULL,10),(25,4,'30分短縮タイマー','30分短縮',NULL,NULL,NULL,NULL,NULL,30),(26,4,'60分短縮タイマー','60分短縮',NULL,NULL,NULL,NULL,NULL,60),(27,4,'120分短縮タイマー','120分短縮',NULL,NULL,NULL,NULL,NULL,120),(28,4,'300分短縮タイマー','300分短縮',NULL,NULL,NULL,NULL,NULL,300),(29,4,'600分短縮タイマー','600分短縮',NULL,NULL,NULL,NULL,NULL,600),(30,4,'1440分短縮タイマー','1,440分短縮',NULL,NULL,NULL,NULL,NULL,1440)\G +SELECT * FROM login_bonus_reward_masters\G -# Query 130: ID 0xD249D00DC91E5422 +# Query 133: ID 0x591DCE6A753564F4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 492.0us 492.0us 492.0us 492.0us 492.0us 492.0us +# Exec time 0 947.0us 947.0us 947.0us 947.0us 947.0us 947.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2230,55 +2274,55 @@ INSERT INTO `item_masters` VALUES (1,1,'ISU-COIN','ISU-COIN',NULL,NULL,NULL,NULL # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `login_bonus_reward_masters` VALUES (1,1,1,1,1,500,1651330800),(2,1,2,3,17,5,1651330800),(3,1,3,4,21,5,1651330800),(4,1,4,3,18,1,1651330800),(5,1,5,1,1,500,1651330800),(6,1,6,3,18,1,1651330800),(7,1,7,4,22,1,1651330800),(8,1,8,3,19,1,1651330800),(9,1,9,4,23,1,1651330800),(10,1,10,1,1,500,1651330800),(11,1,11,3,19,1,1651330800),(12,1,12,4,24,1,1651330800),(13,1,13,3,19,1,1651330800),(14,1,14,4,25,1,1651330800),(15,1,15,1,1,500,1651330800),(16,1,16,3,19,1,1651330800),(17,1,17,4,26,1,1651330800),(18,1,18,3,19,1,1651330800),(19,1,19,4,26,1,1651330800),(20,1,20,1,1,500,1651330800),(21,1,21,3,19,1,1651330800),(22,1,22,4,26,1,1651330800),(23,1,23,3,19,1,1651330800),(24,1,24,4,26,1,1651330800),(25,1,25,1,1,500,1651330800),(26,1,26,3,20,1,1651330800),(27,1,27,4,27,1,1651330800),(28,1,28,1,1,1000,1651330800),(29,2,1,1,1,3000,1651330800),(30,2,2,3,20,1,1651330800),(31,2,3,4,27,1,1651330800),(32,2,4,1,1,3000,1651330800),(33,2,5,3,20,1,1651330800),(34,2,6,4,27,1,1651330800),(35,2,7,1,1,3000,1651330800),(36,4,1,1,1,3000,1651330800),(37,4,2,3,20,1,1651330800),(38,4,3,4,27,1,1651330800),(39,4,4,1,1,3000,1651330800),(40,4,5,3,20,1,1651330800),(41,4,6,4,27,1,1651330800),(42,4,7,1,1,3000,1651330800)\G +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */\G -# Query 131: ID 0x2CFBEEFAB0034497 +# Query 134: ID 0x28FC5B5D583E2DA6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 463.0us 463.0us 463.0us 463.0us 463.0us 463.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 912.0us 912.0us 912.0us 912.0us 912.0us 912.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 488 488 488 488.00 488 488 +# Rows examined 0 488 488 488 488.00 488 488 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `present_all_masters` VALUES (1,1577804400,2147483647,1,1,3000,'リリース記念プレゼントです!',1588258800),(2,1577804400,1588258800,1,1,300,'メンテナンスのお詫びです',1588258800),(3,1577804400,2147483647,1,1,1000,'1ヶ月突破プレゼントです!',1590937200),(4,1577804400,2147483647,1,1,1000,'2ヶ月突破プレゼントです!',1593529200),(5,1577804400,2147483647,1,1,2000,'3ヶ月突破プレゼントです!',1596207600),(6,1577804400,2147483647,1,1,2000,'4ヶ月突破プレゼントです!',1598886000),(7,1577804400,2147483647,1,1,2000,'5ヶ月突破プレゼントです!',1601478000),(8,1577804400,2147483647,1,1,3000,'ハーフアニバーサリープレゼントです!',1604156400),(9,1577804400,2147483647,1,1,2000,'7ヶ月突破プレゼントです!',1606748400),(10,1577804400,2147483647,1,1,2000,'8ヶ月突破プレゼントです!',1609426800),(11,1577804400,2147483647,1,1,2000,'9ヶ月突破プレゼントです!',1612105200),(12,1577804400,2147483647,1,1,2000,'10ヶ月突破プレゼントです!',1614524400),(13,1577804400,2147483647,1,1,2000,'11ヶ月突破プレゼントです!',1617202800),(14,1577804400,2147483647,1,1,3000,'1周年突破プレゼントです!',1619794800),(15,1577804400,2147483647,1,1,6000,'周年記念プレゼントです!',1619794800),(16,1577804400,2147483647,1,1,2000,'13ヶ月突破プレゼントです!',1622473200),(17,1577804400,2147483647,1,1,2000,'14ヶ月突破プレゼントです!',1625065200),(18,1577804400,2147483647,1,1,2000,'15ヶ月突破プレゼントです1',1627743600),(19,1577804400,2147483647,1,1,2000,'16ヶ月突破プレゼントです!',1630422000),(20,1577804400,2147483647,1,1,2000,'17ヶ月突破プレゼントです!',1633014000),(21,1577804400,2147483647,1,1,2000,'18ヶ月突破プレゼントです!',1635692400),(22,1577804400,2147483647,1,1,2000,'19ヶ月突破プレゼントです!',1638284400),(23,1577804400,2147483647,1,1,2000,'20ヶ月突破プレゼントです!',1640962800),(24,1577804400,2147483647,1,1,2000,'21ヶ月プレゼントです!',1643641200),(25,1577804400,2147483647,1,1,2000,'22ヶ月プレゼントです!',1646060400),(26,1577804400,2147483647,1,1,2000,'23ヶ月プレゼントです!',1648738800),(27,1577804400,2147483647,1,1,6000,'2周年記念プレゼントです!',1651330800),(28,1577804400,2147483647,1,1,6000,'2.5周年プレゼントです!',1667228400)\G +SHOW GLOBAL STATUS\G -# Query 132: ID 0xDC9F1034A1E27BC4 +# Query 135: ID 0xE7510B6AA8901368 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 448.0us 90.0us 358.0us 224.0us 358.0us 358.0us -# Lock time 0 3.0us 1.0us 2.0us 1.5us 2.0us 2.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 2 1 1 1.00 1 1 +# Count 0 1 +# Exec time 0 688.0us 688.0us 688.0us 688.0us 688.0us 688.0us +# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE admin_users SET last_activated_at=1661579885, updated_at=1661579885 WHERE id=123456\G +SELECT * FROM user_decks WHERE user_id=4315879259\G -# Query 133: ID 0x90D18133B56F55D4 +# Query 136: ID 0xED31E05ED5D27AD7 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 6 -# Exec time 0 398.0us 58.0us 89.0us 66.3us 89.0us 62.0us -# Lock time 0 0 0 0 0 0 0 +# Count 0 1 +# Exec time 0 684.0us 684.0us 684.0us 684.0us 684.0us 684.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW ENGINE PERFORMANCE_SCHEMA STATUS\G +INSERT INTO version_masters(id, status, master_version) VALUES ('1', '2', '1'),('2', '1', '2') ON DUPLICATE KEY UPDATE status=VALUES(status), master_version=VALUES(master_version)\G -# Query 134: ID 0xF393E1CDB5570428 +# Query 137: ID 0x45788F3F8DFCDAFC # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 341.0us 341.0us 341.0us 341.0us 341.0us 341.0us +# Exec time 0 597.0us 597.0us 597.0us 597.0us 597.0us 597.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2286,139 +2330,125 @@ SHOW ENGINE PERFORMANCE_SCHEMA STATUS\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `gacha_masters` VALUES (1,'1月ピックアップガチャ',1577804400,1580482800,3,1575126000),(2,'スタートアップガチャ',1577804400,1593529200,10,1575126000),(3,'2月ピックアップガチャ',1580482800,1582988400,3,1577804400),(4,'3月ピックアップガチャ',1582988400,1585666800,3,1580482800),(5,'4月ピックアップガチャ',1585666800,1588258800,3,1582988400),(6,'5月ピックアップガチャ',1588258800,1590937200,3,1585666800),(7,'1周年ガチャ',1596207600,1598886000,1,1588258800),(8,'6月ピックアップガチャ',1590937200,1593529200,3,1588258800),(9,'スタートアップガチャ',1593529200,1609426800,10,1590937200),(10,'7月ピックアップガチャ',1593529200,1596207600,3,1590937200),(11,'8月ピックアップガチャ',1596207600,1598886000,3,1593529200),(12,'9月ピックアップガチャ',1598886000,1601478000,3,1596207600),(13,'10月ピックアップガチャ',1601478000,1604156400,3,1598886000),(14,'11月ピックアップガチャ',1604156400,1606748400,3,1601478000),(15,'12月ピックアップガチャ',1606748400,1609426800,3,1604156400),(16,'スタートアップガチャ',1609426800,1625065200,10,1606748400),(17,'1月ピックアップガチャ',1609426800,1612105200,3,1606748400),(18,'2月ピックアップガチャ',1612105200,1614524400,3,1609426800),(19,'3月ピックアップガチャ',1614524400,1617202800,3,1612105200),(20,'4月ピックアップガチャ',1617202800,1619794800,3,1614524400),(21,'5月ピックアップガチャ',1619794800,1622473200,3,1617202800),(22,'2周年ガチャ',1627743600,1630422000,1,1619794800),(23,'6月ピックアップガチャ',1622473200,1625065200,3,1619794800),(24,'スタートアップガチャ',1625065200,1640962800,10,1622473200),(25,'7月ピックアップガチャ',1625065200,1627743600,3,1622473200),(26,'8月ピックアップガチャ',1627743600,1630422000,3,1625065200),(27,'9月ピックアップガチャ',1630422000,1633014000,3,1627743600),(28,'10月ピックアップガチャ',1633014000,1635692400,3,1630422000),(29,'11月ピックアップガチャ',1635692400,1638284400,3,1633014000),(30,'12月ピックアップガチャ',1638284400,1640962800,3,1635692400),(31,'スタートアップガチャ',1640962800,2147483647,10,1638284400),(32,'1月ピックアップガチャ',1640962800,1643641200,3,1638284400),(33,'2月ピックアップガチャ',1643641200,1646060400,3,1640962800),(34,'3月ピックアップガチャ',1646060400,1648738800,3,1643641200),(35,'4月ピックアップガチャ',1648738800,1651330800,3,1646060400),(36,'5月ピックアップガチャ',1651330800,1654009200,3,1648738800),(37,'3周年ガチャ',1656601200,1661958000,1,1651330800),(38,'6月ピックアップガチャ',1654009200,1656601200,3,1651330800),(39,'7月ピックアップガチャ',1656601200,1659279600,3,1654009200),(40,'8月ピックアップガチャ',1659279600,2147483647,4,1656601200)\G +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */\G -# Query 135: ID 0xF63BEE146310AA5E +# Query 138: ID 0xA5C7507EF8D09065 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 334.0us 334.0us 334.0us 334.0us 334.0us 334.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Count 0 2 +# Exec time 0 445.0us 116.0us 329.0us 222.5us 329.0us 329.0us +# Lock time 0 2.0us 1.0us 1.0us 1.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 1 1 1 1.00 1 1 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -UPDATE admin_sessions SET deleted_at=1661579906 WHERE session_id='a185e520-2caa-4c19-beb7-400c7367c66b' AND deleted_at IS NULL\G +INSERT INTO admin_sessions(user_id, session_id, created_at, updated_at, expired_at) VALUES (123456, '655fcec3-1d5c-4c03-b686-c0951a6e292c', 1661580852, 1661580852, 1661667252)\G -# Query 136: ID 0xCA743B363A3AD922 +# Query 139: ID 0x0633D3706780274F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 311.0us 311.0us 311.0us 311.0us 311.0us 311.0us +# Exec time 0 374.0us 374.0us 374.0us 374.0us 374.0us 374.0us # Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 12 12 12 12.00 12 12 -# Rows examined 0 12 12 12 12.00 12 12 -# String: -# Databases -# -# EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_items WHERE user_id=4929824682\G - -# Query 137: ID 0x13A9838C463C3D30 -# Attribute pct total min max avg 95% median -# ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 294.0us 294.0us 294.0us 294.0us 294.0us 294.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `admin_sessions` WRITE\G +INSERT INTO present_all_masters(id, registered_start_at, registered_end_at, item_type, item_id, amount, present_message, created_at) VALUES ('29', '1577804400', '2147483647', '1', '1', '6000', 'CM放映記念プレゼントです!', '1659279600') ON DUPLICATE KEY UPDATE registered_start_at=VALUES(registered_start_at), registered_end_at=VALUES(registered_end_at), item_type=VALUES(item_type), item_id=VALUES(item_id), amount=VALUES(amount), present_message=VALUES(present_message), created_at=VALUES(created_at)\G -# Query 138: ID 0xA5DAC22A01A07C48 +# Query 140: ID 0x21831F03D8A49DC5 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 254.0us 254.0us 254.0us 254.0us 254.0us 254.0us -# Lock time 0 4.0us 4.0us 4.0us 4.0us 4.0us 4.0us +# Exec time 0 354.0us 354.0us 354.0us 354.0us 354.0us 354.0us +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_devices` WRITE\G +INSERT INTO `item_masters` VALUES (1,1,'ISU-COIN','ISU-COIN',NULL,NULL,NULL,NULL,NULL,NULL),(2,2,'紙のハンマー','1秒間に1個椅子を作れるハンマー',1,50,50,10,NULL,NULL),(3,2,'ゴムのハンマー','1秒間に2個椅子を作れるハンマー',2,50,100,10,NULL,NULL),(4,2,'木のハンマー','1秒間に5個椅子を作れるハンマー',5,50,250,10,NULL,NULL),(5,2,'アルミのハンマー','1秒間に10個椅子を作れるハンマー',10,50,500,10,NULL,NULL),(6,2,'鉄のハンマー','1秒間に20個椅子を作れるハンマー',20,50,1000,10,NULL,NULL),(7,2,'青銅のハンマー','1秒間に50個椅子を作れるハンマー',50,50,2500,10,NULL,NULL),(8,2,'鋼鉄のハンマー','1秒間に100個椅子を作れるハンマー',100,80,8000,11,NULL,NULL),(9,2,'銅のハンマー','1秒間に200個椅子を作れるハンマー',200,80,16000,11,NULL,NULL),(10,2,'銀のハンマー','1秒間に300個椅子を作れるハンマー',300,80,24000,11,NULL,NULL),(11,2,'珊瑚のハンマー','1秒間に500個椅子を作れるハンマー',500,80,40000,11,NULL,NULL),(12,2,'ルビーのハンマー','1秒間に1,000個椅子を作れるハンマー',1000,100,100000,12,NULL,NULL),(13,2,'サファイアのハンマー','1秒間に5,000個椅子を作れるハンマー',5000,100,500000,12,NULL,NULL),(14,2,'金のハンマー','1秒間に10,000個椅子を作れるハンマー',10000,100,1000000,12,NULL,NULL),(15,2,'エメラルドのハンマー','1秒間に50,000個椅子を作れるハンマー',50000,100,5000000,12,NULL,NULL),(16,2,'ダイアモンドのハンマー','1秒間に100,000個椅子を作れるハンマー',100000,100,10000000,12,NULL,NULL),(17,3,'強化素材小','経験値10獲得',NULL,NULL,NULL,NULL,10,NULL),(18,3,'強化素材中','経験値100獲得',NULL,NULL,NULL,NULL,100,NULL),(19,3,'強化素材大','経験値1,000獲得',NULL,NULL,NULL,NULL,1000,NULL),(20,3,'強化素材特大','経験値10,000獲得',NULL,NULL,NULL,NULL,10000,NULL),(21,4,'1分短縮タイマー','1分短縮',NULL,NULL,NULL,NULL,NULL,1),(22,4,'3分短縮タイマー','3分短縮',NULL,NULL,NULL,NULL,NULL,3),(23,4,'5分短縮タイマー','5分短縮',NULL,NULL,NULL,NULL,NULL,5),(24,4,'10分短縮タイマー','10分短縮',NULL,NULL,NULL,NULL,NULL,10),(25,4,'30分短縮タイマー','30分短縮',NULL,NULL,NULL,NULL,NULL,30),(26,4,'60分短縮タイマー','60分短縮',NULL,NULL,NULL,NULL,NULL,60),(27,4,'120分短縮タイマー','120分短縮',NULL,NULL,NULL,NULL,NULL,120),(28,4,'300分短縮タイマー','300分短縮',NULL,NULL,NULL,NULL,NULL,300),(29,4,'600分短縮タイマー','600分短縮',NULL,NULL,NULL,NULL,NULL,600),(30,4,'1440分短縮タイマー','1,440分短縮',NULL,NULL,NULL,NULL,NULL,1440)\G -# Query 139: ID 0x800F18B12242617F +# Query 141: ID 0xDC9F1034A1E27BC4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 253.0us 253.0us 253.0us 253.0us 253.0us 253.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Count 0 2 +# Exec time 0 347.0us 93.0us 254.0us 173.5us 254.0us 254.0us +# Lock time 0 4.0us 1.0us 3.0us 2.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 2 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_items` WRITE\G +UPDATE admin_users SET last_activated_at=1661580832, updated_at=1661580832 WHERE id=123456\G -# Query 140: ID 0xC16CEC7CCAF67259 +# Query 142: ID 0x13A9838C463C3D30 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 248.0us 248.0us 248.0us 248.0us 248.0us 248.0us -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Exec time 0 342.0us 342.0us 342.0us 342.0us 342.0us 342.0us +# Lock time 0 5.0us 5.0us 5.0us 5.0us 5.0us 5.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_one_time_tokens` WRITE\G +LOCK TABLES `admin_sessions` WRITE\G -# Query 141: ID 0x919C4CD1A84CA2E5 +# Query 143: ID 0x5A6E75D209C861F8 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 236.0us 236.0us 236.0us 236.0us 236.0us 236.0us -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 326.0us 326.0us 326.0us 326.0us 326.0us 326.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 40 40 40 40.00 40 40 +# Rows examined 0 40 40 40 40.00 40 40 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_decks` WRITE\G +SELECT * FROM gacha_masters\G -# Query 142: ID 0x6D10EB097E9787D2 +# Query 144: ID 0xF393E1CDB5570428 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 232.0us 232.0us 232.0us 232.0us 232.0us 232.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 3 3 3 3.00 3 3 -# Rows examined 0 3 3 3 3.00 3 3 +# Exec time 0 318.0us 318.0us 318.0us 318.0us 318.0us 318.0us +# Lock time 0 0 0 0 0 0 0 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_login_bonuses WHERE user_id=4929824682\G - -# Query 143: ID 0xA5C7507EF8D09065 -# Attribute pct total min max avg 95% median -# ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 230.0us 64.0us 166.0us 115.0us 166.0us 166.0us -# Lock time 0 2.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +INSERT INTO `gacha_masters` VALUES (1,'1月ピックアップガチャ',1577804400,1580482800,3,1575126000),(2,'スタートアップガチャ',1577804400,1593529200,10,1575126000),(3,'2月ピックアップガチャ',1580482800,1582988400,3,1577804400),(4,'3月ピックアップガチャ',1582988400,1585666800,3,1580482800),(5,'4月ピックアップガチャ',1585666800,1588258800,3,1582988400),(6,'5月ピックアップガチャ',1588258800,1590937200,3,1585666800),(7,'1周年ガチャ',1596207600,1598886000,1,1588258800),(8,'6月ピックアップガチャ',1590937200,1593529200,3,1588258800),(9,'スタートアップガチャ',1593529200,1609426800,10,1590937200),(10,'7月ピックアップガチャ',1593529200,1596207600,3,1590937200),(11,'8月ピックアップガチャ',1596207600,1598886000,3,1593529200),(12,'9月ピックアップガチャ',1598886000,1601478000,3,1596207600),(13,'10月ピックアップガチャ',1601478000,1604156400,3,1598886000),(14,'11月ピックアップガチャ',1604156400,1606748400,3,1601478000),(15,'12月ピックアップガチャ',1606748400,1609426800,3,1604156400),(16,'スタートアップガチャ',1609426800,1625065200,10,1606748400),(17,'1月ピックアップガチャ',1609426800,1612105200,3,1606748400),(18,'2月ピックアップガチャ',1612105200,1614524400,3,1609426800),(19,'3月ピックアップガチャ',1614524400,1617202800,3,1612105200),(20,'4月ピックアップガチャ',1617202800,1619794800,3,1614524400),(21,'5月ピックアップガチャ',1619794800,1622473200,3,1617202800),(22,'2周年ガチャ',1627743600,1630422000,1,1619794800),(23,'6月ピックアップガチャ',1622473200,1625065200,3,1619794800),(24,'スタートアップガチャ',1625065200,1640962800,10,1622473200),(25,'7月ピックアップガチャ',1625065200,1627743600,3,1622473200),(26,'8月ピックアップガチャ',1627743600,1630422000,3,1625065200),(27,'9月ピックアップガチャ',1630422000,1633014000,3,1627743600),(28,'10月ピックアップガチャ',1633014000,1635692400,3,1630422000),(29,'11月ピックアップガチャ',1635692400,1638284400,3,1633014000),(30,'12月ピックアップガチャ',1638284400,1640962800,3,1635692400),(31,'スタートアップガチャ',1640962800,2147483647,10,1638284400),(32,'1月ピックアップガチャ',1640962800,1643641200,3,1638284400),(33,'2月ピックアップガチャ',1643641200,1646060400,3,1640962800),(34,'3月ピックアップガチャ',1646060400,1648738800,3,1643641200),(35,'4月ピックアップガチャ',1648738800,1651330800,3,1646060400),(36,'5月ピックアップガチャ',1651330800,1654009200,3,1648738800),(37,'3周年ガチャ',1656601200,1661958000,1,1651330800),(38,'6月ピックアップガチャ',1654009200,1656601200,3,1651330800),(39,'7月ピックアップガチャ',1656601200,1659279600,3,1654009200),(40,'8月ピックアップガチャ',1659279600,2147483647,4,1656601200)\G + +# Query 145: ID 0xCA839F188167DAF3 +# Attribute pct total min max avg 95% median +# ============= === ======= ======= ======= ======= ======= ======= +# Count 0 1 +# Exec time 0 317.0us 317.0us 317.0us 317.0us 317.0us 317.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 30 30 30 30.00 30 30 +# Rows examined 0 30 30 30 30.00 30 30 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO admin_sessions(user_id, session_id, created_at, updated_at, expired_at) VALUES (123456, 'dda23bf4-3720-485e-be6a-c54c9fcffe01', 1661579885, 1661579885, 1661666285)\G +SELECT * FROM item_masters\G -# Query 144: ID 0x2822DF40707B636A +# Query 146: ID 0xD249D00DC91E5422 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 223.0us 223.0us 223.0us 223.0us 223.0us 223.0us +# Exec time 0 309.0us 309.0us 309.0us 309.0us 309.0us 309.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2426,55 +2456,55 @@ INSERT INTO admin_sessions(user_id, session_id, created_at, updated_at, expired_ # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT user_bans(user_id, created_at, updated_at) VALUES (4929824682, 1661579885, 1661579885) ON DUPLICATE KEY UPDATE updated_at = 1661579885\G +INSERT INTO `login_bonus_reward_masters` VALUES (1,1,1,1,1,500,1651330800),(2,1,2,3,17,5,1651330800),(3,1,3,4,21,5,1651330800),(4,1,4,3,18,1,1651330800),(5,1,5,1,1,500,1651330800),(6,1,6,3,18,1,1651330800),(7,1,7,4,22,1,1651330800),(8,1,8,3,19,1,1651330800),(9,1,9,4,23,1,1651330800),(10,1,10,1,1,500,1651330800),(11,1,11,3,19,1,1651330800),(12,1,12,4,24,1,1651330800),(13,1,13,3,19,1,1651330800),(14,1,14,4,25,1,1651330800),(15,1,15,1,1,500,1651330800),(16,1,16,3,19,1,1651330800),(17,1,17,4,26,1,1651330800),(18,1,18,3,19,1,1651330800),(19,1,19,4,26,1,1651330800),(20,1,20,1,1,500,1651330800),(21,1,21,3,19,1,1651330800),(22,1,22,4,26,1,1651330800),(23,1,23,3,19,1,1651330800),(24,1,24,4,26,1,1651330800),(25,1,25,1,1,500,1651330800),(26,1,26,3,20,1,1651330800),(27,1,27,4,27,1,1651330800),(28,1,28,1,1,1000,1651330800),(29,2,1,1,1,3000,1651330800),(30,2,2,3,20,1,1651330800),(31,2,3,4,27,1,1651330800),(32,2,4,1,1,3000,1651330800),(33,2,5,3,20,1,1651330800),(34,2,6,4,27,1,1651330800),(35,2,7,1,1,3000,1651330800),(36,4,1,1,1,3000,1651330800),(37,4,2,3,20,1,1651330800),(38,4,3,4,27,1,1651330800),(39,4,4,1,1,3000,1651330800),(40,4,5,3,20,1,1651330800),(41,4,6,4,27,1,1651330800),(42,4,7,1,1,3000,1651330800)\G -# Query 145: ID 0x529A1666173F6816 +# Query 147: ID 0x2822DF40707B636A # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 213.0us 213.0us 213.0us 213.0us 213.0us 213.0us -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Exec time 0 295.0us 295.0us 295.0us 295.0us 295.0us 295.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `gacha_item_masters` WRITE\G +INSERT user_bans(user_id, created_at, updated_at) VALUES (4315879259, 1661580832, 1661580832) ON DUPLICATE KEY UPDATE updated_at = 1661580832\G -# Query 146: ID 0xCA839F188167DAF3 +# Query 148: ID 0x3FE59A86BDAD6C68 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 210.0us 210.0us 210.0us 210.0us 210.0us 210.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 30 30 30 30.00 30 30 -# Rows examined 0 30 30 30 30.00 30 30 +# Exec time 0 290.0us 290.0us 290.0us 290.0us 290.0us 290.0us +# Lock time 0 20.0us 20.0us 20.0us 20.0us 20.0us 20.0us +# Rows sent 0 28 28 28 28.00 28 28 +# Rows examined 0 28 28 28 28.00 28 28 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM item_masters\G +SELECT * FROM present_all_masters\G -# Query 147: ID 0xE0FEC9821064B3B8 +# Query 149: ID 0x2CFBEEFAB0034497 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 203.0us 203.0us 203.0us 203.0us 203.0us 203.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Exec time 0 270.0us 270.0us 270.0us 270.0us 270.0us 270.0us +# Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_present_all_received_history` WRITE\G +INSERT INTO `present_all_masters` VALUES (1,1577804400,2147483647,1,1,3000,'リリース記念プレゼントです!',1588258800),(2,1577804400,1588258800,1,1,300,'メンテナンスのお詫びです',1588258800),(3,1577804400,2147483647,1,1,1000,'1ヶ月突破プレゼントです!',1590937200),(4,1577804400,2147483647,1,1,1000,'2ヶ月突破プレゼントです!',1593529200),(5,1577804400,2147483647,1,1,2000,'3ヶ月突破プレゼントです!',1596207600),(6,1577804400,2147483647,1,1,2000,'4ヶ月突破プレゼントです!',1598886000),(7,1577804400,2147483647,1,1,2000,'5ヶ月突破プレゼントです!',1601478000),(8,1577804400,2147483647,1,1,3000,'ハーフアニバーサリープレゼントです!',1604156400),(9,1577804400,2147483647,1,1,2000,'7ヶ月突破プレゼントです!',1606748400),(10,1577804400,2147483647,1,1,2000,'8ヶ月突破プレゼントです!',1609426800),(11,1577804400,2147483647,1,1,2000,'9ヶ月突破プレゼントです!',1612105200),(12,1577804400,2147483647,1,1,2000,'10ヶ月突破プレゼントです!',1614524400),(13,1577804400,2147483647,1,1,2000,'11ヶ月突破プレゼントです!',1617202800),(14,1577804400,2147483647,1,1,3000,'1周年突破プレゼントです!',1619794800),(15,1577804400,2147483647,1,1,6000,'周年記念プレゼントです!',1619794800),(16,1577804400,2147483647,1,1,2000,'13ヶ月突破プレゼントです!',1622473200),(17,1577804400,2147483647,1,1,2000,'14ヶ月突破プレゼントです!',1625065200),(18,1577804400,2147483647,1,1,2000,'15ヶ月突破プレゼントです1',1627743600),(19,1577804400,2147483647,1,1,2000,'16ヶ月突破プレゼントです!',1630422000),(20,1577804400,2147483647,1,1,2000,'17ヶ月突破プレゼントです!',1633014000),(21,1577804400,2147483647,1,1,2000,'18ヶ月突破プレゼントです!',1635692400),(22,1577804400,2147483647,1,1,2000,'19ヶ月突破プレゼントです!',1638284400),(23,1577804400,2147483647,1,1,2000,'20ヶ月突破プレゼントです!',1640962800),(24,1577804400,2147483647,1,1,2000,'21ヶ月プレゼントです!',1643641200),(25,1577804400,2147483647,1,1,2000,'22ヶ月プレゼントです!',1646060400),(26,1577804400,2147483647,1,1,2000,'23ヶ月プレゼントです!',1648738800),(27,1577804400,2147483647,1,1,6000,'2周年記念プレゼントです!',1651330800),(28,1577804400,2147483647,1,1,6000,'2.5周年プレゼントです!',1667228400)\G -# Query 148: ID 0x3D4B0BB5334BDE56 +# Query 150: ID 0xC16CEC7CCAF67259 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 191.0us 191.0us 191.0us 191.0us 191.0us 191.0us +# Exec time 0 259.0us 259.0us 259.0us 259.0us 259.0us 259.0us # Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2482,41 +2512,41 @@ LOCK TABLES `user_present_all_received_history` WRITE\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_login_bonuses` WRITE\G +LOCK TABLES `user_one_time_tokens` WRITE\G -# Query 149: ID 0x5A6E75D209C861F8 +# Query 151: ID 0x3D4B0BB5334BDE56 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 183.0us 183.0us 183.0us 183.0us 183.0us 183.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 40 40 40 40.00 40 40 -# Rows examined 0 40 40 40 40.00 40 40 +# Exec time 0 230.0us 230.0us 230.0us 230.0us 230.0us 230.0us +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM gacha_masters\G +LOCK TABLES `user_login_bonuses` WRITE\G -# Query 150: ID 0xCC581D476064ED08 +# Query 152: ID 0xE90F9E9547E89206 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 178.0us 178.0us 178.0us 178.0us 178.0us 178.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 2 2 2 2.00 2 2 -# Rows examined 0 2 2 2 2.00 2 2 +# Exec time 0 213.0us 213.0us 213.0us 213.0us 213.0us 213.0us +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM user_devices WHERE user_id=4929824682\G +LOCK TABLES `version_masters` WRITE\G -# Query 151: ID 0xDFD5504726EB3549 +# Query 153: ID 0x1D3211FC8C502FA2 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 176.0us 176.0us 176.0us 176.0us 176.0us 176.0us +# Exec time 0 210.0us 210.0us 210.0us 210.0us 210.0us 210.0us # Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2524,13 +2554,13 @@ SELECT * FROM user_devices WHERE user_id=4929824682\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_cards` WRITE\G +LOCK TABLES `user_sessions` WRITE\G -# Query 152: ID 0x1F6740BFCFE03A20 +# Query 154: ID 0x1F6740BFCFE03A20 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 170.0us 170.0us 170.0us 170.0us 170.0us 170.0us +# Exec time 0 209.0us 209.0us 209.0us 209.0us 209.0us 209.0us # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2540,11 +2570,11 @@ LOCK TABLES `user_cards` WRITE\G # EXPLAIN /*!50100 PARTITIONS*/ LOCK TABLES `admin_users` WRITE\G -# Query 153: ID 0xC4772BE419CD0C6D +# Query 155: ID 0xE0FEC9821064B3B8 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 169.0us 169.0us 169.0us 169.0us 169.0us 169.0us +# Exec time 0 208.0us 208.0us 208.0us 208.0us 208.0us 208.0us # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2552,55 +2582,55 @@ LOCK TABLES `admin_users` WRITE\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_bans` WRITE\G +LOCK TABLES `user_present_all_received_history` WRITE\G -# Query 154: ID 0x1D3211FC8C502FA2 +# Query 156: ID 0xA5DAC22A01A07C48 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 167.0us 167.0us 167.0us 167.0us 167.0us 167.0us -# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us +# Exec time 0 207.0us 207.0us 207.0us 207.0us 207.0us 207.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `user_sessions` WRITE\G +LOCK TABLES `user_devices` WRITE\G -# Query 155: ID 0x3FE59A86BDAD6C68 +# Query 157: ID 0x3D5B45015389B55D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 162.0us 162.0us 162.0us 162.0us 162.0us 162.0us +# Exec time 0 206.0us 206.0us 206.0us 206.0us 206.0us 206.0us # Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 28 28 28 28.00 28 28 -# Rows examined 0 28 28 28 28.00 28 28 +# Rows sent 0 4 4 4 4.00 4 4 +# Rows examined 0 4 4 4 4.00 4 4 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM present_all_masters\G +SELECT * FROM login_bonus_masters\G -# Query 156: ID 0x87BC99050ED44E56 +# Query 158: ID 0xCA743B363A3AD922 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 159.0us 159.0us 159.0us 159.0us 159.0us 159.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 203.0us 203.0us 203.0us 203.0us 203.0us 203.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 12 12 12 12.00 12 12 +# Rows examined 0 12 12 12 12.00 12 12 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `gacha_masters` WRITE\G +SELECT * FROM user_items WHERE user_id=4315879259\G -# Query 157: ID 0x78C64A7A6F0B8C0D +# Query 159: ID 0xDFD5504726EB3549 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 149.0us 149.0us 149.0us 149.0us 149.0us 149.0us +# Exec time 0 199.0us 199.0us 199.0us 199.0us 199.0us 199.0us # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2608,41 +2638,41 @@ LOCK TABLES `gacha_masters` WRITE\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `login_bonus_masters` WRITE\G +LOCK TABLES `user_cards` WRITE\G -# Query 158: ID 0x19C8068B5C1997CD +# Query 160: ID 0x529A1666173F6816 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 3 -# Exec time 0 149.0us 19.0us 94.0us 49.7us 94.0us 36.0us -# Lock time 0 0 0 0 0 0 0 +# Count 0 1 +# Exec time 0 199.0us 199.0us 199.0us 199.0us 199.0us 199.0us +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -ROLLBACK\G +LOCK TABLES `gacha_item_masters` WRITE\G -# Query 159: ID 0x35CD16F9891E955B +# Query 161: ID 0xF63BEE146310AA5E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 146.0us 146.0us 146.0us 146.0us 146.0us 146.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Exec time 0 189.0us 189.0us 189.0us 189.0us 189.0us 189.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `login_bonus_reward_masters` WRITE\G +UPDATE admin_sessions SET deleted_at=1661580852 WHERE session_id='655fcec3-1d5c-4c03-b686-c0951a6e292c' AND deleted_at IS NULL\G -# Query 160: ID 0x6991460B87D28F36 +# Query 162: ID 0x919C4CD1A84CA2E5 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 145.0us 145.0us 145.0us 145.0us 145.0us 145.0us +# Exec time 0 186.0us 186.0us 186.0us 186.0us 186.0us 186.0us # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2650,111 +2680,111 @@ LOCK TABLES `login_bonus_reward_masters` WRITE\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `present_all_masters` WRITE\G +LOCK TABLES `user_decks` WRITE\G -# Query 161: ID 0xAD2BCB166581B9BE +# Query 163: ID 0x800F18B12242617F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 145.0us 145.0us 145.0us 145.0us 145.0us 145.0us -# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Exec time 0 181.0us 181.0us 181.0us 181.0us 181.0us 181.0us +# Lock time 0 3.0us 3.0us 3.0us 3.0us 3.0us 3.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `item_masters` WRITE\G +LOCK TABLES `user_items` WRITE\G -# Query 162: ID 0x0868D48EF26DB526 +# Query 164: ID 0xD83BFF7AF61CCFC2 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 142.0us 142.0us 142.0us 142.0us 142.0us 142.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 179.0us 179.0us 179.0us 179.0us 179.0us 179.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `admin_users` VALUES (123456,'$2a$10$7.KNgAxA3rSMWIs6oy1D.uNcVrsgqpS.Rh6lD6sUXa24VBhtJX9lK',1659627296,1659627296,1659627296,NULL)\G +SELECT * FROM version_masters\G -# Query 163: ID 0xA3C958A64E1E64AB +# Query 165: ID 0x6D10EB097E9787D2 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 137.0us 137.0us 137.0us 137.0us 137.0us 137.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 9 9 9 9.00 9 9 -# Rows examined 0 9 9 9 9.00 9 9 +# Exec time 0 179.0us 179.0us 179.0us 179.0us 179.0us 179.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 3 3 3 3.00 3 3 +# Rows examined 0 3 3 3 3.00 3 3 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW ENGINES\G +SELECT * FROM user_login_bonuses WHERE user_id=4315879259\G -# Query 164: ID 0x2CFF86204BE26813 +# Query 166: ID 0xC4772BE419CD0C6D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 133.0us 133.0us 133.0us 133.0us 133.0us 133.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 9 9 9 9.00 9 9 -# Rows examined 0 18 18 18 18.00 18 18 +# Exec time 0 162.0us 162.0us 162.0us 162.0us 162.0us 162.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT ENGINE,SUPPORT FROM information_schema.ENGINES ORDER BY ENGINE ASC\G +LOCK TABLES `user_bans` WRITE\G -# Query 165: ID 0xE90F9E9547E89206 +# Query 167: ID 0x87BC99050ED44E56 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 131.0us 131.0us 131.0us 131.0us 131.0us 131.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Exec time 0 148.0us 148.0us 148.0us 148.0us 148.0us 148.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `version_masters` WRITE\G +LOCK TABLES `gacha_masters` WRITE\G -# Query 166: ID 0x3D5B45015389B55D +# Query 168: ID 0xCC581D476064ED08 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 130.0us 130.0us 130.0us 130.0us 130.0us 130.0us +# Exec time 0 143.0us 143.0us 143.0us 143.0us 143.0us 143.0us # Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 4 4 4 4.00 4 4 -# Rows examined 0 4 4 4 4.00 4 4 +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM login_bonus_masters\G +SELECT * FROM user_devices WHERE user_id=4315879259\G -# Query 167: ID 0x788E5E772F279047 +# Query 169: ID 0x78C64A7A6F0B8C0D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 128.0us 128.0us 128.0us 128.0us 128.0us 128.0us -# Lock time 0 0 0 0 0 0 0 +# Exec time 0 142.0us 142.0us 142.0us 142.0us 142.0us 142.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `login_bonus_masters` VALUES (1,1577804400,2147483647,28,1,1577804400),(2,1577804400,2147483647,7,0,1577804400),(3,1651330800,1651330800,7,0,1651330800),(4,1651330800,1661958000,7,0,1651330800)\G +LOCK TABLES `login_bonus_masters` WRITE\G -# Query 168: ID 0xF2F72CDA74B98AB4 +# Query 170: ID 0xAD2BCB166581B9BE # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 117.0us 117.0us 117.0us 117.0us 117.0us 117.0us +# Exec time 0 141.0us 141.0us 141.0us 141.0us 141.0us 141.0us # Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2762,27 +2792,27 @@ INSERT INTO `login_bonus_masters` VALUES (1,1577804400,2147483647,28,1,157780440 # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -LOCK TABLES `users` WRITE\G +LOCK TABLES `item_masters` WRITE\G -# Query 169: ID 0xD83BFF7AF61CCFC2 +# Query 171: ID 0x35CD16F9891E955B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 97.0us 97.0us 97.0us 97.0us 97.0us 97.0us -# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 1 1 1 1.00 1 1 +# Exec time 0 141.0us 141.0us 141.0us 141.0us 141.0us 141.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT * FROM version_masters\G +LOCK TABLES `login_bonus_reward_masters` WRITE\G -# Query 170: ID 0xED31E05ED5D27AD7 +# Query 172: ID 0xF2F72CDA74B98AB4 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 96.0us 96.0us 96.0us 96.0us 96.0us 96.0us +# Exec time 0 140.0us 140.0us 140.0us 140.0us 140.0us 140.0us # Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2790,27 +2820,27 @@ SELECT * FROM version_masters\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO version_masters(id, status, master_version) VALUES ('1', '2', '1'),('2', '1', '2') ON DUPLICATE KEY UPDATE status=VALUES(status), master_version=VALUES(master_version)\G +LOCK TABLES `users` WRITE\G -# Query 171: ID 0xFB38455BF7035609 +# Query 173: ID 0x6991460B87D28F36 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 95.0us 44.0us 51.0us 47.5us 51.0us 51.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 2 1 1 1.00 1 1 -# Rows examined 0 2 1 1 1.00 1 1 +# Count 0 1 +# Exec time 0 139.0us 139.0us 139.0us 139.0us 139.0us 139.0us +# Lock time 0 2.0us 2.0us 2.0us 2.0us 2.0us 2.0us +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT DATABASE()\G +LOCK TABLES `present_all_masters` WRITE\G -# Query 172: ID 0x591DCE6A753564F4 +# Query 174: ID 0x0868D48EF26DB526 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 94.0us 94.0us 94.0us 94.0us 94.0us 94.0us +# Exec time 0 132.0us 132.0us 132.0us 132.0us 132.0us 132.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2818,27 +2848,27 @@ SELECT DATABASE()\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */\G +INSERT INTO `admin_users` VALUES (123456,'$2a$10$7.KNgAxA3rSMWIs6oy1D.uNcVrsgqpS.Rh6lD6sUXa24VBhtJX9lK',1659627296,1659627296,1659627296,NULL)\G -# Query 173: ID 0x6C099B0B73EA7633 +# Query 175: ID 0x2CFF86204BE26813 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 91.0us 91.0us 91.0us 91.0us 91.0us 91.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 132.0us 132.0us 132.0us 132.0us 132.0us 132.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 9 9 9 9.00 9 9 +# Rows examined 0 18 18 18 18.00 18 18 # String: -# Databases isucon +# Databases # # EXPLAIN /*!50100 PARTITIONS*/ -USE `isucon`\G +SELECT ENGINE,SUPPORT FROM information_schema.ENGINES ORDER BY ENGINE ASC\G -# Query 174: ID 0x0633D3706780274F +# Query 176: ID 0xFF9B70EBBE41B32D # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 89.0us 89.0us 89.0us 89.0us 89.0us 89.0us +# Exec time 0 122.0us 122.0us 122.0us 122.0us 122.0us 122.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2846,13 +2876,13 @@ USE `isucon`\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO present_all_masters(id, registered_start_at, registered_end_at, item_type, item_id, amount, present_message, created_at) VALUES ('29', '1577804400', '2147483647', '1', '1', '6000', 'CM放映記念プレゼントです!', '1659279600') ON DUPLICATE KEY UPDATE registered_start_at=VALUES(registered_start_at), registered_end_at=VALUES(registered_end_at), item_type=VALUES(item_type), item_id=VALUES(item_id), amount=VALUES(amount), present_message=VALUES(present_message), created_at=VALUES(created_at)\G +INSERT INTO `version_masters` VALUES (1,1,'1')\G -# Query 175: ID 0xFF9B70EBBE41B32D +# Query 177: ID 0x2AE2B3044B313A97 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 74.0us 74.0us 74.0us 74.0us 74.0us 74.0us +# Exec time 0 120.0us 120.0us 120.0us 120.0us 120.0us 120.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2860,13 +2890,13 @@ INSERT INTO present_all_masters(id, registered_start_at, registered_end_at, item # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -INSERT INTO `version_masters` VALUES (1,1,'1')\G +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */\G -# Query 176: ID 0x7B8FDA41126FA26B +# Query 178: ID 0x788E5E772F279047 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 70.0us 70.0us 70.0us 70.0us 70.0us 70.0us +# Exec time 0 111.0us 111.0us 111.0us 111.0us 111.0us 111.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2874,41 +2904,41 @@ INSERT INTO `version_masters` VALUES (1,1,'1')\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */\G +INSERT INTO `login_bonus_masters` VALUES (1,1577804400,2147483647,28,1,1577804400),(2,1577804400,2147483647,7,0,1577804400),(3,1651330800,1651330800,7,0,1651330800),(4,1651330800,1661958000,7,0,1651330800)\G -# Query 177: ID 0x2AE2B3044B313A97 +# Query 179: ID 0xA3C958A64E1E64AB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 62.0us 62.0us 62.0us 62.0us 62.0us 62.0us -# Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Exec time 0 108.0us 108.0us 108.0us 108.0us 108.0us 108.0us +# Lock time 0 1.0us 1.0us 1.0us 1.0us 1.0us 1.0us +# Rows sent 0 9 9 9 9.00 9 9 +# Rows examined 0 9 9 9 9.00 9 9 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */\G +SHOW ENGINES\G -# Query 178: ID 0x0109404F4FF70855 +# Query 180: ID 0x576EF5EB51F5D753 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 2 -# Exec time 0 60.0us 29.0us 31.0us 30.0us 31.0us 31.0us +# Count 0 1 +# Exec time 0 99.0us 99.0us 99.0us 99.0us 99.0us 99.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 2 1 1 1.00 1 1 -# Rows examined 0 2 1 1 1.00 1 1 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -Init DB\G +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */\G -# Query 179: ID 0x880B089EBD9A2CAD +# Query 181: ID 0xCF298A80F7E31AF9 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 58.0us 58.0us 58.0us 58.0us 58.0us 58.0us +# Exec time 0 63.0us 63.0us 63.0us 63.0us 63.0us 63.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2916,13 +2946,13 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!50503 SET NAMES utf8mb4 */\G +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */\G -# Query 180: ID 0x05171C9B2C3DBE62 +# Query 182: ID 0xD58C2EC55E332D45 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 52.0us 52.0us 52.0us 52.0us 52.0us 52.0us +# Exec time 0 63.0us 63.0us 63.0us 63.0us 63.0us 63.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2930,13 +2960,13 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40103 SET TIME_ZONE='+00:00' */\G +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */\G -# Query 181: ID 0x404C7B72CAF91ECA +# Query 183: ID 0x7A1208BDC805D902 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 49.0us 49.0us 49.0us 49.0us 49.0us 49.0us +# Exec time 0 62.0us 62.0us 62.0us 62.0us 62.0us 62.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2944,13 +2974,13 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */\G +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */\G -# Query 182: ID 0x7F22BBB9FF2EFA83 +# Query 184: ID 0x880B089EBD9A2CAD # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 48.0us 48.0us 48.0us 48.0us 48.0us 48.0us +# Exec time 0 59.0us 59.0us 59.0us 59.0us 59.0us 59.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2958,13 +2988,13 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */\G +/*!50503 SET NAMES utf8mb4 */\G -# Query 183: ID 0x135A37D729549779 +# Query 185: ID 0xC6794245484061FB # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 45.0us 45.0us 45.0us 45.0us 45.0us 45.0us +# Exec time 0 58.0us 58.0us 58.0us 58.0us 58.0us 58.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -2972,27 +3002,27 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */\G +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */\G -# Query 184: ID 0xD9F25F1131019AB8 +# Query 186: ID 0x0109404F4FF70855 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= -# Count 0 1 -# Exec time 0 44.0us 44.0us 44.0us 44.0us 44.0us 44.0us +# Count 0 2 +# Exec time 0 57.0us 24.0us 33.0us 28.5us 33.0us 33.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows sent 0 2 1 1 1.00 1 1 +# Rows examined 0 2 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */\G +Init DB\G -# Query 185: ID 0x0C25EDC6C64F42DC +# Query 187: ID 0x7047E58B2A5815B3 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 41.0us 41.0us 41.0us 41.0us 41.0us 41.0us +# Exec time 0 55.0us 55.0us 55.0us 55.0us 55.0us 55.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 1 1 1 1.00 1 1 # Rows examined 0 1 1 1 1.00 1 1 @@ -3000,13 +3030,13 @@ Init DB\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -select DATABASE(), USER() limit 1\G +SELECT VERSION()\G -# Query 186: ID 0x7F8290E05162B254 +# Query 188: ID 0x7B8FDA41126FA26B # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 41.0us 41.0us 41.0us 41.0us 41.0us 41.0us +# Exec time 0 53.0us 53.0us 53.0us 53.0us 53.0us 53.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3014,13 +3044,13 @@ select DATABASE(), USER() limit 1\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */\G +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */\G -# Query 187: ID 0x42191676D8F14F5E +# Query 189: ID 0x404C7B72CAF91ECA # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 39.0us 39.0us 39.0us 39.0us 39.0us 39.0us +# Exec time 0 53.0us 53.0us 53.0us 53.0us 53.0us 53.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3028,13 +3058,13 @@ select DATABASE(), USER() limit 1\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SHOW REPLICA STATUS\G +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */\G -# Query 188: ID 0xF3D856BFA86157CE +# Query 190: ID 0x05171C9B2C3DBE62 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 39.0us 39.0us 39.0us 39.0us 39.0us 39.0us +# Exec time 0 50.0us 50.0us 50.0us 50.0us 50.0us 50.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3042,13 +3072,13 @@ SHOW REPLICA STATUS\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */\G +/*!40103 SET TIME_ZONE='+00:00' */\G -# Query 189: ID 0x576EF5EB51F5D753 +# Query 191: ID 0xD9F25F1131019AB8 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 35.0us 35.0us 35.0us 35.0us 35.0us 35.0us +# Exec time 0 49.0us 49.0us 49.0us 49.0us 49.0us 49.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3056,41 +3086,41 @@ SHOW REPLICA STATUS\G # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */\G +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */\G -# Query 190: ID 0x7047E58B2A5815B3 +# Query 192: ID 0x23F6EB3A0ECD9E84 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 33.0us 33.0us 33.0us 33.0us 33.0us 33.0us +# Exec time 0 49.0us 49.0us 49.0us 49.0us 49.0us 49.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 1 1 1 1.00 1 1 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -SELECT VERSION()\G +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */\G -# Query 191: ID 0xEBA5220D6ABC29D5 +# Query 193: ID 0x42191676D8F14F5E # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 33.0us 33.0us 33.0us 33.0us 33.0us 33.0us +# Exec time 0 47.0us 47.0us 47.0us 47.0us 47.0us 47.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 1 1 1 1.00 1 1 -# Rows examined 0 1 1 1 1.00 1 1 +# Rows sent 0 0 0 0 0 0 0 +# Rows examined 0 0 0 0 0 0 0 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -select @@character_set_client, @@character_set_connection, @@character_set_server, @@character_set_database limit 1\G +SHOW REPLICA STATUS\G -# Query 192: ID 0xD58C2EC55E332D45 +# Query 194: ID 0x7F8290E05162B254 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 32.0us 32.0us 32.0us 32.0us 32.0us 32.0us +# Exec time 0 44.0us 44.0us 44.0us 44.0us 44.0us 44.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3098,13 +3128,13 @@ select @@character_set_client, @@character_set_connection, @@character_set_serve # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */\G +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */\G -# Query 193: ID 0xCF298A80F7E31AF9 +# Query 195: ID 0xF3D856BFA86157CE # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 30.0us 30.0us 30.0us 30.0us 30.0us 30.0us +# Exec time 0 43.0us 43.0us 43.0us 43.0us 43.0us 43.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3112,13 +3142,13 @@ select @@character_set_client, @@character_set_connection, @@character_set_serve # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */\G +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */\G -# Query 194: ID 0xC6794245484061FB +# Query 196: ID 0x7F22BBB9FF2EFA83 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 28.0us 28.0us 28.0us 28.0us 28.0us 28.0us +# Exec time 0 42.0us 42.0us 42.0us 42.0us 42.0us 42.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3126,13 +3156,13 @@ select @@character_set_client, @@character_set_connection, @@character_set_serve # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */\G +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */\G -# Query 195: ID 0x7A1208BDC805D902 +# Query 197: ID 0x135A37D729549779 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 28.0us 28.0us 28.0us 28.0us 28.0us 28.0us +# Exec time 0 40.0us 40.0us 40.0us 40.0us 40.0us 40.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3140,41 +3170,41 @@ select @@character_set_client, @@character_set_connection, @@character_set_serve # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */\G +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */\G -# Query 196: ID 0x23F6EB3A0ECD9E84 +# Query 198: ID 0xEBA5220D6ABC29D5 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 26.0us 26.0us 26.0us 26.0us 26.0us 26.0us +# Exec time 0 33.0us 33.0us 33.0us 33.0us 33.0us 33.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */\G +select @@character_set_client, @@character_set_connection, @@character_set_server, @@character_set_database limit 1\G -# Query 197: ID 0x45788F3F8DFCDAFC +# Query 199: ID 0x0C25EDC6C64F42DC # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 25.0us 25.0us 25.0us 25.0us 25.0us 25.0us +# Exec time 0 30.0us 30.0us 30.0us 30.0us 30.0us 30.0us # Lock time 0 0 0 0 0 0 0 -# Rows sent 0 0 0 0 0 0 0 -# Rows examined 0 0 0 0 0 0 0 +# Rows sent 0 1 1 1 1.00 1 1 +# Rows examined 0 1 1 1 1.00 1 1 # String: # Databases # # EXPLAIN /*!50100 PARTITIONS*/ -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */\G +select DATABASE(), USER() limit 1\G -# Query 198: ID 0xD7288668D3824DC6 +# Query 200: ID 0xD7288668D3824DC6 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 22.0us 22.0us 22.0us 22.0us 22.0us 22.0us +# Exec time 0 27.0us 27.0us 27.0us 27.0us 27.0us 27.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 1 1 1 1.00 1 1 # Rows examined 0 1 1 1 1.00 1 1 @@ -3184,11 +3214,11 @@ select @@character_set_client, @@character_set_connection, @@character_set_serve # EXPLAIN /*!50100 PARTITIONS*/ SELECT ~0\G -# Query 199: ID 0x1D410B4BE5060972 +# Query 201: ID 0x1D410B4BE5060972 # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1 -# Exec time 0 9.0us 9.0us 9.0us 9.0us 9.0us 9.0us +# Exec time 0 10.0us 10.0us 10.0us 10.0us 10.0us 10.0us # Lock time 0 0 0 0 0 0 0 # Rows sent 0 0 0 0 0 0 0 # Rows examined 0 0 0 0 0 0 0 @@ -3198,7 +3228,7 @@ SELECT ~0\G # EXPLAIN /*!50100 PARTITIONS*/ Ping\G -# Query 200: ID 0x876951F96EBB256F +# Query 202: ID 0x876951F96EBB256F # Attribute pct total min max avg 95% median # ============= === ======= ======= ======= ======= ======= ======= # Count 0 1