mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 02:53:51 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
24 lines
821 B
SQL
24 lines
821 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.
|
|
|
|
\c :TEST_DBNAME :ROLE_SUPERUSER
|
|
CREATE SCHEMA IF NOT EXISTS "customSchema" AUTHORIZATION :ROLE_DEFAULT_PERM_USER;
|
|
\c :TEST_DBNAME :ROLE_DEFAULT_PERM_USER
|
|
|
|
\ir include/ddl_ops_1.sql
|
|
|
|
SELECT * FROM PUBLIC."Hypertable_1";
|
|
EXPLAIN (costs off) SELECT * FROM PUBLIC."Hypertable_1";
|
|
SELECT * FROM ONLY PUBLIC."Hypertable_1";
|
|
EXPLAIN (costs off) SELECT * FROM ONLY PUBLIC."Hypertable_1";
|
|
|
|
SELECT * FROM test.show_columns('PUBLIC."Hypertable_1"');
|
|
SELECT * FROM test.show_columns('_timescaledb_internal._hyper_1_1_chunk');
|
|
|
|
\ir include/ddl_ops_2.sql
|
|
|
|
SELECT * FROM test.show_columns('PUBLIC."Hypertable_1"');
|
|
|
|
SELECT * FROM PUBLIC."Hypertable_1";
|