Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 43048aa

Browse files
committed
Merge from main
2 parents faa0568 + 3079be7 commit 43048aa

File tree

5 files changed

+232
-161
lines changed

5 files changed

+232
-161
lines changed

CqlSharp/CqlCommand.cs

+14-15
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public CqlCommand(CqlConnection connection, string cql = "", CqlConsistency leve
6060
_load = 1;
6161
_useBuffering = connection.Config.UseBuffering;
6262
_commandType = CommandType.Text;
63-
_commandTimeout = 30;
63+
_commandTimeout = connection.Config.CommandTimeout;
6464
}
6565

6666
/// <summary>
@@ -78,8 +78,10 @@ public CqlCommand(IDbConnection connection, string cql = "", CqlConsistency leve
7878
/// Initializes a new instance of the <see cref="CqlCommand" /> class.
7979
/// </summary>
8080
public CqlCommand()
81-
: this(null)
8281
{
82+
_prepared = false;
83+
_load = 1;
84+
_commandType = CommandType.Text;
8385
}
8486

8587
/// <summary>
@@ -439,7 +441,7 @@ private CancellationToken SetupCancellationToken()
439441
//setup new token
440442
_cancelTokenSource = CommandTimeout > 0
441443
? new CancellationTokenSource(CommandTimeout*1000)
442-
: new CancellationTokenSource();
444+
: new CancellationTokenSource();
443445
return _cancelTokenSource.Token;
444446
}
445447

@@ -525,7 +527,7 @@ protected override async Task<DbDataReader> ExecuteDbDataReaderAsync(CommandBeha
525527
/// <param name="cancellationToken"> The cancellation token. </param>
526528
/// <returns> </returns>
527529
public new virtual async Task<CqlDataReader> ExecuteReaderAsync(CommandBehavior behavior,
528-
CancellationToken cancellationToken)
530+
CancellationToken cancellationToken)
529531
{
530532
var result = await ExecuteReaderAsyncInternal(behavior, cancellationToken).ConfigureAwait(false);
531533

@@ -640,8 +642,8 @@ internal async Task<ResultFrame> ExecuteReaderAsyncInternal(CommandBehavior beha
640642
UseBuffering = false;
641643

642644
if(behavior.HasFlag(CommandBehavior.KeyInfo) ||
643-
behavior.HasFlag(CommandBehavior.SchemaOnly) ||
644-
behavior.HasFlag(CommandBehavior.SingleRow))
645+
behavior.HasFlag(CommandBehavior.SchemaOnly) ||
646+
behavior.HasFlag(CommandBehavior.SingleRow))
645647
{
646648
var ex = new ArgumentException("Command behavior not supported", "behavior");
647649
_queryResult = new CqlError(ex);
@@ -958,9 +960,6 @@ private void FinalizePrepare(ResultFrame result, bool fromCache)
958960
/// <returns> </returns>
959961
private async Task PrepareAsyncInternal(CancellationToken token, Logger logger)
960962
{
961-
//continue?
962-
token.ThrowIfCancellationRequested();
963-
964963
logger.LogVerbose("Waiting on Throttle");
965964

966965
//wait until allowed
@@ -1020,7 +1019,7 @@ private async Task<ResultFrame> RunWithRetry(
10201019
{
10211020
//set correct database if necessary
10221021
if(!string.IsNullOrWhiteSpace(_connection.Database) &&
1023-
!_connection.Database.Equals(connection.CurrentKeySpace))
1022+
!_connection.Database.Equals(connection.CurrentKeySpace))
10241023
{
10251024
var useQuery = "use \"" + _connection.Database.Trim() + "\";";
10261025

@@ -1239,11 +1238,11 @@ private bool EnlistInTransactionIfAny()
12391238
if(Transaction != null)
12401239
{
12411240
var batchedCommand = new BatchFrame.BatchedCommand
1242-
{
1243-
IsPrepared = IsPrepared,
1244-
CqlQuery = Query,
1241+
{
1242+
IsPrepared = IsPrepared,
1243+
CqlQuery = Query,
12451244
ParameterValues = HasParameters ? Parameters.Serialize() : null
1246-
};
1245+
};
12471246

12481247
Transaction.Commands.Add(batchedCommand);
12491248

@@ -1303,4 +1302,4 @@ private async Task<ResultFrame> SendBatchAsync(Connection connection, Logger log
13031302

13041303
#endregion
13051304
}
1306-
}
1305+
}

0 commit comments

Comments
 (0)