Skip to content

Commit d137048

Browse files
author
James Cor
committed
increase column size
1 parent a5fe3d6 commit d137048

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)