Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
b8e25674
Commit
b8e25674
authored
Sep 26, 2002
by
Mac Newbold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly qualify osid in join since it now is ambiguous with nodes.osid.
parent
3d3d4980
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
db/nfree.in
db/nfree.in
+3
-3
No files found.
db/nfree.in
View file @
b8e25674
...
...
@@ -210,11 +210,11 @@ foreach my $n (@freed_nodes) {
# of the default values for its node type.
#
my
$result
=
DBQueryFatal
("
select control_net,
osid,node_types
.pxe_boot_path,
"
.
DBQueryFatal
("
select control_net,
nt.osid,nt
.pxe_boot_path,
"
.
"
nodes.def_boot_osid,nodes.def_boot_path,
"
.
"
node_types.isvirtnode
"
.
"
from node_types
"
.
"
left join nodes
on nodes.type=node_types
.type
"
.
"
from node_types
as nt
"
.
"
left join nodes
as n on n.type=nt
.type
"
.
"
where node_id='
$n
'
");
my
(
$control
,
$osid
,
$pxe_boot_path
,
$def_boot_osid
,
$def_boot_path
,
$isvirt
)
=
$result
->
fetchrow_array
();
...
...
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