huangbug
huangbug
``` CREATE TABLE `sessions` ( `app_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `state` longtext COLLATE utf8mb4_unicode_ci, `create_time` datetime(3) DEFAULT...
Hi @dpasiukevich, to ensure that the `update_time` field in the `sessions` table maintains millisecond precision, the timestamp must be converted to millisecond precision **before** executing `applyEvent()`. Otherwise, inserting an event...
Hi @dpasiukevich, If the update_time field is defined as datetime(6), you must ensure that the value written to the sessions table uses microsecond precision rather than nanosecond precision. Otherwise, MySQL...
Hi @dpasiukevich, I've reviewed the changes and everything looks good to me.