mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-07 19:30:22 -05:00
Merge pull request #4073 from dolthub/fulghum/enum-case
Update Dolt for type name casing changes in GMS
This commit is contained in:
@@ -282,7 +282,7 @@ var ModifyAndChangeColumnScripts = []queries.ScriptTest{
|
||||
Assertions: []queries.ScriptTestAssertion{
|
||||
{
|
||||
Query: "alter table people modify rating double default 'not a number'",
|
||||
ExpectedErrStr: "incompatible type for default value: error: 'not a number' is not a valid value for 'DOUBLE'",
|
||||
ExpectedErrStr: "incompatible type for default value: error: 'not a number' is not a valid value for 'double'",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -36,28 +36,28 @@ func TestFmtCol(t *testing.T) {
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
"`first` VARCHAR(16383)",
|
||||
"`first` varchar(16383)",
|
||||
},
|
||||
{
|
||||
schema.NewColumn("last", 123, types.IntKind, true),
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
" `last` BIGINT",
|
||||
" `last` bigint",
|
||||
},
|
||||
{
|
||||
schema.NewColumn("title", 2, types.UintKind, true),
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
" `title` BIGINT UNSIGNED",
|
||||
" `title` bigint unsigned",
|
||||
},
|
||||
{
|
||||
schema.NewColumn("aoeui", 52, types.UintKind, true),
|
||||
0,
|
||||
10,
|
||||
15,
|
||||
" `aoeui` BIGINT UNSIGNED",
|
||||
" `aoeui` bigint unsigned",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user