Skip to content

Commit 4b8a70f

Browse files
committed
lint
1 parent 05882c8 commit 4b8a70f

File tree

100 files changed

+284
-284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+284
-284
lines changed

agent/agent.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Agent
1+
package agent
22

33
import (
44
"context"
@@ -11,8 +11,8 @@ import (
1111
"time"
1212

1313
"github.com/kardianos/osext"
14-
"github.com/xitongsys/guery/Config"
15-
"github.com/xitongsys/guery/Logger"
14+
"github.com/xitongsys/guery/config"
15+
"github.com/xitongsys/guery/logger"
1616
"github.com/xitongsys/guery/pb"
1717
"google.golang.org/grpc"
1818
)

agent/heartbeat.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package Agent
1+
package agent
22

33
import (
44
"context"
55
"io"
66
"time"
77

8-
"github.com/xitongsys/guery/Logger"
8+
"github.com/xitongsys/guery/logger"
99
"github.com/xitongsys/guery/pb"
1010
"google.golang.org/grpc"
1111
)

agent/info.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package Agent
1+
package agent
22

33
import (
44
"time"
55

66
"github.com/shirou/gopsutil/cpu"
77
"github.com/shirou/gopsutil/mem"
8-
"github.com/xitongsys/guery/Util"
98
"github.com/xitongsys/guery/pb"
9+
"github.com/xitongsys/guery/util"
1010
)
1111

1212
func (self *Agent) GetInfo() *pb.AgentHeartbeat {

agent/setup_channels.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Agent
1+
package agent
22

33
import (
44
"context"

agent/task.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Agent
1+
package agent
22

33
import (
44
"fmt"

agent/topology.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Agent
1+
package agent
22

33
import (
44
"context"

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Config
1+
package config
22

33
import (
44
"encoding/json"

config/config_file_connector.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Config
1+
package config
22

33
type FileConnectorConfig struct {
44
Catalog string

config/config_hive_connector.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Config
1+
package config
22

33
import (
44
"fmt"

config/config_runtime.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Config
1+
package config
22

33
import ()
44

config/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Config
1+
package config
22

33
func WildcardMatch(s, p string) bool {
44
ls, lp := len(s), len(p)

eplan/scan.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package eplan
22

33
import (
4-
"github.com/xitongsys/guery/FileSystem/partition"
4+
"github.com/xitongsys/guery/filesystem/partition"
55
"github.com/xitongsys/guery/metadata"
66
"github.com/xitongsys/guery/pb"
77
. "github.com/xitongsys/guery/plan"

gtype/binary_read.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"io"

gtype/binary_write.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"io"

gtype/gtype.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"fmt"

gtype/gtype_data.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"fmt"

gtype/gtype_data_operator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import ()
44

gtype/gtype_date.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"time"

gtype/gtype_timestamp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"time"

gtype/to_binary.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"fmt"

gtype/to_key_string.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"fmt"

gtype/value_decode.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"bytes"

gtype/value_encode.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Type
1+
package gtype
22

33
import (
44
"bytes"

logger/logger.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Logger
1+
package logger
22

33
import (
44
"os"

main/guery.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"os"
66

77
"github.com/satori/go.uuid"
8-
"github.com/xitongsys/guery/Agent"
9-
"github.com/xitongsys/guery/Config"
10-
"github.com/xitongsys/guery/Executor"
11-
"github.com/xitongsys/guery/Logger"
12-
"github.com/xitongsys/guery/Master"
8+
"github.com/xitongsys/guery/agent"
9+
"github.com/xitongsys/guery/config"
10+
"github.com/xitongsys/guery/executor"
11+
"github.com/xitongsys/guery/logger"
12+
"github.com/xitongsys/guery/master"
1313
"gopkg.in/alecthomas/kingpin.v2"
1414
)
1515

master/control_handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package Master
1+
package master
22

33
import (
44
"fmt"
55
"log"
66
"net/http"
77

8-
"github.com/xitongsys/guery/Logger"
8+
"github.com/xitongsys/guery/logger"
99
)
1010

1111
func (self *Master) ControlHandler(response http.ResponseWriter, request *http.Request) {

master/master.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Master
1+
package master
22

33
import (
44
"io"
@@ -9,10 +9,10 @@ import (
99

1010
"github.com/gorilla/mux"
1111
"github.com/soheilhy/cmux"
12-
"github.com/xitongsys/guery/Logger"
13-
"github.com/xitongsys/guery/Scheduler"
14-
"github.com/xitongsys/guery/Topology"
12+
"github.com/xitongsys/guery/logger"
1513
"github.com/xitongsys/guery/pb"
14+
"github.com/xitongsys/guery/scheduler"
15+
"github.com/xitongsys/guery/topology"
1616
"google.golang.org/grpc"
1717
)
1818

master/query.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package Master
1+
package master
22

33
import (
44
"fmt"
55
"net/http"
66

7-
"github.com/xitongsys/guery/Config"
8-
"github.com/xitongsys/guery/Logger"
7+
"github.com/xitongsys/guery/config"
8+
"github.com/xitongsys/guery/logger"
99
)
1010

1111
func (self *Master) QueryHandler(response http.ResponseWriter, request *http.Request) {

master/ui_agent_info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Master
1+
package master
22

33
import ()
44

master/ui_cluster_info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Master
1+
package master
22

33
import ()
44

master/ui_handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Master
1+
package master
22

33
import (
44
"encoding/json"
@@ -7,7 +7,7 @@ import (
77
"net/http"
88
"strings"
99

10-
"github.com/xitongsys/guery/Logger"
10+
"github.com/xitongsys/guery/logger"
1111
)
1212

1313
func (self *Master) GetInfoHandler(response http.ResponseWriter, resquest *http.Request) {

master/ui_info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Master
1+
package master
22

33
import ()
44

master/ui_task_info.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package Master
1+
package master
22

33
import (
44
"bytes"
55
"fmt"
66
"math"
77

8-
"github.com/xitongsys/guery/EPlan"
9-
"github.com/xitongsys/guery/Scheduler"
8+
"github.com/xitongsys/guery/eplan"
9+
"github.com/xitongsys/guery/scheduler"
1010
"github.com/xitongsys/svgo"
1111
)
1212

optimizer/delete_rename_node.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
4-
"github.com/xitongsys/guery/Plan"
4+
"github.com/xitongsys/guery/plan"
55
)
66

77
func DeleteRenameNode(node Plan.PlanNode) error {

optimizer/extract_agg_func.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
4-
"github.com/xitongsys/guery/Config"
5-
"github.com/xitongsys/guery/Plan"
4+
"github.com/xitongsys/guery/config"
5+
"github.com/xitongsys/guery/plan"
66
)
77

88
func ExtractAggFunc(runtime *Config.ConfigRuntime, node Plan.PlanNode) error {

optimizer/filter_columns.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
44
"fmt"
55
"sort"
66

7-
"github.com/xitongsys/guery/Metadata"
8-
"github.com/xitongsys/guery/Plan"
7+
"github.com/xitongsys/guery/metadata"
8+
"github.com/xitongsys/guery/plan"
99
)
1010

1111
func FilterColumns(node Plan.PlanNode, columns []string) error {

optimizer/hash_join.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
4-
"github.com/xitongsys/guery/Config"
5-
"github.com/xitongsys/guery/Plan"
6-
"github.com/xitongsys/guery/Type"
4+
"github.com/xitongsys/guery/config"
5+
"github.com/xitongsys/guery/gtype"
6+
"github.com/xitongsys/guery/plan"
77
)
88

99
func GetJoinKeys(leftInput, rightInput Plan.PlanNode, e *Plan.BooleanExpressionNode) (*Plan.ValueExpressionNode, *Plan.ValueExpressionNode, bool) {

optimizer/optimizer.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
44
"fmt"
55
"runtime/debug"
66

77
"github.com/antlr/antlr4/runtime/Go/antlr"
8-
"github.com/xitongsys/guery/Config"
9-
"github.com/xitongsys/guery/Plan"
8+
"github.com/xitongsys/guery/config"
109
"github.com/xitongsys/guery/parser"
10+
"github.com/xitongsys/guery/plan"
1111
)
1212

1313
func CreateLogicalTree(runtime *Config.ConfigRuntime, sqlStr string) (node Plan.PlanNode, err error) {

optimizer/predicate_pushdown.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package Optimizer
1+
package optimizer
22

33
import (
4-
"github.com/xitongsys/guery/Plan"
5-
"github.com/xitongsys/guery/Type"
4+
"github.com/xitongsys/guery/plan"
5+
"github.com/xitongsys/guery/type"
66
)
77

88
func ExtractPredicates(node *Plan.BooleanExpressionNode, t Type.Operator) []*Plan.BooleanExpressionNode {

plan/boolean_expression.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package Plan
1+
package plan
22

33
import (
44
"fmt"
55

6-
"github.com/xitongsys/guery/Config"
7-
"github.com/xitongsys/guery/Metadata"
8-
"github.com/xitongsys/guery/Row"
9-
"github.com/xitongsys/guery/Type"
6+
"github.com/xitongsys/guery/config"
7+
"github.com/xitongsys/guery/gtype"
8+
"github.com/xitongsys/guery/metadata"
109
"github.com/xitongsys/guery/parser"
10+
"github.com/xitongsys/guery/row"
1111
)
1212

1313
type BooleanExpressionNode struct {

0 commit comments

Comments
 (0)