Skip to content

Commit

Permalink
license: added license header
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatczuk committed Sep 21, 2017
1 parent 0b29eb5 commit 9e40fcf
Show file tree
Hide file tree
Showing 30 changed files with 120 additions and 0 deletions.
4 changes: 4 additions & 0 deletions benchmark_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// +build all integration

package gocqlx_test
Expand Down
4 changes: 4 additions & 0 deletions common_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package gocqlx_test

import (
Expand Down
4 changes: 4 additions & 0 deletions doc.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// Package gocqlx is a productivity toolkit for ScyllaDB and Apache Cassandra®.
// It's an extension of `gocql`, similar to what `sqlx` is to `database/sql`.
//
Expand Down
4 changes: 4 additions & 0 deletions example_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// +build all integration

package gocqlx_test
Expand Down
4 changes: 4 additions & 0 deletions gocqlx.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package gocqlx

import (
Expand Down
4 changes: 4 additions & 0 deletions integration_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// +build all integration

package gocqlx_test
Expand Down
4 changes: 4 additions & 0 deletions iterx.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package gocqlx

import (
Expand Down
4 changes: 4 additions & 0 deletions mapper.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package gocqlx

import (
Expand Down
4 changes: 4 additions & 0 deletions mapper_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// +build !integration

package gocqlx
Expand Down
4 changes: 4 additions & 0 deletions qb/batch.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/batch_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/cmp.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// Functions reference:
Expand Down
4 changes: 4 additions & 0 deletions qb/cmp_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/delete.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// DELETE reference:
Expand Down
4 changes: 4 additions & 0 deletions qb/delete_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/doc.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// Package qb provides CQL query builders. The builders create CQL statement
// and a list of named parameters that can later be bound using
// github.com/scylladb/gocqlx.
Expand Down
4 changes: 4 additions & 0 deletions qb/expr.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/insert.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// INSERT reference:
Expand Down
4 changes: 4 additions & 0 deletions qb/insert_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/qb.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// Builder is interface implemented by all the builders.
Expand Down
4 changes: 4 additions & 0 deletions qb/select.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// SELECT reference:
Expand Down
4 changes: 4 additions & 0 deletions qb/select_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/token.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/token_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/update.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

// UPDATE reference:
Expand Down
4 changes: 4 additions & 0 deletions qb/update_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/utils.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions qb/utils_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package qb

import (
Expand Down
4 changes: 4 additions & 0 deletions queryx.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

package gocqlx

import (
Expand Down
4 changes: 4 additions & 0 deletions queryx_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.

// +build !integration

package gocqlx
Expand Down

0 comments on commit 9e40fcf

Please sign in to comment.