MariaDB is inserting unknown rows before the actual data in a single insert statement. Example
insert into my_table (id_person, id_department, job_date) values (1, 1, '2019-01-01')
when you do a
select * from my_table
you'll get, for example, but it can be other random values
1 1 NULL
3 1 NULL
1 1 2019-01-01