Skip to content

fix: support for more complex Array Tuple params (#268) #1416

fix: support for more complex Array Tuple params (#268)

fix: support for more complex Array Tuple params (#268) #1416

Triggered via push October 21, 2024 10:31
Status Success
Total duration 1m 4s
Artifacts

infection.yml

on: push
Infection
54s
Infection
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
Infection: src/Client/Http/RequestFactory.php#L111
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ } try { $body = new MultipartStream($streamElements); - $request = $request->withBody($body)->withHeader('Content-Type', 'multipart/form-data; boundary=' . $body->getBoundary()); + $request = $request->withBody($body)->withHeader('Content-Type', 'multipart/form-data; boundary='); } catch (InvalidArgumentException) { absurd(); }
Infection: src/Client/PsrClickHouseClient.php#L62
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } public function executeQueryWithParams(string $query, array $params, array $settings = []): void { - $this->executeRequest($this->sqlFactory->createWithParameters($query, $params), params: $params, settings: $settings); + } public function select(string $query, Format $outputFormat, array $settings = []): Output {
Infection: src/Sql/ValueFormatter.php#L99
Escaped Mutant for Mutator "UnwrapArrayMap": @@ @@ throw UnsupportedParamValue::value($value); } $firstValue = $value[array_key_first($value)]; - $mapper = is_array($firstValue) ? fn($value): string => sprintf('(%s)', implode(',', array_map(fn($val) => $this->format($val), $value))) : fn($value): string => $value === null ? 'NULL' : $this->format($value); + $mapper = is_array($firstValue) ? fn($value): string => sprintf('(%s)', implode(',', $value)) : fn($value): string => $value === null ? 'NULL' : $this->format($value); return implode(',', array_map($mapper, $value)); } return $this->formatArray($value);