[Groonga-commit] groonga/groonga [master] Add a test for binary operation for UInt8 type

Back to archive index

Kouhei Sutou null+****@clear*****
Sat Mar 2 15:06:44 JST 2013


Kouhei Sutou	2013-03-02 15:06:44 +0900 (Sat, 02 Mar 2013)

  New Revision: 543b685fdae9c22df36f12195ec29a05bceb6f08
  https://github.com/groonga/groonga/commit/543b685fdae9c22df36f12195ec29a05bceb6f08

  Log:
    Add a test for binary operation for UInt8 type
    
    Operation: X & Y

  Added files:
    test/command/suite/select/operation/bitwise_and/uint8.expected
    test/command/suite/select/operation/bitwise_and/uint8.test

  Added: test/command/suite/select/operation/bitwise_and/uint8.expected (+45 -0) 100644
===================================================================
--- /dev/null
+++ test/command/suite/select/operation/bitwise_and/uint8.expected    2013-03-02 15:06:44 +0900 (52c78f6)
@@ -0,0 +1,45 @@
+table_create Values TABLE_NO_KEY
+[[0,0.0,0.0],true]
+column_create Values value1 COLUMN_SCALAR UInt8
+[[0,0.0,0.0],true]
+column_create Values value2 COLUMN_SCALAR UInt8
+[[0,0.0,0.0],true]
+load --table Values
+[
+{"value1": 12, "value2": 7}
+]
+[[0,0.0,0.0],1]
+select Values   --filter true   --scorer '_score = value1 & value2'   --output_columns 'value1, value2, _score'
+[
+  [
+    0,
+    0.0,
+    0.0
+  ],
+  [
+    [
+      [
+        1
+      ],
+      [
+        [
+          "value1",
+          "UInt8"
+        ],
+        [
+          "value2",
+          "UInt8"
+        ],
+        [
+          "_score",
+          "Int32"
+        ]
+      ],
+      [
+        12,
+        7,
+        4
+      ]
+    ]
+  ]
+]

  Added: test/command/suite/select/operation/bitwise_and/uint8.test (+13 -0) 100644
===================================================================
--- /dev/null
+++ test/command/suite/select/operation/bitwise_and/uint8.test    2013-03-02 15:06:44 +0900 (e2d258d)
@@ -0,0 +1,13 @@
+table_create Values TABLE_NO_KEY
+column_create Values value1 COLUMN_SCALAR UInt8
+column_create Values value2 COLUMN_SCALAR UInt8
+
+load --table Values
+[
+{"value1": 12, "value2": 7}
+]
+
+select Values \
+  --filter true \
+  --scorer '_score = value1 & value2' \
+  --output_columns 'value1, value2, _score'
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index