diff --git a/go/libraries/doltcore/sqle/writer/prolly_index_writer.go b/go/libraries/doltcore/sqle/writer/prolly_index_writer.go index 23613721bc..770d25e6fb 100644 --- a/go/libraries/doltcore/sqle/writer/prolly_index_writer.go +++ b/go/libraries/doltcore/sqle/writer/prolly_index_writer.go @@ -247,7 +247,6 @@ type prollySecondaryIndexWriter struct { name string mut *prolly.MutableMap unique bool - spatial bool prefixLengths []uint16 // number of indexed cols diff --git a/go/libraries/doltcore/sqle/writer/prolly_table_writer.go b/go/libraries/doltcore/sqle/writer/prolly_table_writer.go index a3a7e5d58b..11fbe84f44 100755 --- a/go/libraries/doltcore/sqle/writer/prolly_table_writer.go +++ b/go/libraries/doltcore/sqle/writer/prolly_table_writer.go @@ -81,7 +81,6 @@ func getSecondaryProllyIndexWriters(ctx context.Context, t *doltdb.Table, sqlSch name: defName, mut: idxMap.Mutate(), unique: def.IsUnique(), - spatial: def.IsSpatial(), prefixLengths: def.PrefixLengths(), idxCols: def.Count(), keyMap: keyMap,