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 3f59479 commit 862fc1fCopy full SHA for 862fc1f
1 file changed
core/relations.go
@@ -60,7 +60,7 @@ func GetRelationType(ctx *sql.Context, schema string, relation string) (Relation
60
// GetRelationTypeFromRoot performs the same function as GetRelationType, except that it uses the given root rather than
61
// the working session's root.
62
func GetRelationTypeFromRoot(ctx *sql.Context, schema string, relation string, root *RootValue) (RelationType, error) {
63
- // Check tables and temporary tables first
+ // Check regular and temporary tables first
64
ok, err := root.HasTable(ctx, doltdb.TableName{Schema: schema, Name: relation})
65
if err != nil {
66
return RelationType_DoesNotExist, err
0 commit comments