From 014096e3c9d6d4624dc786f5aaec27f26e01072a Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Tue, 31 Aug 2021 17:05:50 +0200 Subject: [PATCH] REVERT: return to int64 for integer values --- CHANGELOG.md | 2 -- proto/caosdb/entity/v1alpha1/main.proto | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60dfa4a..10652f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -* Integer value is 32 bit now. - ### Deprecated ### Removed diff --git a/proto/caosdb/entity/v1alpha1/main.proto b/proto/caosdb/entity/v1alpha1/main.proto index f9e83eb..5bcd860 100644 --- a/proto/caosdb/entity/v1alpha1/main.proto +++ b/proto/caosdb/entity/v1alpha1/main.proto @@ -90,7 +90,7 @@ message ScalarValue { // Wraps different optimized representations of a single value. oneof scalar_value { // The value as integer - int32 integer_value = 1; + int64 integer_value = 1; // The value as double double double_value = 2; // The value as bool @@ -626,8 +626,8 @@ message RetrieveRequest { // Is the client requesting to download the file associated with the // retrieved entity or query results? bool register_file_download = 3; - //TODO Settings for the download. Ignored if register_file_download is false. - //FileTransmissionSettings download_settings = 4; + // TODO Settings for the download. Ignored if register_file_download is false. + // FileTransmissionSettings download_settings = 4; } // Response to a retrieve request -- GitLab