Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

add overloads with ttl parameter to Insert functions on ICqlWriteClient and… #192

Closed
wants to merge 4 commits into from

Conversation

collinsauve
Copy link
Contributor

For https://datastax-oss.atlassian.net/browse/CSHARP-395 (Mapper: Support TTL and timestamp)

When trying to implement this, I was looking at what CqlQueryOptions is used for. These properties are typically used to decorate an IStatement. In this case I believe the ttl is only put into the actual query, rather than serializing it into query_parameters.

Also considering that:

  • CqlQueryOptions is mainly write-only
  • Currently the only way to read from it is to call CopyOptionsToStatement(IStatement)
  • Ttl does not belong on the statement

I would need to break this quasi-write-only idiom in order to read from Mapper and CqlBatch.

If you still feel ttl should be on CqlQueryOptions, let me know and I'll file a new PR.

@collinsauve
Copy link
Contributor Author

This might be a dupe of #90, however the comments there by @jorgebay indicate that this is undesired on IMapper/CqlQueryOptions and we should use the linq component instead. This contradicts CSHARP-395.

I will review how to do this using the linq component. Perhaps this is not necessary.

@@ -29,14 +29,14 @@ public CqlBatch(MapperFactory mapperFactory, CqlGenerator cqlGenerator)
_statements = new List<Cql>();
}

public void Insert<T>(T poco, CqlQueryOptions queryOptions = null)
public void Insert<T>(T poco, CqlQueryOptions queryOptions = null, int? ttl = null)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Creating a new parameter (even if its with a default value) is a binary break, we must expose it as an overload if we want to deliver it in a minor / patch version: http://stackoverflow.com/questions/1456785/a-definitive-guide-to-api-breaking-changes-in-net

@jorgebay
Copy link
Contributor

Good call for making this only available for the insert methods, as those relies on query generation. Update methods can include it within the query.

Apart from the methods overload comment, looks good to me.

I will create a separate ticket for timestamp support in the mapper, that do belong at CqlQueryOptions level.

…nt and ICqlWriteAsyncClient (fixes CSHARP-395)
@collinsauve
Copy link
Contributor Author

Updated PR with new overloads. If I overload and add it as optional I get a R# warning that

Method with optional parameter is hidden by overload

Not exactly a fatal warning, but thought I'd take the hint and not overload with optionals. I'll defer to your judgement if these signatures are correct. I'm fine reworking them if you'd like.

@collinsauve collinsauve changed the title add optional ttl parameter to Insert functions on ICqlWriteClient and… add overloads with ttl parameter to Insert functions on ICqlWriteClient and… Feb 17, 2016
@collinsauve
Copy link
Contributor Author

Good call for making this only available for the insert methods, as those relies on query generation. Update methods can include it within the query.

@jorgebay I only excluded it because currently we do not have a requirement to set TTL on update.

Thinking about it more closely I'm actually not sure I agree that it should be excluded :) although maybe I'll do another PR to keep this one simpler.

Those that are using the mapper for the poco->Cql generation may wish to set TTL on update. This is my reasoning for wanting TTL on insert - I don't want people to have to craft their own CQL for inserts.

@jorgebay
Copy link
Contributor

Thinking about it more closely I'm actually not sure I agree that it should be excluded :)

Remember that users can specify the query in the Update() method of the mapper.

mapper.Update("UPDATE tbl SET x = ? WHERE id = ? TTL ?", x, id, ttl);

@@ -468,6 +483,11 @@ public AppliedInfo<T> InsertIfNotExists<T>(T poco, bool insertNulls, CqlQueryOpt
return TaskHelper.WaitToComplete(InsertIfNotExistsAsync(poco, insertNulls, queryOptions), _queryAbortTimeout);
}

public AppliedInfo<T> InsertIfNotExists<T>(T poco, bool insertNulls, int? ttl, CqlQueryOptions queryOptions = null)
{
throw new NotImplementedException();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not implemented...

@collinsauve
Copy link
Contributor Author

Pushed new commits to address the issues raised by @jorgebay.

@jorgebay
Copy link
Contributor

Added a few tests (58b448e) and landed in 43c5a8e.

Thanks!

@jorgebay jorgebay closed this Feb 22, 2016
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants