File tree Expand file tree Collapse file tree 6 files changed +15
-11
lines changed Expand file tree Collapse file tree 6 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -14,20 +14,20 @@ concurrency:
14
14
jobs :
15
15
duckdb-stable-build :
16
16
name : Build extension binaries
17
- uses : duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.0.0
17
+ uses : duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
18
18
with :
19
19
extension_name : mysql_scanner
20
- duckdb_version : v1.0.0
20
+ duckdb_version : main
21
21
exclude_archs : ' wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
22
22
build_duckdb_shell : false
23
23
24
24
duckdb-stable-deploy :
25
25
name : Deploy extension binaries
26
26
needs : duckdb-stable-build
27
- uses : duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.0.0
27
+ uses : duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
28
28
secrets : inherit
29
29
with :
30
- duckdb_version : v1.0.0
30
+ duckdb_version : main
31
31
extension_name : mysql_scanner
32
32
exclude_archs : ' wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
33
33
deploy_latest : ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class MySQLExecuteQuery : public PhysicalOperator {
46
46
}
47
47
48
48
string GetName () const override ;
49
- string ParamsToString () const override ;
49
+ InsertionOrderPreservingMap< string> ParamsToString () const override ;
50
50
};
51
51
52
52
} // namespace duckdb
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class MySQLInsert : public PhysicalOperator {
53
53
}
54
54
55
55
string GetName () const override ;
56
- string ParamsToString () const override ;
56
+ InsertionOrderPreservingMap< string> ParamsToString () const override ;
57
57
};
58
58
59
59
} // namespace duckdb
Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ string MySQLExecuteQuery::GetName() const {
71
71
return op_name;
72
72
}
73
73
74
- string MySQLExecuteQuery::ParamsToString () const {
75
- return table.name ;
74
+ InsertionOrderPreservingMap<string> MySQLExecuteQuery::ParamsToString () const {
75
+ InsertionOrderPreservingMap<string> result;
76
+ result[" Table Name" ] = table.name ;
77
+ return result;
76
78
}
77
79
78
80
// ===--------------------------------------------------------------------===//
Original file line number Diff line number Diff line change @@ -256,8 +256,10 @@ string MySQLInsert::GetName() const {
256
256
return table ? " MYSQL_INSERT" : " MYSQL_CREATE_TABLE_AS" ;
257
257
}
258
258
259
- string MySQLInsert::ParamsToString () const {
260
- return table ? table->name : info->Base ().table ;
259
+ InsertionOrderPreservingMap<string> MySQLInsert::ParamsToString () const {
260
+ InsertionOrderPreservingMap<string> result;
261
+ result[" Table Name" ] = table ? table->name : info->Base ().table ;
262
+ return result;
261
263
}
262
264
263
265
// ===--------------------------------------------------------------------===//
You can’t perform that action at this time.
0 commit comments