Skip to content
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

Allow multiple datasets at start #367

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions cmd/bigquery-emulator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

type option struct {
Project string `description:"specify the project name" long:"project"`
Dataset string `description:"specify the dataset name" long:"dataset"`
Dataset []string `description:"specify the dataset name" long:"dataset"`
Host string `description:"specify the host" long:"host" default:"0.0.0.0"`
HTTPPort uint16 `description:"specify the http port number. this port used by bigquery api" long:"port" default:"9050"`
GRPCPort uint16 `description:"specify the grpc port number. this port used by bigquery storage api" long:"grpc-port" default:"9060"`
Expand Down Expand Up @@ -85,8 +85,10 @@ func runServer(args []string, opt option) error {
db = server.Storage(fmt.Sprintf("file:%s?cache=shared", opt.Database))
}
project := types.NewProject(opt.Project)
if opt.Dataset != "" {
project.Datasets = append(project.Datasets, types.NewDataset(opt.Dataset))
if len(opt.Dataset) > 0 {
for _, dataset := range opt.Dataset {
project.Datasets = append(project.Datasets, types.NewDataset(dataset))
}
}
bqServer, err := server.New(db)
if err != nil {
Expand Down