Back to home page

OSCL-LXR

 
 

    


0001 -- unresolved function
0002 select * from dummy(3);
0003 
0004 -- range call with end
0005 select * from range(6 + cos(3));
0006 
0007 -- range call with start and end
0008 select * from range(5, 10);
0009 
0010 -- range call with step
0011 select * from range(0, 10, 2);
0012 
0013 -- range call with numPartitions
0014 select * from range(0, 10, 1, 200);
0015 
0016 -- range call error
0017 select * from range(1, 1, 1, 1, 1);
0018 
0019 -- range call with null
0020 select * from range(1, null);
0021 
0022 -- range call with a mixed-case function name
0023 select * from RaNgE(2);