wecisecode hai 1 semana
pai
achega
43f3775a28

+ 6 - 3
odbctest/mql/problem/basic/36prepare/12valid.mql

@@ -5,8 +5,9 @@ matchcount(v_varchar, "*abc*", v_text, `hello word 2003 123-456-789 中华人民
 **/
 ;
 
-select _group from /test/prepare where v_varchar=='*abc*'
+select _group from /test/prepare where v_varchar=='*abc*' refresh
 /**
+output()
 count(1)
 matchcount(_group, {
   "_all": [
@@ -19,8 +20,9 @@ matchcount(_group, {
 
 select vvv._group from /test/prepare vvv where vvv.v_varchar=='*abc*'
 /**
+output()
 count(1)
-matchcount(_group, {
+matchcount("vvv._group", {
   "_all": [
     "aa",
 	"dd"
@@ -31,8 +33,9 @@ matchcount(_group, {
 
 select order._group from /test/prepare "order" where order.v_varchar=='*abc*'
 /**
+output()
 count(1)
-matchcount(_group, {
+matchcount("order._group", {
   "_all": [
     "aa",
 	"dd"

+ 2 - 2
odbctest/mql/problem/basic/36prepare/22valid.mql

@@ -21,7 +21,7 @@ matchcount(_group, {
 select vvv._group from /test/mprepare vvv where vvv.v_varchar=='*abc*'
 /**
 count(1)
-matchcount(_group, {
+matchcount("vvv._group", {
   "_all": [
     "aa",
 	"dd"
@@ -33,7 +33,7 @@ matchcount(_group, {
 select order._group from /test/mprepare "order" where order.v_varchar=='*abc*'
 /**
 count(1)
-matchcount(_group, {
+matchcount("order._group", {
   "_all": [
     "aa",
 	"dd"