MCPcopy Index your code
hub / github.com/LissaGreense/GO4SQL / getRow

Function getRow

engine/row.go:21–27  ·  view source on GitHub ↗
(table *Table, rowIndex int)

Source from the content-addressed store, hash-verified

19}
20
21func getRow(table *Table, rowIndex int) map[string]ValueInterface {
22 row := make(map[string]ValueInterface)
23 for _, column := range table.Columns {
24 row[column.Name] = column.Values[rowIndex]
25 }
26 return row
27}
28
29func getEmptyRow(table *Table) map[string]ValueInterface {
30 row := make(map[string]ValueInterface)

Callers 3

updateTableMethod · 0.85
joinTablesMethod · 0.85
MapTableToRowsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected