Skip to content

Commit

Permalink
modified quotes in postgres_fdw docs (#31211)
Browse files Browse the repository at this point in the history
modified quotes

Co-authored-by: Brian Brennglass <brian@Brians-MacBook-Pro.local>
  • Loading branch information
TheOtherBrian1 and Brian Brennglass authored Dec 18, 2024
1 parent de7d344 commit 1a4e024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/docs/content/guides/database/extensions/postgres_fdw.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The extension enables Postgres to query tables and views on a remote Postgres se

Example: Import specific tables
```sql
import foreign schema "<foreign_schema>""
import foreign schema "<foreign_schema>"
limit to (
"<table_name1>",
"<table_name2>"
Expand All @@ -105,7 +105,7 @@ The extension enables Postgres to query tables and views on a remote Postgres se
<StepHikeCompact.Code>

```sql
select * from '<foreign_table>'
select * from "<foreign_table>"
```
</StepHikeCompact.Code>
</StepHikeCompact.Step>
Expand Down

0 comments on commit 1a4e024

Please sign in to comment.