Skip to content

Commit acb0ed4

Browse files
add add/remove column stress test
1 parent 57d8f26 commit acb0ed4

File tree

5 files changed

+900
-0
lines changed

5 files changed

+900
-0
lines changed

test/columns/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
columns

test/columns/go.mod

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
module github.com/codenotary/immudb/test/columns
2+
3+
go 1.20
4+
5+
require github.com/codenotary/immudb v1.5.0
6+
7+
require (
8+
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
9+
github.com/aead/chacha20poly1305 v0.0.0-20201124145622-1a5aba2a8b29 // indirect
10+
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
11+
github.com/beorn7/perks v1.0.1 // indirect
12+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
13+
github.com/fsnotify/fsnotify v1.6.0 // indirect
14+
github.com/golang/protobuf v1.5.3 // indirect
15+
github.com/google/uuid v1.3.1 // indirect
16+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
17+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
18+
github.com/hashicorp/hcl v1.0.0 // indirect
19+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
20+
github.com/magiconair/properties v1.8.7 // indirect
21+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
22+
github.com/mitchellh/mapstructure v1.5.0 // indirect
23+
github.com/o1egl/paseto v1.0.0 // indirect
24+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
25+
github.com/pkg/errors v0.9.1 // indirect
26+
github.com/prometheus/client_golang v1.12.2 // indirect
27+
github.com/prometheus/client_model v0.2.0 // indirect
28+
github.com/prometheus/common v0.32.1 // indirect
29+
github.com/prometheus/procfs v0.7.3 // indirect
30+
github.com/rogpeppe/go-internal v1.9.0 // indirect
31+
github.com/rs/xid v1.5.0 // indirect
32+
github.com/spf13/afero v1.9.3 // indirect
33+
github.com/spf13/cast v1.5.0 // indirect
34+
github.com/spf13/cobra v1.6.1 // indirect
35+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
36+
github.com/spf13/pflag v1.0.5 // indirect
37+
github.com/spf13/viper v1.15.0 // indirect
38+
github.com/subosito/gotenv v1.4.2 // indirect
39+
golang.org/x/crypto v0.14.0 // indirect
40+
golang.org/x/net v0.17.0 // indirect
41+
golang.org/x/sys v0.13.0 // indirect
42+
golang.org/x/term v0.13.0 // indirect
43+
golang.org/x/text v0.13.0 // indirect
44+
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
45+
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
46+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
47+
google.golang.org/grpc v1.57.0 // indirect
48+
google.golang.org/protobuf v1.31.0 // indirect
49+
gopkg.in/ini.v1 v1.67.0 // indirect
50+
gopkg.in/yaml.v3 v3.0.1 // indirect
51+
)
52+
53+
replace github.com/codenotary/immudb => ../..

0 commit comments

Comments
 (0)