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: mysql-test/r/grant.result
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ Create_user_priv N
49
49
Event_priv N
50
50
Trigger_priv N
51
51
Create_tablespace_priv N
52
+
Delete_versioning_rows_priv N
52
53
ssl_type SPECIFIED
53
54
ssl_cipher EDH-RSA-DES-CBC3-SHA
54
55
x509_issuer
@@ -124,6 +125,7 @@ Create_user_priv N
124
125
Event_priv N
125
126
Trigger_priv N
126
127
Create_tablespace_priv N
128
+
Delete_versioning_rows_priv N
127
129
ssl_type
128
130
ssl_cipher
129
131
x509_issuer
@@ -175,6 +177,7 @@ Create_user_priv N
175
177
Event_priv N
176
178
Trigger_priv N
177
179
Create_tablespace_priv N
180
+
Delete_versioning_rows_priv N
178
181
ssl_type
179
182
ssl_cipher
180
183
x509_issuer
@@ -223,7 +226,7 @@ revoke LOCK TABLES, ALTER on mysqltest.* from mysqltest_1@localhost;
223
226
show grants for mysqltest_1@localhost;
224
227
Grants for mysqltest_1@localhost
225
228
GRANT USAGE ON *.* TO 'mysqltest_1'@'localhost'
226
-
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, CREATE TEMPORARY TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER ON `mysqltest`.* TO 'mysqltest_1'@'localhost' WITH GRANT OPTION
229
+
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, CREATE TEMPORARY TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER, DELETE VERSIONING ROWS ON `mysqltest`.* TO 'mysqltest_1'@'localhost' WITH GRANT OPTION
227
230
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
228
231
delete from mysql.user where user='mysqltest_1';
229
232
flush privileges;
@@ -609,6 +612,7 @@ Create temporary tables Databases To use CREATE TEMPORARY TABLE
609
612
Create view Tables To create new views
610
613
Create user Server Admin To create new users
611
614
Delete Tables To delete existing rows
615
+
Delete versioning rows Tables To delete versioning table historical rows
612
616
Drop Databases,Tables To drop databases, tables, and views
613
617
Event Server Admin To create, alter, drop and execute events
614
618
Execute Functions,Procedures To execute stored routines
@@ -664,8 +668,8 @@ SELECT TABLE_SCHEMA, TABLE_NAME, GROUP_CONCAT(PRIVILEGE_TYPE ORDER BY
664
668
PRIVILEGE_TYPE SEPARATOR ', ') AS PRIVILEGES FROM TABLE_PRIVILEGES WHERE GRANTEE
665
669
= '\'dummy\'@\'localhost\'' GROUP BY TABLE_SCHEMA, TABLE_NAME;
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
154
156
`Grantor` char(141) COLLATE utf8_bin NOT NULL DEFAULT '',
155
157
`Timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
156
-
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '',
158
+
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger','Delete versioning rows') CHARACTER SET utf8 NOT NULL DEFAULT '',
157
159
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
0 commit comments