Skip to content

Commit

Permalink
chore: disable fdb for arm temporally
Browse files Browse the repository at this point in the history
Signed-off-by: Jiyong Huang <[email protected]>
  • Loading branch information
ngjaying committed Nov 17, 2023
1 parent f94d404 commit cb33649
Show file tree
Hide file tree
Showing 12 changed files with 345 additions and 35 deletions.
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ require (
sqlflow.org/gomaxcompute v0.0.0-20210805062559-c14ae028b44c // indirect
)

go 1.20
go 1.21

toolchain go1.21.0

replace github.com/lf-edge/ekuiper/extensions v0.0.0-20231030085318-99dd34783cba => ./extensions
54 changes: 54 additions & 0 deletions go.sum

Large diffs are not rendered by default.

304 changes: 279 additions & 25 deletions go.work.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/pkg/store/ext_fdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package store

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbKv.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbKv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbStoreBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbTs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbTsBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/fdbTs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/store/fdb/stores_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build fdb || full
//go:build amd64 && (fdb || full)

package fdb

Expand Down

0 comments on commit cb33649

Please sign in to comment.