Added sample query log file (#4996)

This commit is contained in:
Mayur Singal 2022-05-17 18:01:00 +05:30 committed by GitHub
parent b2e517f846
commit f61ab495ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,4 @@
query,database_name,schema_name,user_name,start_time,end_time,aborted
select * from sales;,default,information_schema,root,2011-10-05 14:48:00,2011-10-05 14:48:01,TRUE
select * from marketing;,default,information_schema,root,2011-10-05 14:48:00,2011-10-05 14:48:01,FALSE
insert into marketing select * from sales;,default,information_schema,root,2011-10-05 14:48:00,2011-10-05 14:48:01,TRUE
1 query database_name schema_name user_name start_time end_time aborted
2 select * from sales; default information_schema root 2011-10-05 14:48:00 2011-10-05 14:48:01 TRUE
3 select * from marketing; default information_schema root 2011-10-05 14:48:00 2011-10-05 14:48:01 FALSE
4 insert into marketing select * from sales; default information_schema root 2011-10-05 14:48:00 2011-10-05 14:48:01 TRUE