mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Merge pull request #773 from travisturner/row-pointer
return *Row instead of Row on empty key result
This commit is contained in:
commit
72c068a64f
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ func emptyResult(c *pql.Call) interface{} {
|
|||
return false
|
||||
|
||||
case "Row":
|
||||
return Row{Keys: []string{}}
|
||||
return &Row{Keys: []string{}}
|
||||
|
||||
case "Rows":
|
||||
return RowIdentifiers{Keys: []string{}}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue