New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
editing a date adds .00000 and breaks re-editing the date using the picker #15629
Comments
|
@williamdes how can I reproduce this issue ?? |
|
@AshwinGinoria in-line edit a row with a date :) |
Fixes: phpmyadmin#15629 Signed-off-by: Kartik Kathuria <kathuriakartik0@gmail.com>
CREATE TABLE `dateTimes`(
`date` DATE NOT NULL,
`datetime` DATETIME(6) NOT NULL,
`ts` TIMESTAMP(6) NOT NULL,
`time` TIME(6) NOT NULL,
`year` YEAR(6) NOT NULL
) ENGINE = INNODB; ALTER TABLE
`dateTimes` ADD UNIQUE(`date`, `datetime`, `ts`, `time`, `year`);
INSERT INTO `dateTimes`(`date`, `datetime`, `ts`, `time`, `year`)
VALUES(
'2020-01-15',
'2020-01-16 22:00:34.000396',
'2020-01-01 22:00:34.000520',
'22:00:34.000314',
'2019'
); |
|
Please fix the UI part too, because when edit a line, it resize the column while keeping displaying additional Why the picker is directly open when using this inline edit ? It must be close like using the full form. |
I am not sure the behaviour should be changed, open or closed by default could be set by a setting and everyone would be happy. |
I had some issues with the trailing
.00000when inserting datesRef: #582
Ref: b495061
Originally posted by @williamdes in #14986 (comment)
The text was updated successfully, but these errors were encountered: