3 files changed
+36
-19
lines changed- .github/config/extensions/ducklake.cmake+1-2
- .github/config/extensions/mysql_scanner.cmake+1-2
- .github/config/extensions/postgres_scanner.cmake+1-2
- .github/config/extensions/sqlite_scanner.cmake+1-2
- .github/patches/extensions/ducklake/fix.patch-39
- .github/patches/extensions/httpfs/fix.patch+199
- .github/patches/extensions/mysql_scanner/fix.patch-264
- .github/patches/extensions/postgres_scanner/fix.patch-39
- .github/patches/extensions/sqlite_scanner/fix.patch-263
- extension/json/json_functions/json_table_in_out.cpp+5-1
- extension/parquet/parquet_crypto.cpp+5-5
- src/catalog/catalog.cpp+1-1
- src/catalog/duck_catalog.cpp+9
- src/common/encryption_functions.cpp+50-18
- src/common/encryption_state.cpp+55-8
- src/function/table/system/duckdb_databases.cpp+16-3
- src/include/duckdb/catalog/catalog.hpp+6
- src/include/duckdb/catalog/duck_catalog.hpp+2
- src/include/duckdb/common/encryption_functions.hpp+15-80
- src/include/duckdb/common/encryption_state.hpp+19-8
- src/include/duckdb/common/serializer/deserializer.hpp+17-2
- src/include/duckdb/main/config.hpp-2
- src/include/duckdb/main/extension_entries.hpp+7
- src/include/duckdb/storage/single_file_block_manager.hpp+2-2
- src/include/duckdb/storage/storage_info.hpp+5-5
- src/include/duckdb/storage/storage_manager.hpp+11
- src/include/duckdb/transaction/meta_transaction.hpp+7
- src/main/database_manager.cpp+19-4
- src/storage/single_file_block_manager.cpp+12-12
- src/storage/storage_manager.cpp+7-2
- src/storage/wal_replay.cpp+45-21
- src/storage/write_ahead_log.cpp+3-1
- src/transaction/meta_transaction.cpp+24-1
- test/helpers/test_config.cpp+20
- test/include/test_config.hpp+2
- test/persistence/test_file_matches_wal.cpp+2-4
- test/sql/copy/encryption/different_aes_ciphers.test+23-1
- test/sql/json/table/test_json_table_in_out.test_slow+7
- test/sql/parallelism/interquery/concurrent_attach_detach.cpp+164-46
- test/sql/storage/concurrent_attach_or_replace.test_slow+52
- test/sql/storage/encryption/temp_files/encrypted_out_of_core.test_slow+9-3
- test/sql/storage/encryption/wal/encrypted_wal_restart.test+11-7
- test/sql/storage/wal/wal_promote_version.test+36
- test/sqlite/sqllogic_command.cpp+1
- test/sqlite/sqllogic_parser.cpp+3
- test/sqlite/sqllogic_parser.hpp+1
- test/sqlite/sqllogic_test_runner.cpp+17
- third_party/mbedtls/include/mbedtls/mbedtls_config.h+2-1
- third_party/mbedtls/include/mbedtls_wrapper.hpp+7-5
- third_party/mbedtls/library/ctr.h+35-1
- third_party/mbedtls/mbedtls_wrapper.cpp+60-33
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
10 | 14 | | |
11 | 15 | | |
12 | 16 | | |
| |||
19 | 23 | | |
20 | 24 | | |
21 | 25 | | |
22 | | - | |
| 26 | + | |
23 | 27 | | |
24 | 28 | | |
25 | 29 | | |
| |||
33 | 37 | | |
34 | 38 | | |
35 | 39 | | |
36 | | - | |
| 40 | + | |
37 | 41 | | |
38 | 42 | | |
39 | 43 | | |
| |||
44 | 48 | | |
45 | 49 | | |
46 | 50 | | |
47 | | - | |
| 51 | + | |
| 52 | + | |
48 | 53 | | |
49 | 54 | | |
50 | 55 | | |
| |||
55 | 60 | | |
56 | 61 | | |
57 | 62 | | |
58 | | - | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
59 | 76 | | |
60 | 77 | | |
61 | 78 | | |
| |||
67 | 84 | | |
68 | 85 | | |
69 | 86 | | |
70 | | - | |
| 87 | + | |
71 | 88 | | |
72 | 89 | | |
73 | 90 | | |
| |||
82 | 99 | | |
83 | 100 | | |
84 | 101 | | |
85 | | - | |
| 102 | + | |
86 | 103 | | |
87 | 104 | | |
88 | 105 | | |
| |||
99 | 116 | | |
100 | 117 | | |
101 | 118 | | |
102 | | - | |
| 119 | + | |
103 | 120 | | |
104 | 121 | | |
105 | 122 | | |
106 | 123 | | |
107 | 124 | | |
108 | 125 | | |
109 | | - | |
| 126 | + | |
110 | 127 | | |
111 | 128 | | |
112 | 129 | | |
| |||
126 | 143 | | |
127 | 144 | | |
128 | 145 | | |
129 | | - | |
| 146 | + | |
130 | 147 | | |
131 | 148 | | |
132 | 149 | | |
| |||
138 | 155 | | |
139 | 156 | | |
140 | 157 | | |
141 | | - | |
| 158 | + | |
142 | 159 | | |
143 | 160 | | |
144 | 161 | | |
| |||
161 | 178 | | |
162 | 179 | | |
163 | 180 | | |
164 | | - | |
| 181 | + | |
165 | 182 | | |
166 | 183 | | |
167 | 184 | | |
168 | 185 | | |
169 | 186 | | |
170 | 187 | | |
171 | | - | |
| 188 | + | |
172 | 189 | | |
173 | 190 | | |
174 | 191 | | |
175 | 192 | | |
176 | 193 | | |
177 | 194 | | |
178 | 195 | | |
179 | | - | |
| 196 | + | |
180 | 197 | | |
181 | 198 | | |
182 | 199 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
| 56 | + | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
0 commit comments