()
| 189 | |
| 190 | |
| 191 | def create_client_protocol_strict_dimension(): |
| 192 | # only support strict dimensions if the file system is HDFS, since that is |
| 193 | # where the hive cluster is run. |
| 194 | if IS_HDFS: |
| 195 | return ImpalaTestDimension('strict_hs2_protocol', False, True) |
| 196 | else: |
| 197 | return create_client_protocol_no_strict_dimension() |
| 198 | |
| 199 | |
| 200 | def create_client_protocol_no_strict_dimension(): |
no test coverage detected