Skip to content

Commit

Permalink
feat: add picker to pick value from record (vesoft-inc#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
veezhang committed Dec 14, 2022
1 parent b35eeab commit dd2163b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220425030225-cdb52399b40a
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1
)

go 1.13
5 changes: 4 additions & 1 deletion pkg/picker/picker.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package picker

var _ Picker = ConverterPicker{}
var (
_ Picker = ConverterPicker{}
_ Picker = NullablePickers(nil)
)

type (
Picker interface {
Expand Down

0 comments on commit dd2163b

Please sign in to comment.