MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / getEmptyRow

Function getEmptyRow

engine/row.go:29–35  ·  view source on GitHub ↗
(table *Table)

Source from the content-addressed store, hash-verified

27}
28
29func getEmptyRow(table *Table) map[string]ValueInterface {
30 row := make(map[string]ValueInterface)
31 for _, column := range table.Columns {
32 row[column.Name] = NullValue{}
33 }
34 return row
35}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected