Syntax
mysql> set enable_vectorized_engine=true;
mysql> select array_with_constant(2, "hello");
+---------------------------------+
+---------------------------------+
| ['hello', 'hello'] |
1 row in set (0.04 sec)
mysql> select array_with_constant(3, 12345);
+-------------------------------+
| array_with_constant(3, 12345) |
+-------------------------------+
1 row in set (0.01 sec)
mysql> select array_with_constant(3, null);
+------------------------------+
| array_with_constant(3, NULL) |
+------------------------------+
| [NULL, NULL, NULL] |