summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/lib/pq
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-23 16:02:16 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-23 16:02:16 -0800
commit2639452967e66c4840164c36817234d3e7c12ac1 (patch)
tree3f43e2778e7ff934a60eece0b9a2aede55431ce8 /Godeps/_workspace/src/github.com/lib/pq
parent4f4cd5e63573da4d6edcc7d4213afaca67c19f88 (diff)
downloadchat-2639452967e66c4840164c36817234d3e7c12ac1.tar.gz
chat-2639452967e66c4840164c36817234d3e7c12ac1.tar.bz2
chat-2639452967e66c4840164c36817234d3e7c12ac1.zip
Fixing godep
Diffstat (limited to 'Godeps/_workspace/src/github.com/lib/pq')
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/bench_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/buf.go2
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/conn.go2
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/encode.go2
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/encode_test.go12
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/lib/pq/oid/gen.go2
7 files changed, 12 insertions, 12 deletions
diff --git a/Godeps/_workspace/src/github.com/lib/pq/bench_test.go b/Godeps/_workspace/src/github.com/lib/pq/bench_test.go
index 8ceadc69b..e71f41d06 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/bench_test.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/bench_test.go
@@ -17,7 +17,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
+ "github.com/lib/pq/oid"
)
var (
diff --git a/Godeps/_workspace/src/github.com/lib/pq/buf.go b/Godeps/_workspace/src/github.com/lib/pq/buf.go
index fd7a3c573..666b0012a 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/buf.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/buf.go
@@ -4,7 +4,7 @@ import (
"bytes"
"encoding/binary"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
+ "github.com/lib/pq/oid"
)
type readBuf []byte
diff --git a/Godeps/_workspace/src/github.com/lib/pq/conn.go b/Godeps/_workspace/src/github.com/lib/pq/conn.go
index 7b9aa5dc9..ce661d66e 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/conn.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/conn.go
@@ -22,7 +22,7 @@ import (
"time"
"unicode"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
+ "github.com/lib/pq/oid"
)
// Common error types
diff --git a/Godeps/_workspace/src/github.com/lib/pq/encode.go b/Godeps/_workspace/src/github.com/lib/pq/encode.go
index a09f1a164..88422eb3d 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/encode.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/encode.go
@@ -12,7 +12,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
+ "github.com/lib/pq/oid"
)
func binaryEncode(parameterStatus *parameterStatus, x interface{}) []byte {
diff --git a/Godeps/_workspace/src/github.com/lib/pq/encode_test.go b/Godeps/_workspace/src/github.com/lib/pq/encode_test.go
index 3e2f490d7..97b663886 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/encode_test.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/encode_test.go
@@ -7,7 +7,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
+ "github.com/lib/pq/oid"
)
func TestScanTimestamp(t *testing.T) {
@@ -468,11 +468,11 @@ func TestBinaryByteSlicetoUUID(t *testing.T) {
db := openTestConn(t)
defer db.Close()
- b := []byte{'\xa0', '\xee', '\xbc', '\x99',
- '\x9c', '\x0b',
- '\x4e', '\xf8',
- '\xbb', '\x00', '\x6b',
- '\xb9', '\xbd', '\x38', '\x0a', '\x11'}
+ b := []byte{'\xa0','\xee','\xbc','\x99',
+ '\x9c', '\x0b',
+ '\x4e', '\xf8',
+ '\xbb', '\x00', '\x6b',
+ '\xb9', '\xbd', '\x38', '\x0a', '\x11'}
row := db.QueryRow("SELECT $1::uuid", b)
var result string
diff --git a/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go b/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go
index 219ba6626..c9c108fc3 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go
@@ -5,7 +5,7 @@ import (
"os"
"testing"
- _ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq"
+ _ "github.com/lib/pq"
)
type Fatalistic interface {
diff --git a/Godeps/_workspace/src/github.com/lib/pq/oid/gen.go b/Godeps/_workspace/src/github.com/lib/pq/oid/gen.go
index d59942047..cd4aea808 100644
--- a/Godeps/_workspace/src/github.com/lib/pq/oid/gen.go
+++ b/Godeps/_workspace/src/github.com/lib/pq/oid/gen.go
@@ -11,7 +11,7 @@ import (
"os"
"os/exec"
- _ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq"
+ _ "github.com/lib/pq"
)
func main() {