Skip to content

Commit c9b7e58

Browse files
committed
fix style
1 parent 3268929 commit c9b7e58

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/queries/0_stateless/03519_storage_url.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@ select 'dst_remote', * from dst_remote order by ALL;
4444
$CLICKHOUSE_CLIENT -q "
4545
system flush logs query_log;
4646
47-
select query, written_rows, ProfileEvents['ReadWriteBufferFromHTTPRequestsSent'] + ProfileEvents['WriteBufferFromHTTPRequestsSent'] as HTTPRequests, ProfileEvents['StorageConnectionsCreated'] + ProfileEvents['StorageConnectionsReused'] as HTTPConnections
47+
select
48+
query,
49+
written_rows,
50+
ProfileEvents['ReadWriteBufferFromHTTPRequestsSent'] + ProfileEvents['WriteBufferFromHTTPRequestsSent'] as HTTPRequests,
51+
ProfileEvents['StorageConnectionsCreated'] + ProfileEvents['StorageConnectionsReused'] as HTTPConnections
4852
from system.query_log
4953
where
50-
current_database = '${CLICKHOUSE_DATABASE}' and
54+
current_database = currentDatabase() and
5155
type = 'QueryFinish' and
5256
query_kind = 'Insert'
5357
order by ALL

0 commit comments

Comments
 (0)