File tree Expand file tree Collapse file tree 8 files changed +20
-14
lines changed Expand file tree Collapse file tree 8 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -14,18 +14,18 @@ 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
- duckdb_version : v1.0.0
19
+ duckdb_version : main
20
20
extension_name : sqlite_scanner
21
21
22
22
duckdb-stable-deploy :
23
23
name : Deploy extension binaries
24
24
needs : duckdb-stable-build
25
- uses : duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.0.0
25
+ uses : duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
26
26
secrets : inherit
27
27
with :
28
- duckdb_version : v1.0.0
28
+ duckdb_version : main
29
29
extension_name : sqlite_scanner
30
30
deploy_latest : ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
31
31
deploy_versioned : ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class SQLiteDelete : public PhysicalOperator {
42
42
}
43
43
44
44
string GetName () const override ;
45
- string ParamsToString () const override ;
45
+ InsertionOrderPreservingMap< string> ParamsToString () const override ;
46
46
};
47
47
48
48
} // namespace duckdb
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class SQLiteInsert : public PhysicalOperator {
51
51
}
52
52
53
53
string GetName () const override ;
54
- string ParamsToString () const override ;
54
+ InsertionOrderPreservingMap< string> ParamsToString () const override ;
55
55
};
56
56
57
57
} // namespace duckdb
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class SQLiteUpdate : public PhysicalOperator {
44
44
}
45
45
46
46
string GetName () const override ;
47
- string ParamsToString () const override ;
47
+ InsertionOrderPreservingMap< string> ParamsToString () const override ;
48
48
};
49
49
50
50
} // namespace duckdb
Original file line number Diff line number Diff line change @@ -78,8 +78,10 @@ string SQLiteDelete::GetName() const {
78
78
return " DELETE" ;
79
79
}
80
80
81
- string SQLiteDelete::ParamsToString () const {
82
- return table.name ;
81
+ InsertionOrderPreservingMap<string> SQLiteDelete::ParamsToString () const {
82
+ InsertionOrderPreservingMap<string> result;
83
+ result[" Table Name" ] = table.name ;
84
+ return result;
83
85
}
84
86
85
87
// ===--------------------------------------------------------------------===//
Original file line number Diff line number Diff line change @@ -132,8 +132,10 @@ string SQLiteInsert::GetName() const {
132
132
return table ? " INSERT" : " CREATE_TABLE_AS" ;
133
133
}
134
134
135
- string SQLiteInsert::ParamsToString () const {
136
- return table ? table->name : info->Base ().table ;
135
+ InsertionOrderPreservingMap<string> SQLiteInsert::ParamsToString () const {
136
+ InsertionOrderPreservingMap<string> result;
137
+ result[" Table Name" ] = table ? table->name : info->Base ().table ;
138
+ return result;
137
139
}
138
140
139
141
// ===--------------------------------------------------------------------===//
Original file line number Diff line number Diff line change @@ -94,8 +94,10 @@ string SQLiteUpdate::GetName() const {
94
94
return " UPDATE" ;
95
95
}
96
96
97
- string SQLiteUpdate::ParamsToString () const {
98
- return table.name ;
97
+ InsertionOrderPreservingMap<string> SQLiteUpdate::ParamsToString () const {
98
+ InsertionOrderPreservingMap<string> result;
99
+ result[" Table Name" ] = table.name ;
100
+ return result;
99
101
}
100
102
101
103
// ===--------------------------------------------------------------------===//
You can’t perform that action at this time.
0 commit comments