Skip to content

Commit 7906808

Browse files
committed
Format fixes
1 parent 3c2f58b commit 7906808

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

extension/httpfs/httpfs.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ void TimestampToTimeT(timestamp_t timestamp, time_t &result) {
275275
HTTPFileHandle::HTTPFileHandle(FileSystem &fs, const OpenFileInfo &file, FileOpenFlags flags,
276276
unique_ptr<HTTPParams> params_p)
277277
: FileHandle(fs, file.path, flags), params(std::move(params_p)), http_params(params->Cast<HTTPFSParams>()),
278-
flags(flags), length(0), force_full_download(false), buffer_available(0), buffer_idx(0), file_offset(0), buffer_start(0), buffer_end(0) {
278+
flags(flags), length(0), force_full_download(false), buffer_available(0), buffer_idx(0), file_offset(0),
279+
buffer_start(0), buffer_end(0) {
279280
// check if the handle has extended properties that can be set directly in the handle
280281
// if we have these properties we don't need to do a head request to obtain them later
281282
if (file.extended_info) {

test/sql/secret/secret_aws.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# name: test/sql/secret/secret_aws.test
22
# description: Tests secret refreshing
3-
# group: [secrets]
3+
# group: [secret]
44

55
require-env S3_TEST_SERVER_AVAILABLE 1
66

test/sql/secret/secret_refresh.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# name: test/sql/secret/secret_refresh.test
22
# description: Tests secret refreshing
3-
# group: [secrets]
3+
# group: [secret]
44

55
require-env S3_TEST_SERVER_AVAILABLE 1
66

test/sql/secret/secret_refresh_attach.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# name: test/sql/secret/secret_refresh_attach.test
22
# description: Tests secret refreshing
3-
# group: [secrets]
3+
# group: [secret]
44

55
require-env S3_TEST_SERVER_AVAILABLE 1
66

test/sql/secret/test_secret_type.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# name: test/sql/secret/test_secret_type.test
22
# description: Test the secret types added by this extension
3-
# group: [httpfs]
3+
# group: [secret]
44

55
require httpfs
66

0 commit comments

Comments
 (0)