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
0c91129a
Commit
0c91129a
authored
Jan 13, 2004
by
greg@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor Novell supplied changes for 4.1 (inside netware directory)
parent
c6c2478f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
netware/init_db.sql
netware/init_db.sql
+4
-0
netware/libmysql.imp
netware/libmysql.imp
+1
-1
No files found.
netware/init_db.sql
View file @
0c91129a
...
...
@@ -24,3 +24,7 @@ CREATE TABLE tables_priv (Host char(60) binary DEFAULT '' NOT NULL, Db char(64)
CREATE
TABLE
columns_priv
(
Host
char
(
60
)
binary
DEFAULT
''
NOT
NULL
,
Db
char
(
64
)
binary
DEFAULT
''
NOT
NULL
,
User
char
(
16
)
binary
DEFAULT
''
NOT
NULL
,
Table_name
char
(
64
)
binary
DEFAULT
''
NOT
NULL
,
Column_name
char
(
64
)
binary
DEFAULT
''
NOT
NULL
,
Timestamp
timestamp
(
14
),
Column_priv
set
(
'Select'
,
'Insert'
,
'Update'
,
'References'
)
DEFAULT
''
NOT
NULL
,
PRIMARY
KEY
(
Host
,
Db
,
User
,
Table_name
,
Column_name
))
comment
=
'Column privileges'
;
CREATE
TABLE
help_topic
(
help_topic_id
int
unsigned
NOT
NULL
,
name
varchar
(
64
)
NOT
NULL
,
help_category_id
smallint
unsigned
NOT
NULL
,
description
text
NOT
NULL
,
example
text
NOT
NULL
,
url
varchar
(
128
)
NOT
NULL
,
primary
key
(
help_topic_id
),
unique
index
(
name
))
comment
=
'help topics'
;
CREATE
TABLE
help_category
(
help_category_id
smallint
unsigned
NOT
NULL
,
name
varchar
(
64
)
NOT
NULL
,
parent_category_id
smallint
unsigned
null
,
url
varchar
(
128
)
NOT
NULL
,
primary
key
(
help_category_id
),
unique
index
(
name
))
comment
=
'help categories'
;
CREATE
TABLE
help_keyword
(
help_keyword_id
int
unsigned
NOT
NULL
,
name
varchar
(
64
)
NOT
NULL
,
primary
key
(
help_keyword_id
),
unique
index
(
name
))
comment
=
'help keywords'
;
CREATE
TABLE
help_relation
(
help_topic_id
int
unsigned
NOT
NULL
references
help_topic
,
help_keyword_id
int
unsigned
NOT
NULL
references
help_keyword
,
primary
key
(
help_keyword_id
,
help_topic_id
))
comment
=
'keyword-topic relation'
;
netware/libmysql.imp
View file @
0c91129a
...
...
@@ -77,7 +77,7 @@ mysql_thread_init,
mysql_thread_safe,
mysql_use_result,
net_safe_read,
simple_command,
#simple_command,
mysql_connect,
mysql_create_db,
mysql_drop_db,
...
...
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