Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
e1af2a63
Commit
e1af2a63
authored
Oct 02, 2003
by
Mac Newbold
Browse files
Add an index on exptidx to testbed_stats
parent
f6a006b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e1af2a63
...
...
@@ -1220,7 +1220,8 @@ CREATE TABLE testbed_stats (
exitcode
tinyint
(
3
)
default
'0'
,
uid
varchar
(
8
)
NOT
NULL
default
''
,
PRIMARY
KEY
(
idx
),
KEY
rsrcidx
(
rsrcidx
)
KEY
rsrcidx
(
rsrcidx
),
KEY
exptidx
(
exptidx
)
)
TYPE
=
MyISAM
;
--
...
...
sql/database-migrate.txt
View file @
e1af2a63
...
...
@@ -998,3 +998,7 @@ last_net_act,last_cpu_act,last_ext_act);
alter table virt_node_desires drop primary key;
alter table virt_node_desires add primary key(pid,eid,vname,desire);
1.190: Add an index...
alter table testbed_stats add key (exptidx);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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