Skip to content
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

Release 2025-01-21a #6419

Merged
merged 17 commits into from
Jan 21, 2025
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 1 addition & 3 deletions .github/workflows/build-pdfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ jobs:
- name: Install wkhtmltopdf
run: |
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.jammy_amd64.deb > wkhtmltopdf.deb
sudo apt update
sudo apt install -y ./wkhtmltopdf.deb
sudo apt install -y rsync
sudo apt-get install -y ./wkhtmltopdf.deb

- name: Install Python dependencies
run: pip install -r requirements-ci.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Checkout relgen tool
uses: actions/checkout@v4
with:
ref: develop
ref: ${{ github.event.pull_request.head.ref }}
path: tools
sparse-checkout: |
tools
Expand Down
2 changes: 1 addition & 1 deletion .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
git lfs post-checkout "$@"
2 changes: 1 addition & 1 deletion .husky/post-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
git lfs post-commit "$@"
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
git lfs post-merge "$@"
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
git lfs pre-push "$@"
14 changes: 12 additions & 2 deletions advocacy_docs/edb-postgres-ai/analytics/external_tables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,23 @@ For example, in the options, you can specify the access key ID and secret access
The following example creates an external table that references a public S3-compatible object storage location:

```sql
SELECT pgaa.create_storage_location('sample-data', 's3://pgaa-sample-data-eu-west-1');
SELECT pgaa.create_storage_location(
name => 'sample-data',
url => 's3://pgaa-sample-data-eu-west-1',
options => '{}',
msl_id => NULL
);
```

The next example creates an external storage location that references a private S3-compatible object storage location:

```sql
SELECT pgaa.create_storage_location('private-data', 's3://my-private-bucket', '{"access_key_id": "my-access-key-id","secret_access_key": "my-secret-access-key"}');
SELECT pgaa.create_storage_location(
name => 'private-data',
url => 's3://my-private-bucket',
options => '{"access_key_id": "my-access-key-id","secret_access_key": "my-secret-access-key"}',
msl_id => NULL
);
```

## Creating an External Table
Expand Down
4 changes: 4 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
hideToC
deepToC
hideKBLink
version
katacodaPages {
scenario
account
Expand Down Expand Up @@ -224,6 +225,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
hideKBLink
hideVersion
hidePDF
version
pdfExclude
displayBanner
}
Expand Down Expand Up @@ -556,6 +558,7 @@ exports.createSchemaCustomization = ({ actions }) => {
showInteractiveBadge: Boolean
hideToC: Boolean
deepToC: Boolean
version: String
katacodaPages: DemoPage
katacodaPanel: DemoPanel
hideVersion: Boolean
Expand Down Expand Up @@ -602,6 +605,7 @@ exports.createSchemaCustomization = ({ actions }) => {
showInteractiveBadge: Boolean
hideVersion: Boolean
hidePDF: Boolean
preciseVersion: String
pdfExclude: Boolean
hideKBLink: Boolean
displayBanner: String
Expand Down
140 changes: 0 additions & 140 deletions product_docs/docs/pgd/5.6/appusage/behavior.mdx

This file was deleted.

59 changes: 0 additions & 59 deletions product_docs/docs/pgd/5.6/appusage/dml-ddl.mdx

This file was deleted.

76 changes: 0 additions & 76 deletions product_docs/docs/pgd/5.6/appusage/extensions.mdx

This file was deleted.

Loading
Loading