| 1951 | namespace |
| 1952 | { |
| 1953 | bool isStdinNotEmptyAndValid(ReadBuffer & std_in) |
| 1954 | { |
| 1955 | try |
| 1956 | { |
| 1957 | return !std_in.eof(); |
| 1958 | } |
| 1959 | catch (const Exception & e) |
| 1960 | { |
| 1961 | if (e.code() == ErrorCodes::CANNOT_READ_FROM_FILE_DESCRIPTOR) |
| 1962 | return false; |
| 1963 | throw; |
| 1964 | } |
| 1965 | } |
| 1966 | } |
| 1967 | |
| 1968 |
no test coverage detected