wecisecode 3 nedēļas atpakaļ
vecāks
revīzija
f64b13a7e6
1 mainītis faili ar 44 papildinājumiem un 0 dzēšanām
  1. 44 0
      odbctest/mql/basic/30conflict/27valid.mql

+ 44 - 0
odbctest/mql/basic/30conflict/27valid.mql

@@ -0,0 +1,44 @@
+
+alter class /test/malert_status with core=cassandraonly;
+
+select identifier from /test/malert_status order by identifier limit 0,10
+/**
+nooutput()
+count(10)
+**/
+;
+
+select identifier from /test/malert_status order by identifier limit 100,10
+/**
+nooutput()
+count(10)
+**/
+;
+
+select identifier from /test/malert_status order by identifier limit 200,10
+/**
+nooutput()
+count(10)
+**/
+;
+
+select identifier from /test/malert_status order by identifier limit 300,10
+/**
+nooutput()
+count(10)
+**/
+;
+
+select identifier from /test/malert_status order by identifier limit 400,10
+/**
+nooutput()
+count(10)
+**/
+;
+
+select identifier from /test/malert_status order by identifier limit 500,10
+/**
+nooutput()
+count(10)
+**/
+;