We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1997571 commit e01b2d3Copy full SHA for e01b2d3
pkg/sql/opt_catalog.go
@@ -530,6 +530,12 @@ func (oc *optCatalog) UserHasGlobalPrivilegeOrRoleOption(
530
}
531
532
// FullyQualifiedName is part of the cat.Catalog interface.
533
+//
534
+// Note that:
535
+// - this call may involve a database operation so it shouldn't be used in
536
+// performance sensitive paths;
537
+// - the fully qualified name of a data source object can change without the
538
+// object itself changing (e.g. when a database is renamed).
539
func (oc *optCatalog) FullyQualifiedName(
540
ctx context.Context, ds cat.DataSource,
541
) (cat.DataSourceName, error) {
0 commit comments