File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/houqp/gtest v1.0.0
7
7
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
8
- github.com/lfittl/pg_query_go v1.0.0
9
8
github.com/logrusorgru/aurora v0.0.0-20191116043053-66b7ad493a23
10
9
github.com/pelletier/go-toml v1.6.0
10
+ github.com/pganalyze/pg_query_go v1.0.3 // indirect
11
11
github.com/sirupsen/logrus v1.4.2
12
12
github.com/spf13/cobra v0.0.5
13
13
github.com/spf13/pflag v1.0.5 // indirect
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3
23
23
github.com/konsorten/go-windows-terminal-sequences v1.0.2 /go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ =
24
24
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI =
25
25
github.com/kr/pretty v0.1.0 /go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo =
26
+ github.com/kr/pretty v0.2.1 /go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI =
26
27
github.com/kr/pty v1.1.1 /go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ =
27
28
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE =
28
29
github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
@@ -36,6 +37,8 @@ github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh
36
37
github.com/pelletier/go-toml v1.2.0 /go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic =
37
38
github.com/pelletier/go-toml v1.6.0 h1:aetoXYr0Tv7xRU/V4B4IZJ2QcbtMUFoNb3ORp7TzIK4 =
38
39
github.com/pelletier/go-toml v1.6.0 /go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys =
40
+ github.com/pganalyze/pg_query_go v1.0.3 h1:cur7WhCeA63mUD3Y/hZCl4QbU8NudQr1tIZV/ctsXCQ =
41
+ github.com/pganalyze/pg_query_go v1.0.3 /go.mod h1:tR53lU3ddnExxb0XeLyYuQIK3dkR03FjQ9sj8AV/up8 =
39
42
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
40
43
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
41
44
github.com/russross/blackfriday v1.5.2 /go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g =
Original file line number Diff line number Diff line change 4
4
"io/ioutil"
5
5
"strings"
6
6
7
- pg_query "github.com/lfittl /pg_query_go"
8
- nodes "github.com/lfittl /pg_query_go/nodes"
7
+ pg_query "github.com/pganalyze /pg_query_go"
8
+ nodes "github.com/pganalyze /pg_query_go/nodes"
9
9
)
10
10
11
11
// func debugNode(n nodes.Node) {
Original file line number Diff line number Diff line change 6
6
"fmt"
7
7
"reflect"
8
8
9
- pg_query "github.com/lfittl /pg_query_go"
10
- nodes "github.com/lfittl /pg_query_go/nodes"
9
+ pg_query "github.com/pganalyze /pg_query_go"
10
+ nodes "github.com/pganalyze /pg_query_go/nodes"
11
11
12
12
"github.com/houqp/sqlvet/pkg/schema"
13
13
)
You can’t perform that action at this time.
0 commit comments