Skip to content

Commit a8e6ba1

Browse files
authored
fix: error message when to_parquet is not available size: XS
1 parent 0d00744 commit a8e6ba1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/bridge/symfony/http-foundation/src/Flow/Bridge/Symfony/HttpFoundation/Output

src/bridge/symfony/http-foundation/src/Flow/Bridge/Symfony/HttpFoundation/Output/ParquetOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Flow\Parquet\ParquetFile\Compressions;
1313

1414
if (!function_exists('Flow\ETL\Adapter\Parquet\to_parquet')) {
15-
throw new \RuntimeException('Flow\ETL\Adapter\Parquet\to_parquet function is not available. Make sure that composer require flow-php/etl-adapter-json dependency is present in your composer.json.');
15+
throw new \RuntimeException('Flow\ETL\Adapter\Parquet\to_parquet function is not available. Make sure that composer require flow-php/etl-adapter-parquet dependency is present in your composer.json.');
1616
}
1717

1818
final readonly class ParquetOutput implements Output

0 commit comments

Comments
 (0)