Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Hussamuddin Nasir
emulab-devel
Commits
5d736c2a
Commit
5d736c2a
authored
Oct 21, 2016
by
Leigh Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I never should have used unsigned values for counts. Bad dog, Bad Dog.
parent
955ba600
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
www/explist.php3
www/explist.php3
+3
-2
No files found.
www/explist.php3
View file @
5d736c2a
<?php
#
# Copyright (c) 2000-20
07
University of Utah and the Flux Group.
# Copyright (c) 2000-20
16
University of Utah and the Flux Group.
#
# {{{EMULAB-LICENSE
#
...
...
@@ -127,7 +127,8 @@ $query_result =
" from experiments as e "
.
"left join experiment_stats as s on s.exptidx=e.idx "
.
"left join experiment_resources as rs on rs.idx=s.rsrcidx "
.
"where rs.pnodes-rs.delaynodes>2 and "
.
"where (cast(rs.pnodes as signed) - "
.
" cast(rs.delaynodes as signed)) > 2 and "
.
" rs.thumbnail is not null and "
.
" e.state='"
.
$TB_EXPTSTATE_SWAPPED
.
"' "
.
"order by s.swapout_last desc "
.
...
...
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