[MCOL-265] TIMESTAMP data type not supported Created: 2016-08-18 Updated: 2022-01-05 Resolved: 2019-09-11 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 1.4.0 |
| Type: | New Feature | Priority: | Minor |
| Reporter: | Andrew Hutchings (Inactive) | Assignee: | Bharath Bokka (Inactive) |
| Resolution: | Fixed | Votes: | 6 |
| Labels: | contribution, documentation, relnote | ||
| Issue Links: |
|
||||||||||||||||
| Epic Link: | ColumnStore Compatibility Improvements | ||||||||||||||||
| Sprint: | 2019-04, 2019-05, 2019-06 | ||||||||||||||||
| Description |
|
DATETIME data type appears to work whereas any CREATE TABLE with a TIMESTAMP type throws an error |
| Comments |
| Comment by Andrew Hutchings (Inactive) [ 2019-04-25 ] | ||||||||||||||||||||
|
External contribution, Roman to final review | ||||||||||||||||||||
| Comment by Andrew Hutchings (Inactive) [ 2019-05-02 ] | ||||||||||||||||||||
|
Contribution may need some changes. TBD. | ||||||||||||||||||||
| Comment by Bharath Bokka (Inactive) [ 2019-09-11 ] | ||||||||||||||||||||
|
TIMESTAMP data type works as expected in 1.4.0-1. Build- Ex: MariaDB [test]>
------
------ MariaDB [test]> insert into t3 values(); MariaDB [test]> MariaDB [test]> insert into t3 values('2038-01-19 03:14:07'); MariaDB [test]> insert into t3 values('1970-01-01 00:00:01'); MariaDB [test]> insert into t3 values('1970-01-01 00:00:00'); MariaDB [test]> insert into t3 values(now()); MariaDB [test]> insert into t3 values(current_timestamp()); MariaDB [test]> select * from t3;
---------------------
--------------------- MariaDB [test]> select * from t3 where col1 > '2019-09-09 10:57:02';
---------------------
--------------------- MariaDB [test]> select * from t3 where col1 < '2019-09-09 10:57:02';
---------------------
--------------------- |