Skip to content

Commit

Permalink
Fix the introspection query in Key Column Qualifiers doc page
Browse files Browse the repository at this point in the history
  • Loading branch information
misraved committed Dec 28, 2023
1 parent 39bfe2f commit 4b01ea8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guides/key-columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ If you are running the Steampipe CLI, you can get the key column information fro
select
name,
type,
(get_config || list_config) -> 'operators' as operators,
(coalesce(get_config, '{}') || coalesce(list_config, '{}')) -> 'operators' as operators,
coalesce((get_config || list_config) ->> 'require', 'optional') as required
from
steampipe_plugin_column
where
(get_config || list_config) -> 'operators' is not null
and table_name = 'aws_vpc' ;
(coalesce(get_config, '{}') || coalesce(list_config, '{}')) -> 'operators' is not null
and table_name = 'aws_vpc';
```

```sql
Expand Down

0 comments on commit 4b01ea8

Please sign in to comment.