-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27986c6
commit 08a3c71
Showing
19 changed files
with
323 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 1.10.1 | ||
|
||
* Small UI fixes to open pages directly from an URL. | ||
* Fix problems when installing on Windows using pip, when Python was installed from Windows Store and uses a deeply nested folder structure | ||
# 1.11.0 | ||
|
||
* Fixing problems when importing files from a non-existing folder | ||
* Upgrade DuckDB to 1.1.3 | ||
* Support Avro files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...d/src/components/FileFormatConfiguration/FormatsConfiguration/AvroFormatConfiguration.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React, { useMemo } from 'react'; | ||
import { AvroFileFormatSpec } from '../../../api'; | ||
import { TConfigurationItemRowBoolean } from './RowItem/TConfigurationItemRowBoolean'; | ||
import FormatConfigurationRenderer from '../FormatConfigurationRenderer'; | ||
|
||
type TIcebergConfigurationProps = { | ||
configuration: AvroFileFormatSpec; | ||
onChangeConfiguration: (params: Partial<AvroFileFormatSpec>) => void; | ||
}; | ||
|
||
export default function IcebergFormatConfiguration({ | ||
configuration, | ||
onChangeConfiguration | ||
}: TIcebergConfigurationProps) { | ||
|
||
const avroConfigurationBooleans: TConfigurationItemRowBoolean[] = | ||
useMemo(() => { | ||
return [ | ||
{ | ||
label: 'Filename', | ||
value: configuration?.filename, | ||
onChange: (value) => | ||
onChangeConfiguration({ filename: value }) | ||
} | ||
]; | ||
}, [configuration]); | ||
|
||
return ( | ||
<FormatConfigurationRenderer | ||
configurationStrings={[]} | ||
configurationBooleans={avroConfigurationBooleans} | ||
type="Avro" | ||
/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
dqops/src/main/frontend/src/components/SvgIcon/svg/avro-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.