This commit is contained in:
Chris Lu
2019-03-30 23:09:16 -07:00
parent 97406333a5
commit 78ac2bef3c
7 changed files with 18 additions and 18 deletions

View File

@@ -40,13 +40,13 @@ func (store *CassandraStore) initialize(keyspace string, hosts []string) (err er
return
}
func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error){
func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil
}
func (store *CassandraStore) CommitTransaction(ctx context.Context) error{
func (store *CassandraStore) CommitTransaction(ctx context.Context) error {
return nil
}
func (store *CassandraStore) RollbackTransaction(ctx context.Context) error{
func (store *CassandraStore) RollbackTransaction(ctx context.Context) error {
return nil
}