Skip to content

@sqlrooms/room-config / StandardLoadFileOptions

Type Alias: StandardLoadFileOptions

StandardLoadFileOptions = object

Interface

Standard file loading options excluding spatial methods StandardLoadFileOptions

Type Declaration

Index Signature

[key: string]: unknown

NameTypeDescription
schema?stringSchema to load the table into
select?string[]Columns to select, defaults to ['*']
where?stringWHERE clause filter condition
view?booleanWhether to create as a view
temp?booleanWhether to create as a temporary table
replace?booleanWhether to replace existing table
method"read_json" | "read_ndjson" | "read_parquet" | "read_csv" | "auto"-