This is an automated email from the ASF dual-hosted git repository.
jiacai2050 pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-horaedb-client-go.git
The following commit(s) were added to refs/heads/main by this push:
new fcd42e0 chore: drop the final refs to ceresdb (#50)
fcd42e0 is described below
commit fcd42e09340018d67e18c7a273ccbb937e0c10c9
Author: tison <[email protected]>
AuthorDate: Thu Apr 25 12:33:34 2024 +0800
chore: drop the final refs to ceresdb (#50)
---
README.md | 5 +++--
go.mod | 2 +-
go.sum | 4 ++--
horaedb/rpc.go | 2 +-
4 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index f658b9c..98a8539 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# HoraeDB Golang Client
+# Apache HoraeDB (Incubating) Golang Client
[](https://github.com/apache/incubator-horaedb-client-go/actions/workflows/CI.yml)
[](https://pkg.go.dev/github.com/apache/incubator-horaedb-client-go)
@@ -6,9 +6,10 @@
## Introduction
-Golang client for [HoraeDB](https://github.com/apache/incubator-horaedb).
+Golang client for [Apache
HoraeDB](https://github.com/apache/incubator-horaedb).
## Support features
+
- DDL, such as create/alter table
- Write and query support in both standalone and cluster mode
diff --git a/go.mod b/go.mod
index 04dc549..7bc3a71 100644
--- a/go.mod
+++ b/go.mod
@@ -3,8 +3,8 @@ module github.com/apache/horaedb-client-go
go 1.17
require (
- github.com/CeresDB/horaedbproto/golang
v0.0.0-20231129131648-5d5d868218c3
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40
+ github.com/apache/incubator-horaedb-proto/golang
v0.0.0-20240220091914-b5a6581e80d1
github.com/hashicorp/golang-lru v1.0.2
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
diff --git a/go.sum b/go.sum
index 14e39e4..a950e42 100644
--- a/go.sum
+++ b/go.sum
@@ -4,12 +4,12 @@ dmitri.shuralyov.com/gpu/mtl
v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7
gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod
h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8=
github.com/BurntSushi/toml v0.3.1/go.mod
h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod
h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
-github.com/CeresDB/horaedbproto/golang v0.0.0-20231129131648-5d5d868218c3
h1:RgOKVfdbnF4W5/TVFf7cIahom5HcV1v0GP2BYDc0BEM=
-github.com/CeresDB/horaedbproto/golang
v0.0.0-20231129131648-5d5d868218c3/go.mod
h1:RHgzmQBZC4P5+Jm58flXMynMFGbiVQrw1t2ce3wLVas=
github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod
h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw=
github.com/antihax/optional v1.0.0/go.mod
h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40
h1:q4dksr6ICHXqG5hm0ZW5IHyeEJXoIJSOZeBLmWPNeIQ=
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40/go.mod
h1:Q7yQnSMnLvcXlZ8RV+jwz/6y1rQTqbX6C82SndT52Zs=
+github.com/apache/incubator-horaedb-proto/golang
v0.0.0-20240220091914-b5a6581e80d1
h1:K0feHm/53jaVfGh6vNg0DP3gxQ7cS3Q2oAAWdOfntq8=
+github.com/apache/incubator-horaedb-proto/golang
v0.0.0-20240220091914-b5a6581e80d1/go.mod
h1:Ch92HPIAoGbrgFCtpSgxcYSRgWdpNsIcPG1lfv24Ufs=
github.com/boombuler/barcode v1.0.0/go.mod
h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod
h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/cespare/xxhash/v2 v2.1.1/go.mod
h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
diff --git a/horaedb/rpc.go b/horaedb/rpc.go
index 610cbc0..494b8bd 100644
--- a/horaedb/rpc.go
+++ b/horaedb/rpc.go
@@ -27,10 +27,10 @@ import (
"io"
"sync"
- "github.com/CeresDB/horaedbproto/golang/pkg/storagepb"
"github.com/apache/arrow/go/arrow"
"github.com/apache/arrow/go/arrow/array"
"github.com/apache/arrow/go/arrow/ipc"
+ "github.com/apache/incubator-horaedb-proto/golang/pkg/storagepb"
"github.com/klauspost/compress/zstd"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]