private static bool?GetDefaultIsClustered(
            [NotNull] IKey key,
            [NotNull] string tableName,
            [CanBeNull] string schema)
        {
            var sharedTableRootKey = key.FindSharedTableRootKey(tableName, schema);

            return(sharedTableRootKey?.IsClustered(tableName, schema));
        }