Closed
Description
Describe the bug
A table with a timestamp column with default of CURRENT_TIMESTAMP returns current_timestamp() in mariadb.
But in transporter.py it only checks for CURRENT_TIMESTAMP.
So for a table like
CREATE TABLE test (
time TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
The sqlite3 Table is with default 'current_timestamp()'
and don't get filled with the current timestamp, but with this string.
My version is 2.4.1 and mariadb 11.6
Is this something that will be fixed or is this out of scope?