| 12345678910111213141516171819 |
- -- ============================================================
- -- Native Keyspace 操作测试
- -- ============================================================
- -- 1. 访问 native keyspace(系统命名空间)
- -- 测试原生命名空间的访问能力
- select count(*) from /test/aaa/test_ext where e_name='ext_001'
- /**
- output()
- match("count(*)","1")
- **/
- ;
- -- 2. 在 /test/aaa/ 命名空间下操作
- select e_name, e_value from /test/aaa/test_ext where e_name=^'ext'
- /**
- output()
- **/
- ;
|