diff --git a/Makefile b/Makefile index 3ed6e9b..7395325 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ BUILD_FLAGS=-DEXTENSION_STATIC_BUILD=1 -DBUILD_EXTENSIONS="tpch" ${OSX_BUILD_UNI CLIENT_FLAGS := # These flags will make DuckDB build the extension -EXTENSION_FLAGS=-DDUCKDB_EXTENSION_NAMES="azure" -DDUCKDB_EXTENSION_AZURE_PATH="$(PROJ_DIR)" -DDUCKDB_EXTENSION_AZURE_SHOULD_LINK=1 -DDUCKDB_EXTENSION_AZURE_INCLUDE_PATH="$(PROJ_DIR)src/include" +EXTENSION_FLAGS=-DDUCKDB_EXTENSION_NAMES="aws" -DDUCKDB_EXTENSION_AWS_PATH="$(PROJ_DIR)" -DDUCKDB_EXTENSION_AWS_SHOULD_LINK=1 -DDUCKDB_EXTENSION_AWS_INCLUDE_PATH="$(PROJ_DIR)src/include" pull: git submodule init diff --git a/README.md b/README.md index 96fda0b..93dbedb 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,3 @@ -# WIP Disclaimer -This repository is work-in-progress, use at your own risk. - -When sufficiently stable, this extension will move to github.com/duckdblabs - # DuckDB AWS Extension This is a DuckDB extension that provides features that depend on the AWS SDK. diff --git a/test/README.md b/test/README.md deleted file mode 100644 index f9bd9f6..0000000 --- a/test/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Testing the aws extension -This directory contains all the tests for the aws extension. The `sql` directory holds tests that are written as [SQLLogicTests](https://duckdb.org/dev/sqllogictest/intro.html). - -The root makefile contains targets to build and run all of these tests. To run the SQLLogicTests: -```bash -make test -``` \ No newline at end of file diff --git a/test/sql/aws_errors.test b/test/sql/aws_errors.test index 3cadd78..733bbf7 100644 --- a/test/sql/aws_errors.test +++ b/test/sql/aws_errors.test @@ -6,7 +6,7 @@ statement error CALL load_aws_credentials(); ---- -Catalog Error: Table Function with name load_aws_credentials does not exist! +Catalog Error: Function with name "load_aws_credentials" is not in the catalog, but it exists in the aws extension. # Require statement will ensure this test is run with this extension loaded require aws