mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 02:53:51 +08:00
The command `get_git_commit` shows quite a little information and especially if mistakes are made it is hard to verify what the binary is actually based on. This commit extends the function to provide some more information: specifically the SHA of the HEAD regardless of whether there is a tag on it or not and the time for the HEAD commit. ``` postgres=# select * from _timescaledb_internal.get_git_commit(); commit_tag | commit_hash | commit_time --------------------------+-------------+------------------------ 1.7.4-10-g09b0b778-dirty | 09b0b778 | 2020-09-13 17:50:38+02 (1 row) ``` If git is not installed, the function `get_git_commit` will return an error indicating that no git information is available. If some of the fields are available, they will be emitted and the remaining fields will be NULL. Fixes #2457
31 lines
706 B
C
31 lines
706 B
C
/*
|
|
* This file and its contents are licensed under the Apache License 2.0.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-APACHE for a copy of the license.
|
|
*/
|
|
#ifndef TIMESCALEDB_ANNOTATIONS_H
|
|
#define TIMESCALEDB_ANNOTATIONS_H
|
|
|
|
/* Supported since clang 12 and GCC 7 */
|
|
#if defined __has_attribute
|
|
#if __has_attribute(fallthrough)
|
|
#define TS_FALLTHROUGH __attribute__((fallthrough))
|
|
#else
|
|
#define TS_FALLTHROUGH /* FALLTHROUGH */
|
|
#endif
|
|
#else
|
|
#define TS_FALLTHROUGH /* FALLTHROUGH */
|
|
#endif
|
|
|
|
#ifdef __has_attribute
|
|
#if __has_attribute(used)
|
|
#define TS_USED __attribute__((used))
|
|
#else
|
|
#define TS_USED
|
|
#endif
|
|
#else
|
|
#define TS_USED
|
|
#endif
|
|
|
|
#endif /* TIMESCALEDB_ANNOTATIONS_H */
|