Skip to content

Commit 63d16df

Browse files
committed
chore: rebase
1 parent b9c21ac commit 63d16df

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/meta/proto-conv/src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const META_CHANGE_LOG: &[(u64, &str)] = &[
172172
(140, "2025-07-24: Add: TaskMessage::Delete add WarehouseOptions"),
173173
(141, "2025-08-06: Add: row_access.proto"),
174174
(142, "2025-08-15: Add: table_meta add row_access_policy"),
175-
(142, "2025-08-11: Add: add UDTF"),
175+
(143, "2025-08-18: Add: add UDTF"),
176176
// Dear developer:
177177
// If you're gonna add a new metadata version, you'll have to add a test for it.
178178
// You could just copy an existing test file(e.g., `../tests/it/v024_table_meta.rs`)

src/meta/proto-conv/tests/it/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ mod v139_add_grant_ownership_object_sequence;
134134
mod v140_task_message;
135135
mod v141_row_access_policy;
136136
mod v142_table_row_access_policy;
137-
mod v142_udtf;
137+
mod v143_udtf;

src/meta/proto-conv/tests/it/v142_udtf.rs renamed to src/meta/proto-conv/tests/it/v143_udtf.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ use crate::common;
3333
//
3434
// The message bytes are built from the output of `test_pb_from_to()`
3535
#[test]
36-
fn test_decode_v142_udtf() -> anyhow::Result<()> {
36+
fn test_decode_v143_udtf() -> anyhow::Result<()> {
3737
let bytes = vec![
3838
10, 9, 116, 101, 115, 116, 95, 117, 100, 116, 102, 18, 21, 84, 104, 105, 115, 32, 105, 115,
3939
32, 97, 32, 100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110, 66, 79, 10, 16, 10, 2,
40-
99, 49, 18, 10, 146, 2, 0, 160, 6, 142, 1, 168, 6, 24, 10, 16, 10, 2, 99, 50, 18, 10, 138,
41-
2, 0, 160, 6, 142, 1, 168, 6, 24, 18, 16, 10, 2, 99, 51, 18, 10, 170, 2, 0, 160, 6, 142, 1,
40+
99, 49, 18, 10, 146, 2, 0, 160, 6, 143, 1, 168, 6, 24, 10, 16, 10, 2, 99, 50, 18, 10, 138,
41+
2, 0, 160, 6, 143, 1, 168, 6, 24, 18, 16, 10, 2, 99, 51, 18, 10, 170, 2, 0, 160, 6, 143, 1,
4242
168, 6, 24, 26, 16, 115, 101, 108, 101, 99, 116, 32, 42, 32, 102, 114, 111, 109, 32, 116,
43-
49, 160, 6, 142, 1, 168, 6, 24, 42, 23, 50, 48, 50, 51, 45, 49, 50, 45, 49, 53, 32, 48, 49,
44-
58, 50, 54, 58, 48, 57, 32, 85, 84, 67, 160, 6, 142, 1, 168, 6, 24,
43+
49, 160, 6, 143, 1, 168, 6, 24, 42, 23, 50, 48, 50, 51, 45, 49, 50, 45, 49, 53, 32, 48, 49,
44+
58, 50, 54, 58, 48, 57, 32, 85, 84, 67, 160, 6, 143, 1, 168, 6, 24,
4545
];
4646

4747
let want = || UserDefinedFunction {
@@ -56,7 +56,7 @@ fn test_decode_v142_udtf() -> anyhow::Result<()> {
5656
};
5757

5858
common::test_pb_from_to(func_name!(), want())?;
59-
common::test_load_old(func_name!(), bytes.as_slice(), 142, want())
59+
common::test_load_old(func_name!(), bytes.as_slice(), 143, want())
6060
}
6161

6262
fn s(ss: impl ToString) -> String {

0 commit comments

Comments
 (0)