From 119e4d66c6484698891b2c74f292a9533bda6c3a Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 19 Dec 2020 22:01:49 -0500 Subject: [PATCH] spelling: indices Signed-off-by: Josh Soref --- storage/sql/sql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/sql/sql.go b/storage/sql/sql.go index 4f1ed6c9..0a292169 100644 --- a/storage/sql/sql.go +++ b/storage/sql/sql.go @@ -90,7 +90,7 @@ var ( // Translate types. {matchLiteral("bytea"), "blob"}, {matchLiteral("timestamptz"), "datetime(3)"}, - // MySQL doesn't support indicies on text fields w/o + // MySQL doesn't support indices on text fields w/o // specifying key length. Use varchar instead (767 byte // is the max key length for InnoDB with 4k pages). // For compound indexes (with two keys) even less.