Open db-lover opened 5 months ago
There has been in each release.
In Field_longlong type define:
class Field_longlong : public Field_num { ... double val_real() const override; ... }
funciton val_real() marked as override, it is not inherited by Field_sys_trx_id. In native MySQL 8.0, this function is marked as final
val_real()
override
Field_sys_trx_id
final
No response
Search before asking
Version
There has been in each release.
What's Wrong?
In Field_longlong type define:
funciton
val_real()
marked asoverride
, it is not inherited byField_sys_trx_id
. In native MySQL 8.0, this function is marked asfinal
How to Reproduce?
No response
Are you willing to submit PR?