1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Dlee mtr restructure (#2494)

* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
This commit is contained in:
Daniel Lee
2022-08-09 13:20:56 -05:00
committed by GitHub
parent 8b15e2f6a4
commit 4c9d6e39ac
6839 changed files with 10542409 additions and 77 deletions

View File

@ -0,0 +1,92 @@
USE tpch1;
select cast(cdatetime as signed) from datatypetestm;
cast(cdatetime as signed)
19970101000000
19970101000001
19970102000001
19970103000002
19970104000003
20091231235956
20091231235957
20091231235958
20091231235959
20091231235959
20091231235959
select (cdatetime << 8) from datatypetestm;
(cdatetime << 8)
5112345856000000
5112345856000256
5112346112000256
5112346368000512
5112346624000768
5143355196404736
5143355196404992
5143355196405248
5143355196405504
5143355196405504
5143355196405504
select (cdatetime & 0xff0000000000) from datatypetestm;
(cdatetime & 0xff0000000000)
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
19791209299968
select (cdatetime >> 12) from datatypetestm;
(cdatetime >> 12)
4875512939
4875512939
4875513183
4875513427
4875513671
4905085750
4905085750
4905085750
4905085750
4905085750
4905085750
select (cdatetime | 0xffffff) from datatypetestm;
(cdatetime | 0xffffff)
19970104754175
19970104754175
19970104754175
19970104754175
19970104754175
20091236253695
20091236253695
20091236253695
20091236253695
20091236253695
20091236253695
select (cdatetime ^ 337) from datatypetestm;
(cdatetime ^ 337)
19970100999697
19970100999696
19970101999824
19970102999699
19970104000338
20091231235621
20091231235620
20091231235623
20091231235622
20091231235622
20091231235622
select bit_count(cdatetime) from datatypetestm;
bit_count(cdatetime)
20
21
22
22
22
25
26
26
27
27
27