27valid.mql 704 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. alter class /test/malert_status with core=cassandraonly;
  2. select identifier from /test/malert_status order by identifier limit 0,10
  3. /**
  4. nooutput()
  5. count(10)
  6. **/
  7. ;
  8. select identifier from /test/malert_status order by identifier limit 100,10
  9. /**
  10. nooutput()
  11. count(10)
  12. **/
  13. ;
  14. select identifier from /test/malert_status order by identifier limit 200,10
  15. /**
  16. nooutput()
  17. count(10)
  18. **/
  19. ;
  20. select identifier from /test/malert_status order by identifier limit 300,10
  21. /**
  22. nooutput()
  23. count(10)
  24. **/
  25. ;
  26. select identifier from /test/malert_status order by identifier limit 400,10
  27. /**
  28. nooutput()
  29. count(10)
  30. **/
  31. ;
  32. select identifier from /test/malert_status order by identifier limit 500,10
  33. /**
  34. nooutput()
  35. count(10)
  36. **/
  37. ;