mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-28 09:46:44 +08:00
This maintenance release contains bugfixes since the 1.6.0 release. We deem it medium priority for upgrading. In particular the fixes contained in this maintenance release address bugs in continuous aggregates, time_bucket_gapfill, partial index handling and drop_chunks. **For this release only**, you will need to restart the database after upgrade before restoring a backup. **Minor Features** * #1666 Support drop_chunks API for continuous aggregates * #1711 Change log level for continuous aggregate materialization messages **Bugfixes** * #1630 Print notice for COPY TO on hypertable * #1648 Drop chunks from materialized hypertable * #1668 Cannot add dimension if hypertable has empty chunks * #1673 Fix crash when interrupting create_hypertable * #1674 Fix time_bucket_gapfill's interaction with GROUP BY * #1686 Fix order by queries on compressed hypertables that have char segment by column * #1687 Fix issue with disabling compression when foreign keys are present * #1688 Handle many BGW jobs better * #1698 Add logic to ignore dropped chunks in hypertable_relation_size * #1704 Fix bad plan for continuous aggregate materialization * #1709 Prevent starting background workers with NOLOGIN * #1713 Fix miscellaneous background worker issues * #1715 Fix issue with overly aggressive chunk exclusion in outer joins * #1719 Fix restoring/scheduler entrypoint to avoid BGW death * #1720 Add scheduler cache invalidations * #1727 Fix compressing INTERVAL columns * #1728 Handle Sort nodes in ConstraintAwareAppend * #1730 Fix partial index handling on hypertables * #1739 Use release OpenSSL DLLs for debug builds on Windows * #1740 Fix invalidation entries from multiple caggs on same hypertable * #1743 Fix continuous aggregate materialization timezone handling * #1748 Fix remove_drop_chunks_policy for continuous aggregates **Thanks** * @RJPhillips01 for reporting an issue with drop chunks. * @b4eEx for reporting an issue with disabling compression. * @darko408 for reporting an issue with order by on compressed hypertables * @mrechte for reporting an issue with compressing INTERVAL columns * @tstaehli for reporting an issue with ConstraintAwareAppend * @chadshowalter for reporting an issue with partial index on hypertables * @geoffreybennett for reporting an issue with create_hypertable when interrupting operations * @alxndrdude for reporting an issue with background workers during restore * @zcavaliero for reporting and fixing an issue with dropped columns in hypertable_relation_size * @ismailakpolat for reporting an issue with cagg materialization on hypertables with TIMESTAMP column
227 lines
7.7 KiB
CMake
227 lines
7.7 KiB
CMake
set(INSTALL_FILE ${PROJECT_NAME}--${PROJECT_VERSION_MOD}.sql)
|
|
|
|
# Source files that define the schemas and tables for our metadata
|
|
set(PRE_INSTALL_SOURCE_FILES
|
|
pre_install/schemas.sql # Must be first
|
|
pre_install/types.pre.sql
|
|
pre_install/types.functions.sql
|
|
pre_install/types.post.sql # Must be before tables.sql
|
|
pre_install/tables.sql
|
|
pre_install/insert_data.sql
|
|
pre_install/bgw_scheduler_startup.sql
|
|
)
|
|
|
|
# Things like aggregate functions cannot be REPLACEd and really
|
|
# need to be created just once(like PRE_INSTALL_SOURCE_FILES)
|
|
# but unlike PRE_INSTALL_SOURCE_FILES these have to be loaded
|
|
# after everything else is loaded.
|
|
set(IMMUTABLE_API_SOURCE_FILES
|
|
aggregates.sql
|
|
)
|
|
|
|
# The rest of the source files defining mostly functions
|
|
set(SOURCE_FILES
|
|
pre_install/types.functions.sql
|
|
hypertable.sql
|
|
chunk.sql
|
|
ddl_internal.sql
|
|
edition.sql
|
|
util_time.sql
|
|
util_internal_table_ddl.sql
|
|
chunk_constraint.sql
|
|
hypertable_constraint.sql
|
|
partitioning.sql
|
|
schema_info.sql
|
|
ddl_api.sql
|
|
ddl_triggers.sql
|
|
bookend.sql
|
|
time_bucket.sql
|
|
version.sql
|
|
size_utils.sql
|
|
histogram.sql
|
|
cache.sql
|
|
bgw_scheduler.sql
|
|
metadata.sql
|
|
views.sql
|
|
gapfill.sql
|
|
maintenance_utils.sql
|
|
partialize_finalize.sql
|
|
restoring.sql
|
|
)
|
|
|
|
# These files should be pre-pended to update scripts so that they are
|
|
# executed before anything else during updates
|
|
set(PRE_UPDATE_FILES
|
|
updates/pre-update.sql
|
|
)
|
|
|
|
# These files represent the modifications that happen in each version,
|
|
# excluding new objects or updates to functions. We use them to build
|
|
# a path (update script) from every historical version to the current
|
|
# version. Note that not all of these files may exist on disk, in case
|
|
# they would have no contents. There still needs to be an entry here
|
|
# to build an update script for that version. Thus, for every new
|
|
# release, an entry should be added here.
|
|
set(MOD_FILES
|
|
updates/0.1.0--0.2.0.sql
|
|
updates/0.2.0--0.3.0.sql
|
|
updates/0.3.0--0.4.0.sql
|
|
updates/0.4.0--0.4.1.sql
|
|
updates/0.4.1--0.4.2.sql
|
|
updates/0.4.2--0.5.0.sql
|
|
updates/0.5.0--0.6.0.sql
|
|
updates/0.6.0--0.6.1.sql
|
|
updates/0.6.1--0.7.0.sql
|
|
updates/0.7.0--0.7.1.sql
|
|
updates/0.7.1--0.8.0.sql
|
|
updates/0.8.0--0.9.0.sql
|
|
updates/0.9.0--0.9.1.sql
|
|
updates/0.9.1--0.9.2.sql
|
|
updates/0.9.2--0.10.0.sql
|
|
updates/0.10.0--0.10.1.sql
|
|
updates/0.10.1--0.11.0.sql
|
|
updates/0.11.0--0.12.0.sql
|
|
updates/0.12.0--0.12.1.sql
|
|
updates/0.12.1--1.0.0-rc1.sql
|
|
updates/1.0.0-rc1--1.0.0-rc2.sql
|
|
updates/1.0.0-rc2--1.0.0-rc3.sql
|
|
updates/1.0.0-rc3--1.0.0.sql
|
|
updates/1.0.0--1.0.1.sql
|
|
updates/1.0.1--1.1.0.sql
|
|
updates/1.1.0--1.1.1.sql
|
|
updates/1.1.1--1.2.0.sql
|
|
updates/1.2.0--1.2.1.sql
|
|
updates/1.2.1--1.2.2.sql
|
|
updates/1.2.2--1.3.0.sql
|
|
updates/1.3.0--1.3.1.sql
|
|
updates/1.3.1--1.3.2.sql
|
|
updates/1.3.2--1.4.0.sql
|
|
updates/1.4.0--1.4.1.sql
|
|
updates/1.4.1--1.4.2.sql
|
|
updates/1.4.2--1.5.0.sql
|
|
updates/1.5.0--1.5.1.sql
|
|
updates/1.5.1--1.6.0.sql
|
|
updates/1.6.0--1.6.1.sql
|
|
)
|
|
|
|
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
|
|
set(LOADER_PATHNAME "$libdir/timescaledb")
|
|
|
|
set(TS_MODULE_PATHNAME ${MODULE_PATHNAME} PARENT_SCOPE)
|
|
|
|
# Function to replace @MODULE_PATHNAME@ in source files, producing an
|
|
# output file in the build dir
|
|
function(version_files SRC_FILE_LIST OUTPUT_FILE_LIST)
|
|
set(result "")
|
|
foreach(unversioned_file ${SRC_FILE_LIST})
|
|
set(versioned_file ${unversioned_file})
|
|
list(APPEND result ${CMAKE_CURRENT_BINARY_DIR}/${versioned_file})
|
|
if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${unversioned_file})
|
|
configure_file(${unversioned_file} ${versioned_file} @ONLY)
|
|
endif ()
|
|
endforeach(unversioned_file)
|
|
set(${OUTPUT_FILE_LIST} "${result}" PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
# Create versioned files (replacing MODULE_PATHNAME) in the build
|
|
# directory of all our source files
|
|
version_files("${PRE_UPDATE_FILES}" PRE_UPDATE_FILES_VERSIONED)
|
|
version_files("${PRE_INSTALL_SOURCE_FILES}" PRE_INSTALL_SOURCE_FILES_VERSIONED)
|
|
version_files("${IMMUTABLE_API_SOURCE_FILES}" IMMUTABLE_API_SOURCE_FILES_VERSIONED)
|
|
version_files("${SOURCE_FILES}" SOURCE_FILES_VERSIONED)
|
|
version_files("${MOD_FILES}" MOD_FILES_VERSIONED)
|
|
version_files("updates/latest-dev.sql" LASTEST_MOD_VERSIONED)
|
|
version_files("notice.sql" NOTICE_FILE)
|
|
|
|
# Function to concatenate all files in SRC_FILE_LIST into file OUTPUT_FILE
|
|
function(cat_files SRC_FILE_LIST OUTPUT_FILE)
|
|
if (WIN32)
|
|
# Make list of files into string of files separated by "+"
|
|
# to make Windows copy concatenate them
|
|
file(TO_NATIVE_PATH "${SRC_FILE_LIST}" SRC_FILE_LIST_NATIVE)
|
|
string(REPLACE ";" ";+;" SQL_LIST_JOINED "${SRC_FILE_LIST_NATIVE}")
|
|
file(TO_NATIVE_PATH "${OUTPUT_FILE}" OUTPUT_FILE_NATIVE)
|
|
set(CAT_CMD copy /B /y ${SQL_LIST_JOINED} "\"${OUTPUT_FILE_NATIVE}\"" >NUL)
|
|
else ()
|
|
set(CAT_CMD cat ${SRC_FILE_LIST} > ${OUTPUT_FILE})
|
|
endif ()
|
|
add_custom_command(
|
|
OUTPUT ${OUTPUT_FILE}
|
|
DEPENDS ${SRC_FILE_LIST}
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
COMMAND ${CAT_CMD}
|
|
COMMENT "Generating ${OUTPUT_FILE}"
|
|
)
|
|
endfunction()
|
|
|
|
# Generate the extension file used with CREATE EXTENSION
|
|
cat_files(
|
|
"${PRE_INSTALL_SOURCE_FILES_VERSIONED};${SOURCE_FILES_VERSIONED};${IMMUTABLE_API_SOURCE_FILES_VERSIONED};${NOTICE_FILE}"
|
|
${CMAKE_CURRENT_BINARY_DIR}/${INSTALL_FILE}
|
|
)
|
|
add_custom_target(sqlfile ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${INSTALL_FILE})
|
|
|
|
# Generate the update files used with ALTER EXTENSION <name> UPDATE
|
|
set(MOD_FILE_REGEX "([0-9]+\\.[0-9]+\\.*[0-9]+[-a-z0-9]*)--([0-9]+\\.[0-9]+\\.*[0-9]+[-a-z0-9]*).sql")
|
|
|
|
# We'd like to process the updates in reverse (descending) order
|
|
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/updates/${UPDATE_FROM_VERSION}--${PROJECT_VERSION_MOD}.sql")
|
|
set(MOD_FILES_LIST ${MOD_FILES_VERSIONED})
|
|
else()
|
|
set(MOD_FILES_LIST "${MOD_FILES_VERSIONED};updates/${UPDATE_FROM_VERSION}--${PROJECT_VERSION_MOD}.sql")
|
|
endif()
|
|
|
|
list(REVERSE MOD_FILES_LIST)
|
|
|
|
# Variable that will hold the list of update scripts from every
|
|
# previous version to the current version
|
|
set(UPDATE_SCRIPTS "")
|
|
|
|
# A list of current modfiles. We append to this list for every
|
|
# previous version that moves us further away from the current
|
|
# version, thus making the update path longer as we move back in
|
|
# history
|
|
set(CURR_MOD_FILES "${LASTEST_MOD_VERSIONED}")
|
|
|
|
# Now loop through the modfiles and generate the update files
|
|
foreach(transition_mod_file ${MOD_FILES_LIST})
|
|
|
|
if (NOT (${transition_mod_file} MATCHES ${MOD_FILE_REGEX}))
|
|
message(FATAL_ERROR "Cannot parse update file name ${mod_file}")
|
|
endif ()
|
|
|
|
set(START_VERSION ${CMAKE_MATCH_1})
|
|
set(END_VERSION ${CMAKE_MATCH_2})
|
|
set(PRE_FILES ${PRE_UPDATE_FILES_VERSIONED})
|
|
|
|
# Check for version-specific update code with fixes
|
|
if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/updates/${START_VERSION}.sql)
|
|
version_files("updates/${START_VERSION}.sql" ORIGIN_MOD_FILE)
|
|
list(APPEND PRE_FILES ${ORIGIN_MOD_FILE})
|
|
endif ()
|
|
|
|
# There might not have been any changes in the modfile, in which
|
|
# case the modfile need not be present
|
|
if (EXISTS ${transition_mod_file})
|
|
# Prepend the modfile as we are moving through the versions in
|
|
# descending order
|
|
list(INSERT CURR_MOD_FILES 0 ${transition_mod_file})
|
|
endif ()
|
|
|
|
set(UPDATE_SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/timescaledb--${START_VERSION}--${PROJECT_VERSION_MOD}.sql)
|
|
list(APPEND UPDATE_SCRIPTS ${UPDATE_SCRIPT})
|
|
if (CURR_MOD_FILES)
|
|
cat_files("${PRE_FILES};${CURR_MOD_FILES};${SOURCE_FILES_VERSIONED}" ${UPDATE_SCRIPT})
|
|
else ()
|
|
cat_files("${PRE_FILES};${SOURCE_FILES_VERSIONED}" ${UPDATE_SCRIPT})
|
|
endif ()
|
|
endforeach(transition_mod_file)
|
|
|
|
add_custom_target(sqlupdatescripts ALL DEPENDS ${UPDATE_SCRIPTS})
|
|
|
|
# Install target for the extension file and update scripts
|
|
install(
|
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/${INSTALL_FILE}
|
|
${UPDATE_SCRIPTS}
|
|
DESTINATION "${PG_SHAREDIR}/extension")
|