Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add docstrings
  • Loading branch information
nicktobey committed Oct 28, 2025
commit 3ca970a4c5c180932a0a976933d7bc2896c9c15c
1 change: 1 addition & 0 deletions go/libraries/doltcore/sqle/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,7 @@ func (db Database) getRootForNonlocalRef(ctx *sql.Context, ref string) (root dol
}
}

// getNonlocalTableNames returns a list of every table name that will resolve to a nonlocal table when resolved on the provided root.
func (db Database) getNonlocalTableNames(ctx *sql.Context, root doltdb.RootValue) (nonlocalTableNames []string, error error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Method comment

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added

_, nonlocalsTable, nonlocalsTableExists, err := db.resolveUserTable(ctx, root, dtables.GetDoltNonlocalTablesName())
if err != nil {
Expand Down