We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
repro: change the column type from decimal(10,2) to decimal(10,4):
decimal(10,2)
decimal(10,4)
test/main> alter table decimalchange modify column col1 decimal(10,4); liulius-MacBook-Pro:test liuliu$ dolt commit -m "change decimal" commit 5c8avgpcfvap0mresh4m69sf5233r20k (HEAD -> main) Author: liuliu <liu@dolthub.com> Date: Tue Nov 12 12:34:03 -0800 2024 change decimal
dolt diff with previous commit:
liulius-MacBook-Pro:test liuliu$ dolt diff fslnepcn3k61h85e4ab9qdjnrp900a4c 5c8avgpcfvap0mresh4m69sf5233r20k
output:
diff --dolt a/decimalchange b/decimalchange --- a/decimalchange +++ b/decimalchange CREATE TABLE `decimalchange` ( `pk` int NOT NULL, - `col1` decimal(10,2) NOT NULL, + `col1` decimal(10,4), PRIMARY KEY (`pk`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin; +---+----+-------+ | | pk | col1 | +---+----+-------+ | < | 1 | 90.94 | | > | 1 | 90.94 | +---+----+-------+
related issue on dolthub: dolthub/dolthub-issues#551
The text was updated successfully, but these errors were encountered:
leftovers from this issue: #8133
Sorry, something went wrong.
dolt diff
jycor
Successfully merging a pull request may close this issue.
repro:
change the column type from
decimal(10,2)
todecimal(10,4)
:dolt diff with previous commit:
output:
related issue on dolthub:
dolthub/dolthub-issues#551
The text was updated successfully, but these errors were encountered: