Skip to content
GitLab
Menu
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
d3496020
Commit
d3496020
authored
Jun 01, 2004
by
Kirk Webb
Browse files
Changed regex max length for node_id field in nodes table from 10 to 12 for
plab nodes.
parent
2e8c9dec
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-fill.sql
View file @
d3496020
...
@@ -480,7 +480,7 @@ REPLACE INTO table_regex VALUES ('experiments','cpu_usage','int','redirect','def
...
@@ -480,7 +480,7 @@ REPLACE INTO table_regex VALUES ('experiments','cpu_usage','int','redirect','def
REPLACE
INTO
table_regex
VALUES
(
'experiments'
,
'mem_usage'
,
'int'
,
'redirect'
,
'default:tinyint'
,
0
,
5
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'experiments'
,
'mem_usage'
,
'int'
,
'redirect'
,
'default:tinyint'
,
0
,
5
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'experiments'
,
'sync_server'
,
'text'
,
'redirect'
,
'virt_nodes:vname'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'experiments'
,
'sync_server'
,
'text'
,
'redirect'
,
'virt_nodes:vname'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'groups'
,
'gid'
,
'text'
,
'regex'
,
'^[a-zA-Z][-
\\
w]+$'
,
2
,
12
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'groups'
,
'gid'
,
'text'
,
'regex'
,
'^[a-zA-Z][-
\\
w]+$'
,
2
,
12
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nodes'
,
'node_id'
,
'text'
,
'regex'
,
'^[-
\\
w]+$'
,
1
,
1
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nodes'
,
'node_id'
,
'text'
,
'regex'
,
'^[-
\\
w]+$'
,
1
,
1
2
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'pid'
,
'text'
,
'redirect'
,
'projects:pid'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'pid'
,
'text'
,
'redirect'
,
'projects:pid'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'eid'
,
'text'
,
'redirect'
,
'experiments:eid'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'eid'
,
'text'
,
'redirect'
,
'experiments:eid'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'vname'
,
'text'
,
'redirect'
,
'virt_nodes:vname'
,
0
,
0
,
NULL
);
REPLACE
INTO
table_regex
VALUES
(
'nseconfigs'
,
'vname'
,
'text'
,
'redirect'
,
'virt_nodes:vname'
,
0
,
0
,
NULL
);
...
...
Write
Preview
Supports
Markdown
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