// Copyright 2023 Dolthub, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package schema import ( "github.com/dolthub/go-mysql-server/sql" sqltypes "github.com/dolthub/go-mysql-server/sql/types" ) func SchemaAvgLength(schema sql.Schema) uint64 { var numBytesPerRow uint64 = 0 for _, col := range schema { switch n := col.Type.(type) { case sql.NumberType: numBytesPerRow += 8 case sql.StringType: numBytesPerRow += uint64(n.MaxByteLength()) case sqltypes.BitType: numBytesPerRow += 8 case sql.DatetimeType: numBytesPerRow += 8 case sql.DecimalType: numBytesPerRow += uint64(n.MaximumScale()) case sql.EnumType: numBytesPerRow += 2 case sqltypes.JsonType: numBytesPerRow += 20 case sql.NullType: numBytesPerRow += 1 case sqltypes.TimeType: numBytesPerRow += 16 case sql.YearType: numBytesPerRow += 8 } } return numBytesPerRow }