@@ -462,9 +462,9 @@ var profilingSchema = Schema{
462462 {Name : "QUERY_ID" , Type : types .Int32 , Default : nil , Nullable : false , Source : ProfilingTableName },
463463 {Name : "SEQ" , Type : types .Int32 , Default : nil , Nullable : false , Source : ProfilingTableName },
464464 {Name : "STATE" , Type : types .MustCreateStringWithDefaults (sqltypes .VarChar , 30 ), Default : nil , Nullable : false , Source : ProfilingTableName },
465- {Name : "DURATION" , Type : MustCreateDecimalType (DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : false , Source : ProfilingTableName },
466- {Name : "CPU_USER" , Type : MustCreateDecimalType (DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : true , Source : ProfilingTableName },
467- {Name : "CPU_SYSTEM" , Type : MustCreateDecimalType (DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : true , Source : ProfilingTableName },
465+ {Name : "DURATION" , Type : types . MustCreateDecimalType (types . DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : false , Source : ProfilingTableName },
466+ {Name : "CPU_USER" , Type : types . MustCreateDecimalType (types . DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : true , Source : ProfilingTableName },
467+ {Name : "CPU_SYSTEM" , Type : types . MustCreateDecimalType (types . DecimalTypeMaxPrecision , 0 ), Default : nil , Nullable : true , Source : ProfilingTableName },
468468 {Name : "CONTEXT_VOLUNTARY" , Type : types .Int32 , Default : nil , Nullable : true , Source : ProfilingTableName },
469469 {Name : "CONTEXT_INVOLUNTARY" , Type : types .Int32 , Default : nil , Nullable : true , Source : ProfilingTableName },
470470 {Name : "BLOCK_OPS_IN" , Type : types .Int32 , Default : nil , Nullable : true , Source : ProfilingTableName },
0 commit comments