File tree Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -451,6 +451,7 @@ pub struct StorageMokaConfig {
451
451
}
452
452
453
453
impl Default for StorageMokaConfig {
454
+ #[ no_sanitize( address) ]
454
455
fn default ( ) -> Self {
455
456
Self {
456
457
// Use 1G as default.
Original file line number Diff line number Diff line change 28
28
//! - Table snapshots, segments cache must be stored accessed via cache operator.
29
29
//! - Intermediate data generated by query could be stored by temporary operator.
30
30
31
+ #![ feature( no_sanitize) ]
32
+
31
33
mod config;
32
34
pub use config:: CacheConfig ;
33
35
pub use config:: ShareTableConfig ;
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
+ #![ feature( no_sanitize) ]
16
+
15
17
/// Config mods provide config support.
16
18
///
17
19
/// We are providing two config types:
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ impl Config {
136
136
/// with_args is to control whether we need to load from args or not.
137
137
/// We should set this to false during tests because we don't want
138
138
/// our test binary to parse cargo's args.
139
+ #[ no_sanitize( address) ]
139
140
pub fn load ( with_args : bool ) -> Result < Self > {
140
141
let mut arg_conf = Self :: default ( ) ;
141
142
You can’t perform that action at this time.
0 commit comments