diff options
author | monty@mashka.mysql.fi <> | 2002-06-12 15:04:18 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-06-12 15:04:18 +0300 |
commit | b8421d34ec13d626bb29a2f39021e226bf9ff74e (patch) | |
tree | 8495f49bd4d6cb6596a29d60137462d0563ed9ee /sql/table.h | |
parent | 2aecdd1a91bf8386829146609ce0219c51793841 (diff) | |
download | mariadb-git-b8421d34ec13d626bb29a2f39021e226bf9ff74e.tar.gz |
Added the following new privleges:
SHOW DATABASES
CREATE TEMPORARY TABLE
LOCK TABLES
REPLICATION SLAVE & REPLICATION CLIENT
SUPER
EXECUTE
All scripts & documentation is updated for this change.
Added better error messages for global privileges
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/table.h b/sql/table.h index e8280a7d7e6..b6bc3fa8cf1 100644 --- a/sql/table.h +++ b/sql/table.h @@ -37,8 +37,8 @@ typedef struct st_grant_info { GRANT_TABLE *grant_table; uint version; - uint privilege; - uint want_privilege; + ulong privilege; + ulong want_privilege; } GRANT_INFO; enum tmp_table_type {NO_TMP_TABLE=0, TMP_TABLE=1, TRANSACTIONAL_TMP_TABLE=2}; |