Skip to content

Commit

Permalink
bugfix: table list default project name missing (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
twz915 authored Nov 1, 2024
1 parent 3446122 commit 3077e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odps/tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (ts *Tables) List(f func(*Table, error), filters ...TFilterFunc) {

for _, tableModel := range resModel.Tables {
table := NewTable(ts.odpsIns, ts.projectName, ts.schemaName, tableModel.Name)
table.model = tableModel
table.model.Owner = tableModel.Owner

f(table, nil)
}
Expand Down

0 comments on commit 3077e56

Please sign in to comment.