@514labs/moose-proto 0.6.236 → 0.6.237
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -913,6 +913,13 @@ interface Table {
|
|
|
913
913
|
* @generated from protobuf field: optional string cluster_name = 18
|
|
914
914
|
*/
|
|
915
915
|
clusterName?: string;
|
|
916
|
+
/**
|
|
917
|
+
* Optional PRIMARY KEY expression
|
|
918
|
+
* When specified, overrides primary_key boolean flags on columns
|
|
919
|
+
*
|
|
920
|
+
* @generated from protobuf field: optional string primary_key_expression = 19
|
|
921
|
+
*/
|
|
922
|
+
primaryKeyExpression?: string;
|
|
916
923
|
}
|
|
917
924
|
/**
|
|
918
925
|
* @generated MessageType for protobuf message moose.proto.Table
|
|
@@ -913,6 +913,13 @@ interface Table {
|
|
|
913
913
|
* @generated from protobuf field: optional string cluster_name = 18
|
|
914
914
|
*/
|
|
915
915
|
clusterName?: string;
|
|
916
|
+
/**
|
|
917
|
+
* Optional PRIMARY KEY expression
|
|
918
|
+
* When specified, overrides primary_key boolean flags on columns
|
|
919
|
+
*
|
|
920
|
+
* @generated from protobuf field: optional string primary_key_expression = 19
|
|
921
|
+
*/
|
|
922
|
+
primaryKeyExpression?: string;
|
|
916
923
|
}
|
|
917
924
|
/**
|
|
918
925
|
* @generated MessageType for protobuf message moose.proto.Table
|
|
@@ -2017,6 +2017,14 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2017
2017
|
opt: true,
|
|
2018
2018
|
T: 9
|
|
2019
2019
|
/*ScalarType.STRING*/
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
no: 19,
|
|
2023
|
+
name: "primary_key_expression",
|
|
2024
|
+
kind: "scalar",
|
|
2025
|
+
opt: true,
|
|
2026
|
+
T: 9
|
|
2027
|
+
/*ScalarType.STRING*/
|
|
2020
2028
|
}
|
|
2021
2029
|
]);
|
|
2022
2030
|
}
|
|
@@ -2110,6 +2118,10 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2110
2118
|
18:
|
|
2111
2119
|
message.clusterName = reader.string();
|
|
2112
2120
|
break;
|
|
2121
|
+
case /* optional string primary_key_expression */
|
|
2122
|
+
19:
|
|
2123
|
+
message.primaryKeyExpression = reader.string();
|
|
2124
|
+
break;
|
|
2113
2125
|
default:
|
|
2114
2126
|
let u = options.readUnknownField;
|
|
2115
2127
|
if (u === "throw")
|
|
@@ -2175,6 +2187,8 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2175
2187
|
writer.tag(17, import_runtime13.WireType.LengthDelimited).string(message.database);
|
|
2176
2188
|
if (message.clusterName !== void 0)
|
|
2177
2189
|
writer.tag(18, import_runtime13.WireType.LengthDelimited).string(message.clusterName);
|
|
2190
|
+
if (message.primaryKeyExpression !== void 0)
|
|
2191
|
+
writer.tag(19, import_runtime13.WireType.LengthDelimited).string(message.primaryKeyExpression);
|
|
2178
2192
|
let u = options.writeUnknownFields;
|
|
2179
2193
|
if (u !== false)
|
|
2180
2194
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|