Skip to content

Commit 0bae8b3

Browse files
author
James Cor
committed
bad merge
1 parent 27a1049 commit 0bae8b3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

sql/expression/tablefunction/table_function.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (t *TableFunctionWrapper) RowIter(ctx *sql.Context, r sql.Row) (sql.RowIter
8282
if err != nil {
8383
return nil, err
8484
}
85-
return sql.RowsToRowIter(sql.Row{v}), nil
85+
return sql.RowsToRowIter(sql.UntypedSqlRow{v}), nil
8686
}
8787

8888
func (t *TableFunctionWrapper) Resolved() bool {

sql/plan/create_user_data.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,11 @@ func NewDefaultAuthentication(password string) Authentication {
178178
type AuthenticationOther struct {
179179
password string
180180
plugin string
181+
identity string
181182
}
182183

183-
func NewOtherAuthentication(password, plugin string) Authentication {
184-
return AuthenticationOther{password, plugin}
184+
func NewOtherAuthentication(password, plugin, identity string) Authentication {
185+
return AuthenticationOther{password, plugin, identity}
185186
}
186187

187188
func (a AuthenticationOther) Plugin() string {

0 commit comments

Comments
 (0)