From beac1fa96de607cb43aa82d0403d0cedc662a8ba Mon Sep 17 00:00:00 2001 From: David Kagan Date: Thu, 9 Mar 2023 14:48:40 -0500 Subject: [PATCH] added a type field to fb_database_nodes system table --- sql3/planner/opsystemtable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql3/planner/opsystemtable.go b/sql3/planner/opsystemtable.go index a556380ea..3f940cef2 100644 --- a/sql3/planner/opsystemtable.go +++ b/sql3/planner/opsystemtable.go @@ -395,7 +395,7 @@ func (i *fbDatabaseNodesRowIter) Next(ctx context.Context) (types.Row, error) { n := i.result[0] row := []interface{}{ n.ID, - "types!", + n.Type, n.State, n.URI, n.GRPCURI,