2510class.mql 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. delete proma from /test/perf/perfA
  2. /**
  3. onerror(continue,`not exist`,`not find`,`not found`)
  4. **/
  5. ;
  6. delete promb from /test/perf/perfA
  7. /**
  8. onerror(continue,`not exist`,`not find`,`not found`)
  9. **/
  10. ;
  11. delete from /test/perf/perfA with version
  12. /**
  13. onerror(continue,`not exist`,`not find`,`not found`)
  14. **/
  15. ;
  16. drop class if exists /test/perf/perfA
  17. ;
  18. create class if not exists /test/perf();
  19. create class if not exists /test/perf/perfA (
  20. proma bucket {
  21. "dict": true,
  22. "slot": 5,
  23. "ttl": 2,
  24. "type": "promdb",
  25. "version": 1,
  26. "collect": 10
  27. } "proma",
  28. promb bucket {
  29. "dict": true,
  30. "slot": 5,
  31. "ttl": 2,
  32. "type": "promdb",
  33. "version": 1,
  34. "collect": 10
  35. } "promb",
  36. ) with autosearch=true , version=false , key=manu, alias='perfA' , nickname='perfA'
  37. ;