Merge pull request #9 from scylladb/mmt/asf_tm

notice update
This commit is contained in:
Michał Matczuk
2017-08-24 12:22:26 +02:00
committed by GitHub
4 changed files with 22 additions and 13 deletions

6
NOTICE
View File

@@ -1,6 +0,0 @@
gocqlx Copyright 2017 ScyllDB
This work contains software from:
* gocql project (https://github.com/gocql/gocql), licensed under the BSD license
* sqlx project (https://github.com/jmoiron/sqlx), licensed under the MIT license

View File

@@ -1,7 +1,7 @@
# gocqlx [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/scylladb/gocqlx) [![Go Report Card](https://goreportcard.com/badge/github.com/scylladb/gocqlx)](https://goreportcard.com/report/github.com/scylladb/gocqlx) [![Build Status](https://travis-ci.org/scylladb/gocqlx.svg?branch=master)](https://travis-ci.org/scylladb/gocqlx) # gocqlx [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/scylladb/gocqlx) [![Go Report Card](https://goreportcard.com/badge/github.com/scylladb/gocqlx)](https://goreportcard.com/report/github.com/scylladb/gocqlx) [![Build Status](https://travis-ci.org/scylladb/gocqlx.svg?branch=master)](https://travis-ci.org/scylladb/gocqlx)
Package `gocqlx` is a Scylla / Cassandra productivity toolkit for `gocql`. It's Package `gocqlx` is a productivity toolkit for ScyllaDB and Apache Cassandra®.
similar to what `sqlx` is to `database/sql`. It's an extension of `gocql`, similar to what `sqlx` is to `database/sql`.
It contains wrappers over `gocql` types that provide convenience methods which It contains wrappers over `gocql` types that provide convenience methods which
are useful in the development of database driven applications. Under the are useful in the development of database driven applications. Under the
@@ -118,3 +118,18 @@ BenchmarkE2EGocqlxSelect-4 30000 2637187 ns/op 27718
``` ```
See the [benchmark here](https://github.com/scylladb/gocqlx/blob/master/benchmark_test.go). See the [benchmark here](https://github.com/scylladb/gocqlx/blob/master/benchmark_test.go).
## Notice
Copyright (C) 2017 ScyllaDB
gocqlx is distributed under the Apache 2.0 license. See the [LICENSE](https://github.com/scylladb/gocqlx/blob/master/LICENSE) file for details.
This work contains software from:
* [gocql project](https://github.com/gocql/gocql), licensed under the BSD license
* [sqlx project](https://github.com/jmoiron/sqlx), licensed under the MIT license
Apache®, Apache Cassandra®, are either registered trademarks or trademarks of
the Apache Software Foundation in the United States and/or other countries.
No endorsement by The Apache Software Foundation is implied by the use of these marks.

4
doc.go
View File

@@ -1,5 +1,5 @@
// Package gocqlx is a Scylla / Cassandra productivity toolkit for `gocql`. It's // Package gocqlx is a productivity toolkit for ScyllaDB and Apache Cassandra®.
// similar to what `sqlx` is to `database/sql`. // It's an extension of `gocql`, similar to what `sqlx` is to `database/sql`.
// //
// It contains wrappers over gocql types that provide convenience methods which // It contains wrappers over gocql types that provide convenience methods which
// are useful in the development of database driven applications. Under the // are useful in the development of database driven applications. Under the

View File

@@ -1,4 +1,4 @@
// Package qb provides CQL (Scylla / Cassandra query language) query builders. // Package qb provides CQL query builders. The builders create CQL statement
// The builders create CQL statement and a list of named parameters that can // and a list of named parameters that can later be bound using
// later be bound using github.com/scylladb/gocqlx. // github.com/scylladb/gocqlx.
package qb package qb