You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/misc-info-schema-tables.md
+44-24Lines changed: 44 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
1
# Misc. INFORMATION_SCHEMA tables
2
2
3
-
This page lists the `INFORMATION_SCHEMA` tables added to standard *MySQL* by *Percona Server for MySQL* that don’t exist elsewhere in the documentation.
3
+
This page lists the `INFORMATION_SCHEMA` tables added to standard *MySQL* by *Percona Server for MySQL* that don't exist elsewhere in the documentation.
The new `performance_schema.account_failed_login_lock_status` table is implemented in Percona Server for MySQL 8.0.44-35 and exposes information about temporary account locking from MySQL internal Access Control List (ACL) cache.
11
+
12
+
This table is read-only, and global, per-database or per-table `SELECT` privilege on this table are required from users who want to access the table contents.
|`USER`|`CHAR(..)`| Identifies the user account described by the table row |
17
+
|`HOST`|`CHAR(..)`| Identifies the user account described by the table row |
18
+
|`IS_TRACKING_ACTIVE`|`enum('YES','NO')`| Indicates whether failed login tracking is enabled for the account |
19
+
|`MAX_ATTEMPTS`|`INTEGER`| Maximum number of failed login attempts allowed before account is locked (corresponds to FAILED_LOGIN_ATTEMPTS clause value in CREATE USER statement) |
20
+
|`PASSWORD_LOCK_DAYS`|`INTEGER`| Number of days for which account will be temporarily locked after exceeding the MAX_ATTEMPS limit. Set to -1 if account is locked forever (corresponds to PASSWORD_LOCK_TIME clause value in CREATE USER) |
21
+
|`IS_LOCKED`|`BOOLEAN`| Indicates if account is temporarily locked by failed login lock tracking. NULL if tracking is not enabled for account |
22
+
|`REMAINING_ATTEMPTS`|`INTEGER`| Number of failed login attempts remaining before account will be locked. NULL if tracking is not enabled for account |
23
+
|`REMAINING_DAYS_LOCKED`|`INTEGER`| Number of days for which account is locked due to failed login lock tracking. -1 means that account is locked "forever" (until server restart/FLUSH PRIVILEGES or specific account unlock). NULL if tracking is not enabled for account |
4
24
5
25
## Temporary tables
6
26
@@ -14,37 +34,37 @@ Only the temporary tables that were explicitly created with CREATE TEMPORARY TAB
0 commit comments