5.check.mql 434 B

1234567891011121314151617181920
  1. select id,mv_varchar,v_float from /test/mpartition
  2. -- { output() }
  3. ;
  4. select id,mv_varchar,v_float from /test/mpartition where v_float >= 1.1
  5. -- { output() }
  6. ;
  7. select id,mv_varchar,v_float from /test/mpartition where v_float <= 1.1
  8. -- { output() }
  9. ;
  10. select id,mv_varchar,v_float from /test/mpartition where v_float != 1.1
  11. -- { output() }
  12. ;
  13. select id,mv_varchar,v_float from /test/mpartition where v_float == 1.1
  14. -- { output() }
  15. ;