| 17 | |
| 18 | |
| 19 | Block InternalTextLogsQueue::getSampleBlock() |
| 20 | { |
| 21 | return Block { |
| 22 | {std::make_shared<DataTypeDateTime>(), "event_time"}, |
| 23 | {std::make_shared<DataTypeUInt32>(), "event_time_microseconds"}, |
| 24 | {std::make_shared<DataTypeString>(), "host_name"}, |
| 25 | {std::make_shared<DataTypeString>(), "query_id"}, |
| 26 | {std::make_shared<DataTypeUInt64>(), "thread_id"}, |
| 27 | {std::make_shared<DataTypeInt8>(), "priority"}, |
| 28 | {std::make_shared<DataTypeString>(), "source"}, |
| 29 | {std::make_shared<DataTypeString>(), "text"} |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | MutableColumns InternalTextLogsQueue::getSampleColumns() |
| 34 | { |
no outgoing calls
no test coverage detected