Skip to content

Spelling #88

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ add_library(${EXTENSION_NAME} STATIC ${EXTENSION_SOURCES})
set(PARAMETERS "-warnings")
build_loadable_extension(${TARGET_NAME} ${PARAMETERS} ${EXTENSION_SOURCES})

# Weirdly we need to manually to this, otherwise linking against
# Weirdly we need to manually do this; otherwise, linking against
# ${AWSSDK_LINK_LIBRARIES} fails for some reason
find_package(ZLIB REQUIRED)
find_package(AWSSDK REQUIRED COMPONENTS core sso sts identity-management)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This is a DuckDB extension that provides features that depend on the AWS SDK.

## Supported architectures
The extension is tested & distributed for Linux (x64, arm64), MacOS (x64, arm64) and Windows (x64)
The extension is tested & distributed for Linux (x64, arm64), macOS (x64, arm64) and Windows (x64)

## Documentation

Expand Down
4 changes: 2 additions & 2 deletions src/aws_secret.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ static string SELECTED_CURL_CERT_PATH;
static string certFileLocations[] = {
// Arch, Debian-based, Gentoo
"/etc/ssl/certs/ca-certificates.crt",
// RedHat 7 based
// Red Hat 7 based
"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem",
// Redhat 6 based
// Red Hat 6 based
"/etc/pki/tls/certs/ca-bundle.crt",
// OpenSUSE
"/etc/ssl/ca-bundle.pem",
Expand Down
2 changes: 1 addition & 1 deletion test/sql/aws_errors.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# description: test aws extension
# group: [aws]

require no_extension_autoloading "EXPECTED: Test relies on explcit INSTALL and LOAD"
require no_extension_autoloading "EXPECTED: Test relies on explicit INSTALL and LOAD"

# Before we load the extension, this will fail
statement error
Expand Down