| 38 | |
| 39 | |
| 40 | Block InternalTextLogsQueue::getSampleBlock() |
| 41 | { |
| 42 | return Block { |
| 43 | {std::make_shared<DataTypeDateTime>(), "event_time"}, |
| 44 | {std::make_shared<DataTypeUInt32>(), "event_time_microseconds"}, |
| 45 | {std::make_shared<DataTypeString>(), "host_name"}, |
| 46 | {std::make_shared<DataTypeString>(), "query_id"}, |
| 47 | {std::make_shared<DataTypeUInt64>(), "thread_id"}, |
| 48 | {std::make_shared<DataTypeInt8>(), "priority"}, |
| 49 | {std::make_shared<DataTypeString>(), "source"}, |
| 50 | {std::make_shared<DataTypeString>(), "text"} |
| 51 | }; |
| 52 | } |
| 53 | |
| 54 | MutableColumns InternalTextLogsQueue::getSampleColumns() |
| 55 | { |
no outgoing calls
no test coverage detected