mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
Minor modifications
This commit is contained in:
parent
13852301ae
commit
31240aa243
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
# auto generated files
|
# auto generated files
|
||||||
*.logrt
|
*.logrt
|
||||||
src/Storages/System/StorageSystemTimeZones.generated.cpp
|
|
||||||
|
|
||||||
/build
|
/build
|
||||||
/build_*
|
/build_*
|
||||||
|
@ -182,7 +182,6 @@ SRCS(
|
|||||||
System/StorageSystemTableEngines.cpp
|
System/StorageSystemTableEngines.cpp
|
||||||
System/StorageSystemTableFunctions.cpp
|
System/StorageSystemTableFunctions.cpp
|
||||||
System/StorageSystemTables.cpp
|
System/StorageSystemTables.cpp
|
||||||
System/StorageSystemTimeZones.cpp
|
|
||||||
System/StorageSystemUserDirectories.cpp
|
System/StorageSystemUserDirectories.cpp
|
||||||
System/StorageSystemUsers.cpp
|
System/StorageSystemUsers.cpp
|
||||||
System/StorageSystemZeros.cpp
|
System/StorageSystemZeros.cpp
|
||||||
|
@ -7,7 +7,7 @@ PEERDIR(
|
|||||||
)
|
)
|
||||||
|
|
||||||
SRCS(
|
SRCS(
|
||||||
<? find . -name '*.cpp' | grep -v -F tests | grep -v -P 'Kafka|RabbitMQ|S3|HDFS|Licenses' | sed 's/^\.\// /' | sort ?>
|
<? find . -name '*.cpp' | grep -v -F tests | grep -v -P 'Kafka|RabbitMQ|S3|HDFS|Licenses|TimeZones' | sed 's/^\.\// /' | sort ?>
|
||||||
)
|
)
|
||||||
|
|
||||||
END()
|
END()
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
-- There are currently 562 timezones which are used from the binary embedded inside the ClickHouse binary
|
-- There are currently 594 timezones which are used from the binary embedded inside the ClickHouse binary
|
||||||
-- Refer: contrib/cctz-cmake/CMakeLists.txt for the complete list. The count should match when queried.
|
-- Refer: contrib/cctz-cmake/CMakeLists.txt for the complete list. The count may change but we expect there will be at least 500 timezones.
|
||||||
-- SELECT count(*)
|
-- SELECT count(*)
|
||||||
-- FROM system.time_zones
|
-- FROM system.time_zones
|
||||||
--
|
--
|
||||||
-- ┌─count()─┐
|
-- ┌─count()─┐
|
||||||
-- │ 562 │
|
-- │ 594 │
|
||||||
-- └─────────┘
|
-- └─────────┘
|
||||||
SELECT if ((SELECT count(*) FROM system.time_zones) = 562, 'ok', 'fail');
|
SELECT if ((SELECT count(*) FROM system.time_zones) > 500, 'ok', 'fail');
|
||||||
|
@ -135,3 +135,4 @@
|
|||||||
01391_join_on_dict_crash
|
01391_join_on_dict_crash
|
||||||
01401_FORMAT_SETTINGS
|
01401_FORMAT_SETTINGS
|
||||||
01411_bayesian_ab_testing
|
01411_bayesian_ab_testing
|
||||||
|
01455_time_zones
|
||||||
|
Loading…
Reference in New Issue
Block a user