@514labs/moose-proto 0.6.247 → 0.6.248
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.
|
@@ -1292,6 +1292,12 @@ interface Column {
|
|
|
1292
1292
|
* @generated from protobuf field: optional string codec = 11
|
|
1293
1293
|
*/
|
|
1294
1294
|
codec?: string;
|
|
1295
|
+
/**
|
|
1296
|
+
* Materialized expression
|
|
1297
|
+
*
|
|
1298
|
+
* @generated from protobuf field: optional string materialized = 12
|
|
1299
|
+
*/
|
|
1300
|
+
materialized?: string;
|
|
1295
1301
|
}
|
|
1296
1302
|
/**
|
|
1297
1303
|
* @generated MessageType for protobuf message moose.proto.Column
|
|
@@ -1292,6 +1292,12 @@ interface Column {
|
|
|
1292
1292
|
* @generated from protobuf field: optional string codec = 11
|
|
1293
1293
|
*/
|
|
1294
1294
|
codec?: string;
|
|
1295
|
+
/**
|
|
1296
|
+
* Materialized expression
|
|
1297
|
+
*
|
|
1298
|
+
* @generated from protobuf field: optional string materialized = 12
|
|
1299
|
+
*/
|
|
1300
|
+
materialized?: string;
|
|
1295
1301
|
}
|
|
1296
1302
|
/**
|
|
1297
1303
|
* @generated MessageType for protobuf message moose.proto.Column
|
|
@@ -3018,6 +3018,14 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3018
3018
|
opt: true,
|
|
3019
3019
|
T: 9
|
|
3020
3020
|
/*ScalarType.STRING*/
|
|
3021
|
+
},
|
|
3022
|
+
{
|
|
3023
|
+
no: 12,
|
|
3024
|
+
name: "materialized",
|
|
3025
|
+
kind: "scalar",
|
|
3026
|
+
opt: true,
|
|
3027
|
+
T: 9
|
|
3028
|
+
/*ScalarType.STRING*/
|
|
3021
3029
|
}
|
|
3022
3030
|
]);
|
|
3023
3031
|
}
|
|
@@ -3082,6 +3090,10 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3082
3090
|
11:
|
|
3083
3091
|
message.codec = reader.string();
|
|
3084
3092
|
break;
|
|
3093
|
+
case /* optional string materialized */
|
|
3094
|
+
12:
|
|
3095
|
+
message.materialized = reader.string();
|
|
3096
|
+
break;
|
|
3085
3097
|
default:
|
|
3086
3098
|
let u = options.readUnknownField;
|
|
3087
3099
|
if (u === "throw")
|
|
@@ -3133,6 +3145,8 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3133
3145
|
writer.tag(10, import_runtime13.WireType.LengthDelimited).string(message.ttl);
|
|
3134
3146
|
if (message.codec !== void 0)
|
|
3135
3147
|
writer.tag(11, import_runtime13.WireType.LengthDelimited).string(message.codec);
|
|
3148
|
+
if (message.materialized !== void 0)
|
|
3149
|
+
writer.tag(12, import_runtime13.WireType.LengthDelimited).string(message.materialized);
|
|
3136
3150
|
let u = options.writeUnknownFields;
|
|
3137
3151
|
if (u !== false)
|
|
3138
3152
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|