summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/win_bit.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 18:00:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 18:00:34 +0000
commit3f619478f796eddbba6e39502fe941b285dd97b1 (patch)
treee2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/main/win_bit.test
parentInitial commit. (diff)
downloadmariadb-3f619478f796eddbba6e39502fe941b285dd97b1.tar.xz
mariadb-3f619478f796eddbba6e39502fe941b285dd97b1.zip
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/win_bit.test')
-rw-r--r--mysql-test/main/win_bit.test89
1 files changed, 89 insertions, 0 deletions
diff --git a/mysql-test/main/win_bit.test b/mysql-test/main/win_bit.test
new file mode 100644
index 00000000..f077d0d6
--- /dev/null
+++ b/mysql-test/main/win_bit.test
@@ -0,0 +1,89 @@
+create table t1 (
+ pk int primary key,
+ a int,
+ b int
+);
+
+create table t2 (
+ pk int primary key,
+ a int,
+ b int
+);
+
+
+
+insert into t1 values
+( 1 , 0, 1),
+( 2 , 0, 2),
+( 3 , 1, 4),
+( 4 , 1, 8),
+( 5 , 2, 32),
+( 6 , 2, 64),
+( 7 , 2, 128),
+( 8 , 2, 16);
+
+insert into t2 values
+( 1 , 0, 2),
+( 2 , 0, 2),
+( 3 , 1, 4),
+( 4 , 1, 4),
+( 5 , 2, 16),
+( 6 , 2, 64),
+( 7 , 2, 128),
+( 8 , 2, 16);
+
+
+
+--echo # Test bit functions on only one partition.
+select pk, a, b,
+ bit_or(b) over (order by pk) as bit_or,
+ bit_and(b) over (order by pk) as bit_and,
+ bit_xor(b) over (order by pk) as bit_xor
+from t1;
+
+select pk, a, b,
+ bit_or(b) over (order by pk) as bit_or,
+ bit_and(b) over (order by pk) as bit_and,
+ bit_xor(b) over (order by pk) as bit_xor
+from t2;
+
+--echo # Test multiple partitions with bit functions.
+select pk, a, b,
+ bit_or(b) over (partition by a order by pk) as bit_or,
+ bit_and(b) over (partition by a order by pk) as bit_and,
+ bit_xor(b) over (partition by a order by pk) as bit_xor
+from t1;
+
+select pk, a, b,
+ bit_or(b) over (partition by a order by pk) as bit_or,
+ bit_and(b) over (partition by a order by pk) as bit_and,
+ bit_xor(b) over (partition by a order by pk) as bit_xor
+from t2;
+
+--echo # Test remove function for bit functions using a sliding window.
+select pk, a, b,
+ bit_or(b) over (partition by a order by pk ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING) as bit_or,
+ bit_and(b) over (partition by a order by pk) as bit_and,
+ bit_xor(b) over (partition by a order by pk) as bit_xor
+from t1;
+
+select pk, a, b,
+ bit_or(b) over (partition by a order by pk) as bit_or,
+ bit_and(b) over (partition by a order by pk) as bit_and,
+ bit_xor(b) over (partition by a order by pk) as bit_xor
+from t2;
+
+
+
+
+
+
+
+#select pk, a, b, bit_or(b) over (order by a) as count from t1 order by a, pk;
+#select pk, a, b, bit_and(b) over (order by a ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) as count from t1 order by a, pk;
+#select pk, a, b, bit_xor(b) over (order by a, pk ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) as count from t2 order by pk;
+#select pk, a, b, bit_or(b) over (order by a, pk ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) as count from t2 order by pk;
+#select pk, a, b, bit_and(b) over (order by a, pk ROWS BETWEEN 2 PRECEDING AND CURRENT ROW) as count from t3 order by pk;
+
+drop table t1;
+drop table t2;