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
b8e25674
Commit
b8e25674
authored
Sep 26, 2002
by
Mac Newbold
Browse files
Properly qualify osid in join since it now is ambiguous with nodes.osid.
parent
3d3d4980
Changes
1
Hide whitespace changes
Inline
Side-by-side
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,n
ode_types
.pxe_boot_path,
"
.
DBQueryFatal
("
select control_net,
nt.
osid,n
t
.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
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