Poll: Default setting for explicit_default_timestamp

We have the following query:

CREATE TABLE t (
  id INTEGER,
  t1 TIMESTAMP,
);

INSERT INTO t () VALUES ();
SELECT * from t;
Behind the scenes MariaDB (by default) expands timestamp column type to be:
timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

We are considering changing this behaviour.

What is the result you want to see in a default configuration for this query?
64%
(294 votes)
(NULL, NULL)
36%
(166 votes)
(NULL, '{{current wall-clock}}')
Total Votes: 460