├── .Rbuildignore ├── .codecov.yml ├── .github ├── .gitignore ├── issue_template.md └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── Connection.R ├── DataTypes.R ├── Driver.R ├── File_Parser.R ├── Options.R ├── RAthena.R ├── Result.R ├── View.R ├── athena_low_api.R ├── column_parser.R ├── dplyr_integration.R ├── fetch_utils.R ├── install.R ├── sql_translate_env.R ├── sql_translate_utils.R ├── table.R ├── utils.R └── zzz.R ├── RAthena.Rproj ├── README.md ├── cran-comments.md ├── docker └── Dockerfile ├── docs ├── 404.html ├── LICENSE-text.html ├── articles │ ├── athena_s3_example.png │ ├── aws_athena_query_caching.html │ ├── aws_athena_query_caching_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── aws_athena_unload.html │ ├── aws_athena_unload_files │ │ └── header-attrs-2.11 │ │ │ └── header-attrs.js │ ├── aws_s3_backend.html │ ├── aws_s3_backend_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── changing_backend_file_parser.html │ ├── changing_backend_file_parser_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── convert_and_save_cost.html │ ├── convert_and_save_cost_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── getting_started.html │ ├── getting_started_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── how_to_retry.html │ ├── how_to_retry_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.10 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ └── index.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── issue_template.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── AthenaConnection.html │ ├── AthenaDriver.html │ ├── AthenaWriteTables.html │ ├── Query.html │ ├── RAthena-package.html │ ├── RAthena_options.html │ ├── Rplot001.png │ ├── assume_role.html │ ├── athena.html │ ├── backend_dbplyr.html │ ├── backend_dbplyr_v1.html │ ├── backend_dbplyr_v2.html │ ├── dbClearResult.html │ ├── dbColumnInfo.html │ ├── dbConnect-AthenaDriver-method.html │ ├── dbConvertTable.html │ ├── dbDataType.html │ ├── dbDisconnect.html │ ├── dbExistsTable.html │ ├── dbFetch.html │ ├── dbGetInfo.html │ ├── dbGetPartition.html │ ├── dbGetQuery.html │ ├── dbGetStatement.html │ ├── dbGetTables.html │ ├── dbHasCompleted.html │ ├── dbIsValid.html │ ├── dbListFields.html │ ├── dbListTables.html │ ├── dbQuote.html │ ├── dbRemoveTable.html │ ├── dbShow.html │ ├── dbStatistics.html │ ├── db_compute.html │ ├── db_connection_describe.html │ ├── db_copy_to.html │ ├── db_desc.AthenaConnection.html │ ├── db_desc.html │ ├── db_save_query.html │ ├── dbplyr_edition.html │ ├── index.html │ ├── install_boto.html │ ├── session_token.html │ ├── sqlCreateTable.html │ ├── sqlData.html │ ├── sql_translate_env.html │ └── work_group.html └── sitemap.xml ├── inst └── icons │ ├── athena-logo.png │ ├── edit-sql.png │ └── help.png ├── man ├── AthenaConnection.Rd ├── AthenaDriver.Rd ├── AthenaListObjects.Rd ├── AthenaPreviewObject.Rd ├── AthenaResult.Rd ├── AthenaWriteTables.Rd ├── RAthena-package.Rd ├── RAthena_options.Rd ├── assume_role.Rd ├── athena.Rd ├── backend_dbplyr.Rd ├── backend_dbplyr_v1.Rd ├── dbConnect-AthenaDriver-method.Rd ├── dbConvertTable.Rd ├── dbListTables.Rd ├── db_compute.Rd ├── db_connection_describe.Rd ├── db_copy_to.Rd ├── db_desc.Rd ├── dbplyr_edition.Rd ├── install_boto.Rd ├── session_token.Rd ├── sqlCreateTable.Rd ├── sqlData.Rd ├── sql_translate_env.Rd └── work_group.Rd ├── tests ├── testthat.R └── testthat │ ├── helper.R │ ├── test-append-data.R │ ├── test-arn.R │ ├── test-athena-ddl.R │ ├── test-athena-request.R │ ├── test-bigint.R │ ├── test-cache.R │ ├── test-classes.R │ ├── test-datatransfer-datatable.R │ ├── test-datatransfer-vroom.R │ ├── test-dbConvertTable.R │ ├── test-dbDisconnect.R │ ├── test-dbFetch-n.R │ ├── test-dplyr-compute.R │ ├── test-dplyr-copy_to.R │ ├── test-dplyr-sql-trans-env.R │ ├── test-endpoint-override.R │ ├── test-exist-remove.R │ ├── test-file-parser.R │ ├── test-keyboard-interrupt.R │ ├── test-metadata.R │ ├── test-onload.R │ ├── test-retry.R │ ├── test-s3-upload-location.R │ ├── test-upload-file-parameter.R │ ├── test-view.R │ └── test-work-groups.R └── vignettes ├── athena_s3_example.png ├── aws_athena_query_caching.Rmd ├── aws_athena_unload.Rmd ├── aws_s3_backend.Rmd ├── changing_backend_file_parser.Rmd ├── convert_and_save_cost.Rmd ├── getting_started.Rmd └── how_to_retry.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Dyfan Jones -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/Connection.R -------------------------------------------------------------------------------- /R/DataTypes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/DataTypes.R -------------------------------------------------------------------------------- /R/Driver.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/Driver.R -------------------------------------------------------------------------------- /R/File_Parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/File_Parser.R -------------------------------------------------------------------------------- /R/Options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/Options.R -------------------------------------------------------------------------------- /R/RAthena.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/RAthena.R -------------------------------------------------------------------------------- /R/Result.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/Result.R -------------------------------------------------------------------------------- /R/View.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/View.R -------------------------------------------------------------------------------- /R/athena_low_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/athena_low_api.R -------------------------------------------------------------------------------- /R/column_parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/column_parser.R -------------------------------------------------------------------------------- /R/dplyr_integration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/dplyr_integration.R -------------------------------------------------------------------------------- /R/fetch_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/fetch_utils.R -------------------------------------------------------------------------------- /R/install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/install.R -------------------------------------------------------------------------------- /R/sql_translate_env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/sql_translate_env.R -------------------------------------------------------------------------------- /R/sql_translate_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/sql_translate_utils.R -------------------------------------------------------------------------------- /R/table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/table.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/R/zzz.R -------------------------------------------------------------------------------- /RAthena.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/RAthena.Rproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/articles/athena_s3_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/athena_s3_example.png -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching.html -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_athena_query_caching_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_query_caching_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_athena_unload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_unload.html -------------------------------------------------------------------------------- /docs/articles/aws_athena_unload_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_athena_unload_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend.html -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/aws_s3_backend_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/aws_s3_backend_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser.html -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/changing_backend_file_parser_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/changing_backend_file_parser_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost.html -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/convert_and_save_cost_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/convert_and_save_cost_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started.html -------------------------------------------------------------------------------- /docs/articles/getting_started_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/getting_started_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/getting_started_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/getting_started_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/getting_started_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/getting_started_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/getting_started_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/how_to_retry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry.html -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/header-attrs-2.10/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/header-attrs-2.10/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/how_to_retry_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/how_to_retry_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/issue_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/issue_template.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/AthenaConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/AthenaConnection.html -------------------------------------------------------------------------------- /docs/reference/AthenaDriver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/AthenaDriver.html -------------------------------------------------------------------------------- /docs/reference/AthenaWriteTables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/AthenaWriteTables.html -------------------------------------------------------------------------------- /docs/reference/Query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/Query.html -------------------------------------------------------------------------------- /docs/reference/RAthena-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/RAthena-package.html -------------------------------------------------------------------------------- /docs/reference/RAthena_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/RAthena_options.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/assume_role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/assume_role.html -------------------------------------------------------------------------------- /docs/reference/athena.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/athena.html -------------------------------------------------------------------------------- /docs/reference/backend_dbplyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/backend_dbplyr.html -------------------------------------------------------------------------------- /docs/reference/backend_dbplyr_v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/backend_dbplyr_v1.html -------------------------------------------------------------------------------- /docs/reference/backend_dbplyr_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/backend_dbplyr_v2.html -------------------------------------------------------------------------------- /docs/reference/dbClearResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbClearResult.html -------------------------------------------------------------------------------- /docs/reference/dbColumnInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbColumnInfo.html -------------------------------------------------------------------------------- /docs/reference/dbConnect-AthenaDriver-method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbConnect-AthenaDriver-method.html -------------------------------------------------------------------------------- /docs/reference/dbConvertTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbConvertTable.html -------------------------------------------------------------------------------- /docs/reference/dbDataType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbDataType.html -------------------------------------------------------------------------------- /docs/reference/dbDisconnect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbDisconnect.html -------------------------------------------------------------------------------- /docs/reference/dbExistsTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbExistsTable.html -------------------------------------------------------------------------------- /docs/reference/dbFetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbFetch.html -------------------------------------------------------------------------------- /docs/reference/dbGetInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbGetInfo.html -------------------------------------------------------------------------------- /docs/reference/dbGetPartition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbGetPartition.html -------------------------------------------------------------------------------- /docs/reference/dbGetQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbGetQuery.html -------------------------------------------------------------------------------- /docs/reference/dbGetStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbGetStatement.html -------------------------------------------------------------------------------- /docs/reference/dbGetTables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbGetTables.html -------------------------------------------------------------------------------- /docs/reference/dbHasCompleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbHasCompleted.html -------------------------------------------------------------------------------- /docs/reference/dbIsValid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbIsValid.html -------------------------------------------------------------------------------- /docs/reference/dbListFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbListFields.html -------------------------------------------------------------------------------- /docs/reference/dbListTables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbListTables.html -------------------------------------------------------------------------------- /docs/reference/dbQuote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbQuote.html -------------------------------------------------------------------------------- /docs/reference/dbRemoveTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbRemoveTable.html -------------------------------------------------------------------------------- /docs/reference/dbShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbShow.html -------------------------------------------------------------------------------- /docs/reference/dbStatistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbStatistics.html -------------------------------------------------------------------------------- /docs/reference/db_compute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_compute.html -------------------------------------------------------------------------------- /docs/reference/db_connection_describe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_connection_describe.html -------------------------------------------------------------------------------- /docs/reference/db_copy_to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_copy_to.html -------------------------------------------------------------------------------- /docs/reference/db_desc.AthenaConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_desc.AthenaConnection.html -------------------------------------------------------------------------------- /docs/reference/db_desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_desc.html -------------------------------------------------------------------------------- /docs/reference/db_save_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/db_save_query.html -------------------------------------------------------------------------------- /docs/reference/dbplyr_edition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/dbplyr_edition.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/install_boto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/install_boto.html -------------------------------------------------------------------------------- /docs/reference/session_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/session_token.html -------------------------------------------------------------------------------- /docs/reference/sqlCreateTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/sqlCreateTable.html -------------------------------------------------------------------------------- /docs/reference/sqlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/sqlData.html -------------------------------------------------------------------------------- /docs/reference/sql_translate_env.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/sql_translate_env.html -------------------------------------------------------------------------------- /docs/reference/work_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/reference/work_group.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/icons/athena-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/inst/icons/athena-logo.png -------------------------------------------------------------------------------- /inst/icons/edit-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/inst/icons/edit-sql.png -------------------------------------------------------------------------------- /inst/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/inst/icons/help.png -------------------------------------------------------------------------------- /man/AthenaConnection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaConnection.Rd -------------------------------------------------------------------------------- /man/AthenaDriver.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaDriver.Rd -------------------------------------------------------------------------------- /man/AthenaListObjects.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaListObjects.Rd -------------------------------------------------------------------------------- /man/AthenaPreviewObject.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaPreviewObject.Rd -------------------------------------------------------------------------------- /man/AthenaResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaResult.Rd -------------------------------------------------------------------------------- /man/AthenaWriteTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/AthenaWriteTables.Rd -------------------------------------------------------------------------------- /man/RAthena-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/RAthena-package.Rd -------------------------------------------------------------------------------- /man/RAthena_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/RAthena_options.Rd -------------------------------------------------------------------------------- /man/assume_role.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/assume_role.Rd -------------------------------------------------------------------------------- /man/athena.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/athena.Rd -------------------------------------------------------------------------------- /man/backend_dbplyr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/backend_dbplyr.Rd -------------------------------------------------------------------------------- /man/backend_dbplyr_v1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/backend_dbplyr_v1.Rd -------------------------------------------------------------------------------- /man/dbConnect-AthenaDriver-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/dbConnect-AthenaDriver-method.Rd -------------------------------------------------------------------------------- /man/dbConvertTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/dbConvertTable.Rd -------------------------------------------------------------------------------- /man/dbListTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/dbListTables.Rd -------------------------------------------------------------------------------- /man/db_compute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/db_compute.Rd -------------------------------------------------------------------------------- /man/db_connection_describe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/db_connection_describe.Rd -------------------------------------------------------------------------------- /man/db_copy_to.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/db_copy_to.Rd -------------------------------------------------------------------------------- /man/db_desc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/db_desc.Rd -------------------------------------------------------------------------------- /man/dbplyr_edition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/dbplyr_edition.Rd -------------------------------------------------------------------------------- /man/install_boto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/install_boto.Rd -------------------------------------------------------------------------------- /man/session_token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/session_token.Rd -------------------------------------------------------------------------------- /man/sqlCreateTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/sqlCreateTable.Rd -------------------------------------------------------------------------------- /man/sqlData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/sqlData.Rd -------------------------------------------------------------------------------- /man/sql_translate_env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/sql_translate_env.Rd -------------------------------------------------------------------------------- /man/work_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/man/work_group.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-append-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-append-data.R -------------------------------------------------------------------------------- /tests/testthat/test-arn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-arn.R -------------------------------------------------------------------------------- /tests/testthat/test-athena-ddl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-athena-ddl.R -------------------------------------------------------------------------------- /tests/testthat/test-athena-request.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-athena-request.R -------------------------------------------------------------------------------- /tests/testthat/test-bigint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-bigint.R -------------------------------------------------------------------------------- /tests/testthat/test-cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-cache.R -------------------------------------------------------------------------------- /tests/testthat/test-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-classes.R -------------------------------------------------------------------------------- /tests/testthat/test-datatransfer-datatable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-datatransfer-datatable.R -------------------------------------------------------------------------------- /tests/testthat/test-datatransfer-vroom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-datatransfer-vroom.R -------------------------------------------------------------------------------- /tests/testthat/test-dbConvertTable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dbConvertTable.R -------------------------------------------------------------------------------- /tests/testthat/test-dbDisconnect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dbDisconnect.R -------------------------------------------------------------------------------- /tests/testthat/test-dbFetch-n.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dbFetch-n.R -------------------------------------------------------------------------------- /tests/testthat/test-dplyr-compute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dplyr-compute.R -------------------------------------------------------------------------------- /tests/testthat/test-dplyr-copy_to.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dplyr-copy_to.R -------------------------------------------------------------------------------- /tests/testthat/test-dplyr-sql-trans-env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-dplyr-sql-trans-env.R -------------------------------------------------------------------------------- /tests/testthat/test-endpoint-override.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-endpoint-override.R -------------------------------------------------------------------------------- /tests/testthat/test-exist-remove.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-exist-remove.R -------------------------------------------------------------------------------- /tests/testthat/test-file-parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-file-parser.R -------------------------------------------------------------------------------- /tests/testthat/test-keyboard-interrupt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-keyboard-interrupt.R -------------------------------------------------------------------------------- /tests/testthat/test-metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-onload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-onload.R -------------------------------------------------------------------------------- /tests/testthat/test-retry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-retry.R -------------------------------------------------------------------------------- /tests/testthat/test-s3-upload-location.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-s3-upload-location.R -------------------------------------------------------------------------------- /tests/testthat/test-upload-file-parameter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-upload-file-parameter.R -------------------------------------------------------------------------------- /tests/testthat/test-view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-view.R -------------------------------------------------------------------------------- /tests/testthat/test-work-groups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/tests/testthat/test-work-groups.R -------------------------------------------------------------------------------- /vignettes/athena_s3_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/athena_s3_example.png -------------------------------------------------------------------------------- /vignettes/aws_athena_query_caching.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/aws_athena_query_caching.Rmd -------------------------------------------------------------------------------- /vignettes/aws_athena_unload.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/aws_athena_unload.Rmd -------------------------------------------------------------------------------- /vignettes/aws_s3_backend.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/aws_s3_backend.Rmd -------------------------------------------------------------------------------- /vignettes/changing_backend_file_parser.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/changing_backend_file_parser.Rmd -------------------------------------------------------------------------------- /vignettes/convert_and_save_cost.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/convert_and_save_cost.Rmd -------------------------------------------------------------------------------- /vignettes/getting_started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/getting_started.Rmd -------------------------------------------------------------------------------- /vignettes/how_to_retry.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyfanJones/RAthena/HEAD/vignettes/how_to_retry.Rmd --------------------------------------------------------------------------------