Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vesoft-inc/nebula-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: eb2c8611e8490098a602e7a09a03bb0b03a4b424
Choose a base ref
..
head repository: vesoft-inc/nebula-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b153a02122a11372793519ee419f8c0318c82890
Choose a head ref
Showing with 2 additions and 3 deletions.
  1. +0 −1 README.md
  2. +2 −2 result_set.go
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -23,7 +23,6 @@ To Use the console with a stable release of NebulaGraph, please check the branch
| **[v3.2.x](https://github.com/vesoft-inc/nebula-go/tree/v3.2.0)** | 3.1.x-3.2.x |
| **[v3.3.x](https://github.com/vesoft-inc/nebula-go/tree/v3.3.0)** | 3.1.x-3.3.x |
| **[v3.4.x](https://github.com/vesoft-inc/nebula-go/tree/v3.4.0)** | 3.1.x-3.4.x |
| **[v3.5.x](https://github.com/vesoft-inc/nebula-go/tree/v3.5.0)** | 3.1.x-3.5.x |
| **[master](https://github.com/vesoft-inc/nebula-go/tree/master)** | 3.x-nightly |

Please be careful not to modify the files in the nebula directory, these codes were all generated by fbthrift.
4 changes: 2 additions & 2 deletions result_set.go
Original file line number Diff line number Diff line change
@@ -95,8 +95,8 @@ const (
)

func GenResultSet(resp *graph.ExecutionResponse) (*ResultSet, error) {
var testTimezone timezoneInfo = timezoneInfo{0, []byte("UTC")}
return genResultSet(resp, testTimezone)
var defaultTimezone timezoneInfo = timezoneInfo{0, []byte("UTC")}
return genResultSet(resp, defaultTimezone)
}

func genResultSet(resp *graph.ExecutionResponse, timezoneInfo timezoneInfo) (*ResultSet, error) {