Releases: ghdna/athena-express
Releases · ghdna/athena-express
Pagination Enabled
Workgroups & Stats
New capabilities:
- Support for Athena Workgroups
- Additional stats
Encryption
Encryption is now supported. Courtesy of @studmanho
S3 support for subfolders
S3 location now supports subfolders. Addresses #4
3.2.5
3.1.0
v3.1.0 checks for empty column values in every row and removes it from the final JSON response. As address in #2 .So instead of
{
Items: [{
resource: 'module',
name: 'util',
bucket_name: '',
directory_path: '',
file_name: '',
comments: 'mpla mpla mpla',
path_name: '',
function_name: 'login_mm',
index_name: '',
lambda: 'fetchCustomer',
branch: 'production'
}]
}
you get a cleaner response like this:
{
Items: [{
resource: 'module',
name: 'util',
comments: 'mpla mpla mpla',
function_name: 'login_mm',
lambda: 'fetchCustomer',
branch: 'production'
}]
}