kennytm
kennytm
No progress, it is not scheduled for development in this year.
(Internal reference: (1) PRM-332, (2) PRM-243.)
Hi. Your primary key is an auto_random column, which was not yet supported by Lightning before v4.0.1 (#298). You may either * Fix up the auto-random base by: ```sql SELECT...
@lddlww Oh. Have you successfully inserted some rows after Lightning import and before the "duplicate entry for key 'PRIMARY'" error? If so, `max(id)` unfortunately is no longer the correct measure...
@lddlww are you using `max(id)` or `max(id & ((1
@lddlww From the `show create table test_auto`, it looks like the problem is due to > AUTO_RANDOM_BASE=4323455642275729509 * 4323455642275729509 = 0x3c00_0000_0000_d065 the sharding bits (0x3c) was somehow included, but the...
@lddlww hmm, so how was `test_auto` created and populated?
`auto_random_base` can be used for all tables
@lddlww 😕 can't reproduce the 8059 error. how are the two rows inserted into `test_auto`?
@lddlww oh. well the issue is that this statement will overflow the auto_random_base: ```sql alter table test_auto auto_random_base=6629298651489370114; ```