示例#1
0
    public override async ValueTask <ArrayBase> CreateArrayAsync(long handle, string tableName, string fieldName, CancellationToken cancellationToken = default)
    {
        var array = new FesArray(_db, _transaction, handle, tableName, fieldName);
        await array.InitializeAsync(cancellationToken).ConfigureAwait(false);

        return(array);
    }