Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Commits
73d85fb2
Commit
73d85fb2
authored
3 years ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Plain Diff
Merge branch 'f-int64' into 'dev'
Return to int64 See merge request
!4
parents
640b1dd5
75e826bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4
Return to int64
Pipeline
#13328
passed
3 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+0
-2
0 additions, 2 deletions
CHANGELOG.md
proto/caosdb/entity/v1alpha1/main.proto
+8
-3
8 additions, 3 deletions
proto/caosdb/entity/v1alpha1/main.proto
with
8 additions
and
5 deletions
CHANGELOG.md
+
0
−
2
View file @
73d85fb2
...
@@ -11,8 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -11,8 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Changed
*
Integer value is 32 bit now.
### Deprecated
### Deprecated
### Removed
### Removed
...
...
This diff is collapsed.
Click to expand it.
proto/caosdb/entity/v1alpha1/main.proto
+
8
−
3
View file @
73d85fb2
...
@@ -90,7 +90,7 @@ message ScalarValue {
...
@@ -90,7 +90,7 @@ message ScalarValue {
// Wraps different optimized representations of a single value.
// Wraps different optimized representations of a single value.
oneof
scalar_value
{
oneof
scalar_value
{
// The value as integer
// The value as integer
int
32
integer_value
=
1
;
int
64
integer_value
=
1
;
// The value as double
// The value as double
double
double_value
=
2
;
double
double_value
=
2
;
// The value as bool
// The value as bool
...
@@ -384,6 +384,11 @@ enum MessageCode {
...
@@ -384,6 +384,11 @@ enum MessageCode {
// TODO(tf) This property overrides the name.
// TODO(tf) This property overrides the name.
MESSAGE_CODE_PROPERTY_WITH_NAME_OVERRIDE
=
79
;
MESSAGE_CODE_PROPERTY_WITH_NAME_OVERRIDE
=
79
;
// Indicates that this server cannot process this integer value because it is
// out of range. The integer range is an implementation detail and thus this
// can happen even though the API allows the value.
MESSAGE_CODE_INTEGER_VALUE_OUT_OF_RANGE
=
80
;
}
}
// Messages are used by server's or client's to transport *transient*
// Messages are used by server's or client's to transport *transient*
...
@@ -626,8 +631,8 @@ message RetrieveRequest {
...
@@ -626,8 +631,8 @@ message RetrieveRequest {
// Is the client requesting to download the file associated with the
// Is the client requesting to download the file associated with the
// retrieved entity or query results?
// retrieved entity or query results?
bool
register_file_download
=
3
;
bool
register_file_download
=
3
;
//TODO Settings for the download. Ignored if register_file_download is false.
//
TODO Settings for the download. Ignored if register_file_download is false.
//FileTransmissionSettings download_settings = 4;
//
FileTransmissionSettings download_settings = 4;
}
}
// Response to a retrieve request
// Response to a retrieve request
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment