12native.mql 491 B

12345678910111213141516171819
  1. -- ============================================================
  2. -- Native Keyspace 操作测试
  3. -- ============================================================
  4. -- 1. 访问 native keyspace(系统命名空间)
  5. -- 测试原生命名空间的访问能力
  6. select count(*) from /test/aaa/test_ext where e_name='ext_001'
  7. /**
  8. output()
  9. match("count(*)","1")
  10. **/
  11. ;
  12. -- 2. 在 /test/aaa/ 命名空间下操作
  13. select e_name, e_value from /test/aaa/test_ext where e_name=^'ext'
  14. /**
  15. output()
  16. **/
  17. ;