2023-11-03 15:14:25 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
|
|
# shellcheck source=../shell_config.sh
|
|
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
|
|
|
$CLICKHOUSE_LOCAL -q "select count() from file('$CURDIR/data_npy/one_dim.npy') settings optimize_count_from_files=0"
|
|
|
|
$CLICKHOUSE_LOCAL -q "select count() from file('$CURDIR/data_npy/one_dim.npy') settings optimize_count_from_files=1"
|
2023-11-03 17:21:37 +00:00
|
|
|
$CLICKHOUSE_LOCAL -q "select count() from file('$CURDIR/data_npy/one_dim.npy', auto, 'array Int64') settings optimize_count_from_files=1"
|
2024-08-07 10:55:16 +00:00
|
|
|
$CLICKHOUSE_LOCAL -m -q "
|
2023-11-03 15:14:25 +00:00
|
|
|
desc file('$CURDIR/data_npy/one_dim.npy');
|
|
|
|
select number_of_rows from system.schema_inference_cache where format='Npy';
|
|
|
|
"
|
2023-11-14 13:27:32 +00:00
|
|
|
$CLICKHOUSE_LOCAL -q "select count() from file('$CURDIR/data_npy/npy_big.npy') settings optimize_count_from_files=0"
|
|
|
|
$CLICKHOUSE_LOCAL -q "select count() from file('$CURDIR/data_npy/npy_big.npy') settings optimize_count_from_files=1"
|
2024-08-07 10:55:16 +00:00
|
|
|
$CLICKHOUSE_LOCAL -m -q "
|
2023-11-14 13:27:32 +00:00
|
|
|
desc file('$CURDIR/data_npy/npy_big.npy');
|
|
|
|
select number_of_rows from system.schema_inference_cache where format='Npy';
|
|
|
|
"
|