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