Skip to content
This repository was archived by the owner on Apr 9, 2026. It is now read-only.

Commit 8dc8723

Browse files
committed
fix(bulker): upgraded duckdb driver
1 parent e71566a commit 8dc8723

12 files changed

Lines changed: 360 additions & 125 deletions

File tree

.github/workflows/test-build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v3
3838
with:
39-
go-version: 1.24.4
39+
go-version: 1.24.9
4040
cache: false
4141

4242
- name: Bulker Test

admin/main.go

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
package main
22

3-
import (
4-
"github.com/jitsucom/bulker/jitsubase/appbase"
5-
"os"
6-
)
7-
83
func main() {
9-
settings := &appbase.AppSettings{
10-
ConfigPath: os.Getenv("ADMIN_CONFIG_PATH"),
11-
Name: "admin",
12-
EnvPrefix: "ADMIN",
13-
ConfigName: "admin",
14-
ConfigType: "env",
15-
}
16-
application := appbase.NewApp[Config](&Context{}, settings)
17-
application.Run()
18-
}
4+
//DeleteEmptyTopics()
5+
mongoProfile()
6+
//mongoStore()
7+
//settings := &appbase.AppSettings{
8+
// ConfigPath: os.Getenv("ADMIN_CONFIG_PATH"),
9+
// Name: "admin",
10+
// EnvPrefix: "ADMIN",
11+
// ConfigName: "admin",
12+
// ConfigType: "env",
13+
//}
14+
//application := appbase.NewApp[Config](&Context{}, settings)
15+
//application.Run()
16+
}

all.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV TZ=UTC
77

88
WORKDIR /app
99

10-
FROM golang:1.24.4-bookworm as builder
10+
FROM golang:1.24.9-bookworm as builder
1111

1212
ARG VERSION
1313
ENV VERSION $VERSION

bulker.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get install -y ca-certificates curl
55

66
ENV TZ=UTC
77

8-
FROM golang:1.24.4-bullseye as build
8+
FROM golang:1.24.9-bullseye as build
99

1010
ARG VERSION
1111
ENV VERSION $VERSION

bulkerlib/go.mod

Lines changed: 101 additions & 91 deletions
Large diffs are not rendered by default.

bulkerlib/go.sum

Lines changed: 136 additions & 0 deletions
Large diffs are not rendered by default.

bulkerlib/implementations/sql/duckdb.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import (
1212
"text/template"
1313
"time"
1414

15+
"github.com/duckdb/duckdb-go/v2"
16+
_ "github.com/duckdb/duckdb-go/v2"
1517
bulker "github.com/jitsucom/bulker/bulkerlib"
1618
types2 "github.com/jitsucom/bulker/bulkerlib/types"
1719
"github.com/jitsucom/bulker/jitsubase/errorj"
@@ -20,8 +22,6 @@ import (
2022
"github.com/jitsucom/bulker/jitsubase/logging"
2123
"github.com/jitsucom/bulker/jitsubase/utils"
2224
"github.com/jitsucom/bulker/jitsubase/uuid"
23-
"github.com/marcboeker/go-duckdb/v2"
24-
_ "github.com/marcboeker/go-duckdb/v2"
2525
)
2626

2727
func init() {

connectors/firebase.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get install -y ca-certificates curl
55

66
ENV TZ=UTC
77

8-
FROM golang:1.24.4-bullseye as build
8+
FROM golang:1.24.9-bullseye as build
99

1010
RUN apt-get install gcc libc6-dev
1111

go.work.sum

Lines changed: 101 additions & 10 deletions
Large diffs are not rendered by default.

ingest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get install -y ca-certificates curl
55

66
ENV TZ=UTC
77

8-
FROM golang:1.24.4-bullseye as build
8+
FROM golang:1.24.9-bullseye as build
99

1010
ARG VERSION
1111
ENV VERSION $VERSION

0 commit comments

Comments
 (0)