Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions mario/data_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def __init__(self,
super().__init__(Configuration(), dataset_specification, metadata)
self.configuration = configuration

def validate_data(self, allow_nulls=False):
def validate_data(self, allow_nulls=True):
from mario.validation import HyperValidator
validator = HyperValidator(
dataset_specification=self.dataset_specification,
Expand Down Expand Up @@ -300,7 +300,7 @@ def stream_sql_to_hyper(self,
table: str = 'Extract',
schema: str = 'Extract',
validate: bool = False,
allow_nulls: bool = False,
allow_nulls: bool = True,
minimise: bool = False,
chunk_size: int = 100000):
"""
Expand Down Expand Up @@ -328,7 +328,7 @@ def stream_sql_to_hyper(self,
def stream_sql_to_csv(self,
file_path,
validate: bool = False,
allow_nulls: bool = False,
allow_nulls: bool = True,
chunk_size: int = 100000,
compress_using_gzip: bool = False,
minimise: bool = False
Expand Down