From cc0e83f5a92126bd56373109c85cd3d0f9aac754 Mon Sep 17 00:00:00 2001 From: Evgeniy Ratkov Date: Fri, 6 Oct 2023 11:21:28 +0300 Subject: [PATCH] Fix check for find changes at DDL files (#21) After commit 97f1f9b46b0941a86cffdb2120b900b55ce58928 all DDL files were moved to directory "control/ddl". At upgrade test there is check, which finds diff at DDL files from last release version. Path, where DDL files are found, was not changed, and this check did not work. --- upgrade_test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade_test/CMakeLists.txt b/upgrade_test/CMakeLists.txt index 1e3a2562..f6c0e8b8 100644 --- a/upgrade_test/CMakeLists.txt +++ b/upgrade_test/CMakeLists.txt @@ -37,7 +37,7 @@ exec_program( ) # check whether DDL file (*.sql) is modified -file(GLOB ddl_files ${CMAKE_SOURCE_DIR}/*.sql) +file(GLOB ddl_files ${CMAKE_SOURCE_DIR}/control/ddl/*.sql) foreach(ddl IN LISTS ddl_files) cmake_path(GET ddl FILENAME ddl) exec_program(