Skip to content

Commit

Permalink
Fixed transitive test
Browse files Browse the repository at this point in the history
  • Loading branch information
VOS Maintainer committed Nov 19, 2013
1 parent 3c2226d commit bdc7a10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binsrc/tests/suite/ttrans.sql
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ select * from (select transitive t_in (1) t_out (2) t_direction 1 t_distinct p1
ECHO BOTH $IF $EQU $ROWCNT 3 "PASSED" "***FAILED";
ECHO BOTH ": trans steps d1\n";

select * from (select transitive t_in (1) t_out (2) t_direction 2 t_distinct p1, p2, t_step (1) as via, t_step ('path_id') as path , t_step ('step_no') as step from knows) k where p1 = 1 and p2 = 4;
select * from (select transitive t_in (1) t_out (2) t_direction 2 t_distinct p1, p2, t_step (2) as via, t_step ('path_id') as path , t_step ('step_no') as step from knows) k where p1 = 1 and p2 = 4;
ECHO BOTH $IF $EQU $ROWCNT 3 "PASSED" "***FAILED";
ECHO BOTH ": trans steps d2\n";

select * from (select transitive t_in (1) t_out (2) t_direction 3 t_distinct t_shortest_only p1, p2, t_step (1) as via, t_step ('path_id') as path , t_step ('step_no') as step from knows) k where p1 = 1 and p2 = 4;
select * from (select transitive t_in (1) t_out (2) t_direction 3 t_distinct t_shortest_only p1, p2, t_step ('path_id') as path , t_step ('step_no') as step from knows) k where p1 = 1 and p2 = 4;
ECHO BOTH $IF $EQU $ROWCNT 3 "PASSED" "***FAILED";
ECHO BOTH ": trans steps d3\n";

Expand Down

0 comments on commit bdc7a10

Please sign in to comment.