Skip to content

Commit

Permalink
Merge pull request #6419 from EnterpriseDB/2025-01-21a
Browse files Browse the repository at this point in the history
Release 2025-01-21a
  • Loading branch information
djw-m authored Jan 21, 2025
2 parents d8a1b34 + 57b4820 commit f0ccf5c
Show file tree
Hide file tree
Showing 405 changed files with 7,021 additions and 29,104 deletions.
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

2 comments on commit f0ccf5c

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.