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

add support for big float and fix tests #246

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
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
22 changes: 8 additions & 14 deletions .github/workflows/ci-dgraph4j-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ jobs:
name: dgraph4j-tests
runs-on: ubuntu-20.04
steps:
- name: Checkout Dgraph repo # use latest dgraph build
uses: actions/checkout@v4
with:
path: dgraph
repository: dgraph-io/dgraph
ref: main
- name: Checkout dgraph4j repo
uses: actions/checkout@v4
with:
Expand All @@ -37,21 +31,21 @@ jobs:
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: current
- name: Get Go Version
run: |
#!/bin/bash
cd dgraph
GOVERSION=$({ [ -f .go-version ] && cat .go-version; })
echo "GOVERSION=$GOVERSION" >> $GITHUB_ENV
- name: Checkout Dgraph repo # use latest dgraph build
uses: actions/checkout@v4
with:
path: dgraph
repository: dgraph-io/dgraph
ref: main
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
go-version-file: dgraph/go.mod
- name: Build dgraph binary
run: cd dgraph && make docker-image # builds docker image with local tag
- name: Spin up local dgraph cluster
run: cd dgraph4j && docker compose -f docker-compose.test.yml up -d
- name: Run tests
run: cd dgraph4j && gradle build
run: cd dgraph4j && gradle build -i
- name: Tear down cluster
run: cd dgraph4j && docker compose -f docker-compose.test.yml down
11 changes: 3 additions & 8 deletions src/main/proto/api.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017 Dgraph Labs, Inc. and Contributors
* Copyright (C) 2023 Dgraph Labs, Inc. and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -23,12 +23,7 @@ syntax = "proto3";

package api;

/* import "gogoproto/gogo.proto"; */

/* option (gogoproto.marshaler_all) = true; */
/* option (gogoproto.sizer_all) = true; */
/* option (gogoproto.unmarshaler_all) = true; */
/* option (gogoproto.goproto_getters_all) = true; */
option go_package = "github.com/dgraph-io/dgo/v240/protos/api";

option java_package = "io.dgraph";
option java_outer_classname = "DgraphProto";
Expand Down Expand Up @@ -175,7 +170,7 @@ message Value {
bytes datetime_val = 9;
string password_val = 10;
uint64 uid_val=11;
// number 12 is reserved for bigfloat
bytes bigfloat_val=12;
bytes vfloat32_val=13;
}
}
Expand Down
Loading