Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4bd90706
Commit
4bd90706
authored
Mar 29, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init_db.sql:
Updates to be in sync with 'mysql_create_system_tables'
parent
3cd2a3b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
mysql-test/lib/init_db.sql
mysql-test/lib/init_db.sql
+9
-8
No files found.
mysql-test/lib/init_db.sql
View file @
4bd90706
...
...
@@ -84,6 +84,7 @@ CREATE TABLE user (
Show_view_priv
enum
(
'N'
,
'Y'
)
COLLATE
utf8_general_ci
DEFAULT
'N'
NOT
NULL
,
Create_routine_priv
enum
(
'N'
,
'Y'
)
COLLATE
utf8_general_ci
DEFAULT
'N'
NOT
NULL
,
Alter_routine_priv
enum
(
'N'
,
'Y'
)
COLLATE
utf8_general_ci
DEFAULT
'N'
NOT
NULL
,
Create_user_priv
enum
(
'N'
,
'Y'
)
COLLATE
utf8_general_ci
DEFAULT
'N'
NOT
NULL
,
ssl_type
enum
(
''
,
'ANY'
,
'X509'
,
'SPECIFIED'
)
COLLATE
utf8_general_ci
DEFAULT
''
NOT
NULL
,
ssl_cipher
BLOB
NOT
NULL
,
x509_issuer
BLOB
NOT
NULL
,
...
...
@@ -98,9 +99,9 @@ CHARACTER SET utf8 COLLATE utf8_bin
comment
=
'Users and global privileges'
;
INSERT
INTO
user
VALUES
(
'localhost'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
''
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
INSERT
INTO
user
VALUES
(
'@HOSTNAME@%'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
''
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
REPLACE
INTO
user
VALUES
(
'127.0.0.1'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
''
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
INSERT
INTO
user
VALUES
(
'localhost'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'
Y'
,
'
'
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
INSERT
INTO
user
VALUES
(
'@HOSTNAME@%'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'
Y'
,
'
'
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
REPLACE
INTO
user
VALUES
(
'127.0.0.1'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'
Y'
,
'
'
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
INSERT
INTO
user
(
host
,
user
)
VALUES
(
'localhost'
,
''
);
INSERT
INTO
user
(
host
,
user
)
VALUES
(
'@HOSTNAME@%'
,
''
);
...
...
@@ -147,11 +148,11 @@ comment='Column privileges';
CREATE
TABLE
help_topic
(
help_topic_id
int
unsigned
not
null
,
name
var
char
(
64
)
not
null
,
name
char
(
64
)
not
null
,
help_category_id
smallint
unsigned
not
null
,
description
text
not
null
,
example
text
not
null
,
url
var
char
(
128
)
not
null
,
url
char
(
128
)
not
null
,
primary
key
(
help_topic_id
),
unique
index
(
name
)
)
engine
=
MyISAM
...
...
@@ -161,9 +162,9 @@ comment='help topics';
CREATE
TABLE
help_category
(
help_category_id
smallint
unsigned
not
null
,
name
var
char
(
64
)
not
null
,
name
char
(
64
)
not
null
,
parent_category_id
smallint
unsigned
null
,
url
var
char
(
128
)
not
null
,
url
char
(
128
)
not
null
,
primary
key
(
help_category_id
),
unique
index
(
name
)
)
engine
=
MyISAM
CHARACTER
SET
utf8
...
...
@@ -172,7 +173,7 @@ comment='help categories';
CREATE
TABLE
help_keyword
(
help_keyword_id
int
unsigned
not
null
,
name
var
char
(
64
)
not
null
,
name
char
(
64
)
not
null
,
primary
key
(
help_keyword_id
),
unique
index
(
name
)
)
engine
=
MyISAM
CHARACTER
SET
utf8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment