mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-21 21:21:22 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
10 lines
495 B
SQL
10 lines
495 B
SQL
-- 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.
|
|
|
|
-- Test that get_git_commit returns text
|
|
select pg_typeof(git) from _timescaledb_internal.get_git_commit() AS git;
|
|
|
|
-- Test that get_os_info returns 3 x text
|
|
select pg_typeof(sysname) AS sysname_type,pg_typeof(version) AS version_type,pg_typeof(release) AS release_type from _timescaledb_internal.get_os_info();
|