-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lake formation support updates #1871
Conversation
Signed-off-by: Amardeepsingh Siglani <[email protected]>
Signed-off-by: Amardeepsingh Siglani <[email protected]>
Signed-off-by: Amardeepsingh Siglani <[email protected]>
Signed-off-by: Amardeepsingh Siglani <[email protected]>
Signed-off-by: Amardeepsingh Siglani <[email protected]>
Signed-off-by: Amardeepsingh Siglani <[email protected]>
@@ -127,7 +132,9 @@ export const NoResults = ({ tabId }: any) => { | |||
<p>Show a list of tables within a database</p> | |||
<EuiSpacer size="s" /> | |||
<CreatedCodeBlock | |||
code={`SHOW TABLE EXTENDED IN ${datasourceName}.<database> LIKE '*'`} | |||
code={`SHOW ${ | |||
dataSourceConnectionType === 'SECURITYLAKE' ? 'TABLES' : 'TABLE EXTENDED' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this is just show tables
query, do we want to filter them based on hive or non-hive provider?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Security lake only supports Iceberg tables so we don't need any filtering
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export type IntegrationConnectionType = 's3' | 'index' | 'securityLake'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit. (not blocking) Some places I see securityLake
in lower case and some place in upper case. Could be better to keep it consistent.
Description
This PR
EXTENDED
keyword is not supportedSecurity Lake
type for integrations that have at least one workflow for security lake data sources.Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.