From 695666b60a225d866531c195c066d46cb384e002 Mon Sep 17 00:00:00 2001 From: zachmu Date: Thu, 16 Feb 2023 01:41:11 +0000 Subject: [PATCH] [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh --- go/libraries/doltcore/doltdb/system_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/libraries/doltcore/doltdb/system_table.go b/go/libraries/doltcore/doltdb/system_table.go index abc4a42aa3..9ef6b10f33 100644 --- a/go/libraries/doltcore/doltdb/system_table.go +++ b/go/libraries/doltcore/doltdb/system_table.go @@ -66,7 +66,7 @@ func IsReadOnlySystemTable(name string) bool { return HasDoltPrefix(name) && !set.NewStrSet(writeableSystemTables).Contains(name) } -// IsNonAlterableSystemTable returns whether the table name given is a system table that cannot be dropped or altered +// IsNonAlterableSystemTable returns whether the table name given is a system table that cannot be dropped or altered // by the user. func IsNonAlterableSystemTable(name string) bool { return IsReadOnlySystemTable(name) || strings.ToLower(name) == SchemasTableName