Hi Team,
We are getting the below error when an update is done on CROpportunity table.
“Incorrect datetime value: '4095-15-255 255:63:63.1048575' for column 'Tstamp' at row 1”
Column tststamp on the table is defined as
`tstamp` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
from my understanding this means if there is no explicit value defined for tststamp, if any update happens the value for tstamp column should be set to current timestamp. Not sure how this invalid value is getting set.