Skip to content

Commit

Permalink
bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Dec 26, 2024
1 parent 27a1049 commit 0bae8b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sql/expression/tablefunction/table_function.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (t *TableFunctionWrapper) RowIter(ctx *sql.Context, r sql.Row) (sql.RowIter
if err != nil {
return nil, err
}
return sql.RowsToRowIter(sql.Row{v}), nil
return sql.RowsToRowIter(sql.UntypedSqlRow{v}), nil
}

func (t *TableFunctionWrapper) Resolved() bool {
Expand Down
5 changes: 3 additions & 2 deletions sql/plan/create_user_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,11 @@ func NewDefaultAuthentication(password string) Authentication {
type AuthenticationOther struct {
password string
plugin string
identity string
}

func NewOtherAuthentication(password, plugin string) Authentication {
return AuthenticationOther{password, plugin}
func NewOtherAuthentication(password, plugin, identity string) Authentication {
return AuthenticationOther{password, plugin, identity}
}

func (a AuthenticationOther) Plugin() string {
Expand Down

0 comments on commit 0bae8b3

Please sign in to comment.