Skip to content

Commit 27b055d

Browse files
jycorJames Cor
andauthored
increase information_schema.processlist.State column size (#2765)
Co-authored-by: James Cor <[email protected]>
1 parent a180967 commit 27b055d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/information_schema/information_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ var processListSchema = Schema{
459459
{Name: "DB", Type: types.MustCreateString(sqltypes.VarChar, 64, Collation_Information_Schema_Default), Default: nil, Nullable: true, Source: ProcessListTableName},
460460
{Name: "COMMAND", Type: types.MustCreateString(sqltypes.VarChar, 16, Collation_Information_Schema_Default), Default: nil, Nullable: false, Source: ProcessListTableName},
461461
{Name: "TIME", Type: types.Int32, Default: nil, Nullable: false, Source: ProcessListTableName},
462-
{Name: "STATE", Type: types.MustCreateString(sqltypes.VarChar, 64, Collation_Information_Schema_Default), Default: nil, Nullable: true, Source: ProcessListTableName},
462+
{Name: "STATE", Type: types.MustCreateString(sqltypes.VarChar, 65535, Collation_Information_Schema_Default), Default: nil, Nullable: true, Source: ProcessListTableName},
463463
{Name: "INFO", Type: types.MustCreateString(sqltypes.VarChar, 65535, Collation_Information_Schema_Default), Default: nil, Nullable: true, Source: ProcessListTableName},
464464
}
465465

0 commit comments

Comments
 (0)