Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ export const ImportCSVFiles = ({ onImported }: Props) => {
skipLev: false,
delimiter: "",
atomicity: "skipCol",
durable: false,
maxUncommitedRows: MAX_UNCOMMITTED_ROWS,
},
isUploading: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export const UploadSettingsDialog = ({
forceHeader,
skipLev,
atomicity,
durable,
maxUncommitedRows,
} = file.settings

Expand All @@ -94,7 +93,6 @@ export const UploadSettingsDialog = ({
forceHeader,
skipLev,
atomicity,
durable,
maxUncommitedRows,
}

Expand Down Expand Up @@ -190,19 +188,6 @@ export const UploadSettingsDialog = ({
),
defaultValue: settings.skipLev,
},
{
type: "switch",
name: "durable",
label: "Durable",
description: (
<>
When set to <strong>true</strong>, import will be resilient against OS
errors or power losses by forcing the data to be fully persisted
before sending a response back to the user.
</>
),
defaultValue: settings.durable,
},
]

return (
Expand Down
1 change: 0 additions & 1 deletion packages/web-console/src/utils/questdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ export type UploadModeSettings = {
skipLev: boolean
delimiter: string
atomicity: string
durable: boolean
maxUncommitedRows: number
}

Expand Down