Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mytherin committed Oct 28, 2023
1 parent 64e4f6b commit 3af5041
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,10 @@ add_subdirectory(src)
prepend(LIBPG_SOURCES_FULLPATH ${CMAKE_CURRENT_SOURCE_DIR} ${LIBPG_SOURCES})

if(EXISTS "postgres")

else()
execute_process(
COMMAND sh pgconfigure ${LIBPG_SOURCES_FULLPATH}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
execute_process(COMMAND sh pgconfigure ${LIBPG_SOURCES_FULLPATH}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif()
add_custom_command(
OUTPUT ${LIBPG_SOURCES_FULLPATH}
Expand Down
3 changes: 2 additions & 1 deletion src/include/postgres_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ namespace duckdb {
struct PostgresVersion {
PostgresVersion() {
}
PostgresVersion(idx_t major_v, idx_t minor_v, idx_t patch_v = 0) : major_v(major_v), minor_v(minor_v), patch_v(patch_v) {
PostgresVersion(idx_t major_v, idx_t minor_v, idx_t patch_v = 0)
: major_v(major_v), minor_v(minor_v), patch_v(patch_v) {
}

idx_t major_v = 0;
Expand Down

0 comments on commit 3af5041

Please sign in to comment.