publish GreptimeDB protobuf for Java using jitpack.io (#4)

This commit is contained in:
LFC
2023-02-10 15:59:11 +08:00
committed by GitHub
parent f089c73068
commit 328c41f292
9 changed files with 22762 additions and 0 deletions
+3
View File
@@ -2,6 +2,9 @@ syntax = "proto3";
package greptime.v1;
option java_package="io.greptime.v1";
option java_outer_classname = "Columns";
message Column {
string column_name = 1;
+3
View File
@@ -2,6 +2,9 @@ syntax = "proto3";
package greptime.v1;
option java_package = "io.greptime.v1";
option java_outer_classname = "Database";
import "greptime/v1/ddl.proto";
import "greptime/v1/column.proto";
+3
View File
@@ -2,6 +2,9 @@ syntax = "proto3";
package greptime.v1;
option java_package = "io.greptime.v1";
option java_outer_classname = "Ddl";
import "greptime/v1/column.proto";
// "Data Definition Language" requests, that create, modify or delete the database structures but not the data.