1
0

2 Revīzijas 9904c79866 ... 2c0fe2772b

Autors SHA1 Ziņojums Datums
  lizg 2c0fe2772b Merge branch 'master' of https://git.wecise.com/libf/odbtools 2 nedēļas atpakaļ
  lizg 25b07b6288 ... 2 nedēļas atpakaļ

+ 24 - 0
odbctest/mql/problem/basic/36prepare/12valid.mql

@@ -17,6 +17,30 @@ matchcount(_group, {
 **/
 ;
 
+select vvv._group from /test/prepare vvv where vvv.v_varchar=='*abc*'
+/**
+count(1)
+matchcount(_group, {
+  "_all": [
+    "aa",
+	"dd"
+  ]
+}, 1)
+**/
+;
+
+select order._group from /test/prepare "order" where order.v_varchar=='*abc*'
+/**
+count(1)
+matchcount(_group, {
+  "_all": [
+    "aa",
+	"dd"
+  ]
+}, 1)
+**/
+;
+
 select class from / where id='3991197448023402669'
 /**
 count(1)

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

@@ -18,3 +18,26 @@ matchcount(_group, {
 **/
 ;
 
+select vvv._group from /test/mprepare vvv where vvv.v_varchar=='*abc*'
+/**
+count(1)
+matchcount(_group, {
+  "_all": [
+    "aa",
+	"dd"
+  ]
+}, 1)
+**/
+;
+
+select order._group from /test/mprepare "order" where order.v_varchar=='*abc*'
+/**
+count(1)
+matchcount(_group, {
+  "_all": [
+    "aa",
+	"dd"
+  ]
+}, 1)
+**/
+;