The TIMESTAMP type represents a timestamp without time zone information and is converted by MySQL from the server (or session’s) current time zone into UTC when writing and vice versa when reading back the value. Such columns are converted into an equivalent io.debezium.time.ZonedTimestamp in UTC based on the server (or session’s) current time zone. The timezone will be queried from the server by default. If this fails, it must be specified explicitly as a connector option using the database.serverTimezone option. So if for instance the database’s time zone (either globally or configured for the connector by means of aforementioned option) is "America/Los_Angeles", the TIMESTAMP value "2018-06-20 06:37:03" will be represented by a ZonedTimestamp with the value "2018-06-20T13:37:03Z".