Skip to content

Commit

Permalink
update last n builds query
Browse files Browse the repository at this point in the history
  • Loading branch information
spennihana committed Mar 6, 2014
1 parent 2fdf4e9 commit 0fb249d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h2o-perf/queries/last_n_builds
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
DELIMITER $$

CREATE DEFINER=`spencer`@`localhost` PROCEDURE `LastN` (IN testName longtext, IN numBuilds bigint(20), IN phasse longtext)
CREATE DEFINER=`spencer`@`localhost` PROCEDURE `LastN`(IN testName longtext, IN numBuilds bigint(20), IN phasse longtext)
BEGIN
SELECT
-- Select from test_run --
Expand Down Expand Up @@ -42,3 +41,4 @@ BEGIN
LIMIT numBuilds;
END$$
DELIMITER ;

0 comments on commit 0fb249d

Please sign in to comment.