Skip to content

update to go-git v4.0.0-rc4 api #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions git/references.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import (
"github.com/gitql/gitql/sql"

"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/core"
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/storer"
)

type referencesRelation struct {
Expand Down Expand Up @@ -57,7 +58,7 @@ func (referencesRelation) Children() []sql.Node {
}

type referenceIter struct {
i core.ReferenceIter
i storer.ReferenceIter
}

func (i *referenceIter) Next() (sql.Row, error) {
Expand All @@ -69,7 +70,7 @@ func (i *referenceIter) Next() (sql.Row, error) {
return referenceToRow(reference), nil
}

func referenceToRow(c *core.Reference) sql.Row {
func referenceToRow(c *plumbing.Reference) sql.Row {
return sql.NewMemoryRow(
c.Hash().String(),
c.Name().String(),
Expand Down