-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add MySQL protocol layer code #97
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 2021 PingCAP, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
include Makefile.common | ||
|
||
.PHONY: all clean test gotest server dev benchkv benchraw check checklist parser tidy ddltest | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove unnecessary items at the moment. |
||
|
||
default: server buildsucc | ||
|
||
PROJECT=tinysql | ||
GOPATH ?= $(shell go env GOPATH) | ||
P=8 | ||
|
||
# Ensure GOPATH is set before running build process. | ||
ifeq "$(GOPATH)" "" | ||
$(error Please set the environment variable GOPATH before running `make`) | ||
endif | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
FAIL_ON_STDOUT := awk '{ print } END { if (NR > 0) { exit 1 } }' | ||
|
||
CURDIR := $(shell pwd) | ||
path_to_add := $(addsuffix /bin,$(subst :,/bin:,$(GOPATH))):$(PWD)/tools/bin | ||
export PATH := $(path_to_add):$(PATH) | ||
|
||
GO := GO111MODULE=on go | ||
GOBUILD := $(GO) build $(BUILD_FLAG) -tags codes | ||
|
||
RACE_FLAG = | ||
ifeq ("$(WITH_RACE)", "1") | ||
RACE_FLAG = -race | ||
GOBUILD = GOPATH=$(GOPATH) $(GO) build | ||
endif | ||
|
||
buildsucc: | ||
@echo Build TinySQL Server successfully! | ||
|
||
server: | ||
CGO_ENABLED=1 $(GOBUILD) $(RACE_FLAG) -o bin/tinysql-server tinysql-server/main.go | ||
|
||
fmt: | ||
@echo "gofmt (simplify)" | ||
@gofmt -s -l -w $(FILES) 2>&1 | $(FAIL_ON_STDOUT) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# Copyright 2021 PingCAP, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
PROJECT=tinysql | ||
GOPATH ?= $(shell go env GOPATH) | ||
P=8 | ||
|
||
# Ensure GOPATH is set before running build process. | ||
ifeq "$(GOPATH)" "" | ||
$(error Please set the environment variable GOPATH before running `make`) | ||
endif | ||
FAIL_ON_STDOUT := awk '{ print } END { if (NR > 0) { exit 1 } }' | ||
Comment on lines
+16
to
+24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we should remove repeats in |
||
|
||
CURDIR := $(shell pwd) | ||
path_to_add := $(addsuffix /bin,$(subst :,/bin:,$(GOPATH))):$(PWD)/tools/bin | ||
export PATH := $(path_to_add):$(PATH) | ||
|
||
GO := GO111MODULE=on go | ||
GOBUILD := $(GO) build $(BUILD_FLAG) -tags codes | ||
GOBUILDCOVERAGE := GOPATH=$(GOPATH) cd tidb-server; $(GO) test -coverpkg="../..." -c . | ||
GOTEST := $(GO) test -p $(P) | ||
OVERALLS := GO111MODULE=on overalls | ||
STATICCHECK := GO111MODULE=on staticcheck | ||
TIDB_EDITION ?= Community | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or please tidy |
||
|
||
# Ensure TIDB_EDITION is set to Community or Enterprise before running build process. | ||
ifneq "$(TIDB_EDITION)" "Community" | ||
ifneq "$(TIDB_EDITION)" "Enterprise" | ||
$(error Please set the correct environment variable TIDB_EDITION before running `make`) | ||
endif | ||
endif | ||
|
||
ARCH := "`uname -s`" | ||
LINUX := "Linux" | ||
MAC := "Darwin" | ||
PACKAGE_LIST := go list ./... | ||
PACKAGES ?= $$($(PACKAGE_LIST)) | ||
PACKAGE_DIRECTORIES := $(PACKAGE_LIST) | sed 's|$(PROJECT)/||' | ||
FILES := $$(find $$($(PACKAGE_DIRECTORIES)) -name "*.go") | ||
UNCONVERT_PACKAGES_LIST := go list ./...| grep -vE "lightning\/checkpoints|lightning\/manual|lightning\/common" | ||
UNCONVERT_PACKAGES := $$($(UNCONVERT_PACKAGES_LIST)) | ||
|
||
FAILPOINT_ENABLE := $$(find $$PWD/ -type d | grep -vE "(\.git|tools)" | xargs tools/bin/failpoint-ctl enable) | ||
FAILPOINT_DISABLE := $$(find $$PWD/ -type d | grep -vE "(\.git|tools)" | xargs tools/bin/failpoint-ctl disable) | ||
|
||
LDFLAGS += -X "github.com/pingcap/parser/mysql.TiDBReleaseVersion=$(shell git describe --tags --dirty --always)" | ||
LDFLAGS += -X "github.com/pingcap/tidb/util/versioninfo.TiDBBuildTS=$(shell date -u '+%Y-%m-%d %H:%M:%S')" | ||
LDFLAGS += -X "github.com/pingcap/tidb/util/versioninfo.TiDBGitHash=$(shell git rev-parse HEAD)" | ||
LDFLAGS += -X "github.com/pingcap/tidb/util/versioninfo.TiDBGitBranch=$(shell git rev-parse --abbrev-ref HEAD)" | ||
LDFLAGS += -X "github.com/pingcap/tidb/util/versioninfo.TiDBEdition=$(TIDB_EDITION)" | ||
|
||
TEST_LDFLAGS = -X "github.com/pingcap/tidb/config.checkBeforeDropLDFlag=1" | ||
COVERAGE_SERVER_LDFLAGS = -X "github.com/pingcap/tidb/tidb-server.isCoverageServer=1" | ||
|
||
CHECK_LDFLAGS += $(LDFLAGS) ${TEST_LDFLAGS} | ||
|
||
TARGET = "" | ||
|
||
# VB = Vector Benchmark | ||
VB_FILE = | ||
VB_FUNC = | ||
|
||
RACE_FLAG = | ||
ifeq ("$(WITH_RACE)", "1") | ||
RACE_FLAG = -race | ||
GOBUILD = GOPATH=$(GOPATH) $(GO) build | ||
endif | ||
|
||
CHECK_FLAG = | ||
ifeq ("$(WITH_CHECK)", "1") | ||
CHECK_FLAG = $(TEST_LDFLAGS) | ||
endif | ||
|
||
BR_PKG := github.com/pingcap/tidb/br | ||
BR_PACKAGES := go list ./...| grep "github.com\/pingcap\/tidb\/br" | ||
LIGHTNING_BIN := bin/tidb-lightning | ||
LIGHTNING_CTL_BIN := bin/tidb-lightning-ctl | ||
BR_BIN := bin/br | ||
TEST_DIR := /tmp/backup_restore_test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see any of these lines necessary.