blob: 1279a1b9354e4961962ba2a8ceb059e5b8cf211d [file] [log] [blame]
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you under the Apache License, Version 2.0 (the
-- "License"); you may not use this file except in compliance
-- with the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing,
-- software distributed under the License is distributed on an
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-- KIND, either express or implied. See the License for the
-- specific language governing permissions and limitations
-- under the License.
create table doris_test.test1 (
k1 bit,
k2 char(100),
k3 varchar(128),
k4 date,
k5 real,
k6 smallint,
k7 int,
k8 bigint,
k9 timestamp,
k10 decimal(10, 3)
);
CREATE TABLE doris_test.test2 (
id int8 NOT NULL,
c_user varchar(500) NULL,
c_time timestamp(0) NULL,
m_user varchar(500) NULL,
m_time timestamp(0) NULL,
app_id int8 NULL,
t_id int8 NULL,
deleted bool NULL DEFAULT false,
code varchar(255) NOT NULL DEFAULT ''::character varying,
name varchar(500) NOT NULL DEFAULT ''::character varying,
cate_id int8 NULL,
tag varchar(255) NOT NULL DEFAULT ''::character varying,
remark varchar(500) NULL,
CONSTRAINT p_dict PRIMARY KEY (id)
);
create table doris_test.test2_item (
id int8 NOT NULL,
c_user varchar(500) NULL,
c_time timestamp(0) NULL,
m_user varchar(500) NULL,
m_time timestamp(0) NULL,
app_id int8 NULL,
t_id int8 NULL,
deleted bool NULL DEFAULT false,
dict_id int8 NOT NULL,
o_idx int2 NULL,
label varchar(255) NULL,
value varchar(500) NULL,
CONSTRAINT p_dict_item PRIMARY KEY (id)
);
CREATE OR REPLACE VIEW doris_test.test2_view
AS SELECT item.id as id,
dict.code as code,
item.value as value,
item.label as label,
item.deleted as deleted,
item.o_idx as o_idx
FROM doris_test.test2 dict
LEFT JOIN doris_test.test2_item item ON item.dict_id = dict.id
WHERE dict.deleted = false AND item.deleted = false;
create table doris_test.test3 (
id int,
name varchar(20)
);
create table doris_test.test4 (
id int
);
CREATE TABLE doris_test.test5 (
id serial4 NOT NULL,
"result" jsonb null
);
CREATE TABLE doris_test.test6 (
id serial4 NOT NULL,
"result" jsonb null,
"limit" varchar(60) null
);
CREATE TABLE doris_test.test7 (
id serial4 NOT NULL,
"QueryResult" jsonb null
);
CREATE TABLE doris_test.test8 (
"id" int8 NOT NULL,
"c_user" varchar(100) COLLATE "pg_catalog"."default",
"c_time" timestamp(6),
"m_user" varchar(100) COLLATE "pg_catalog"."default",
"m_time" timestamp(6),
"app_id" int8,
"t_id" int8,
"deleted" bool DEFAULT false,
"w_t_s" timestamp(6),
"rf_id" varchar(64) COLLATE "pg_catalog"."default",
"e_info" jsonb,
"f_id" int8,
"id_code" varchar(255) COLLATE "pg_catalog"."default",
CONSTRAINT "f_a_w_r_p" PRIMARY KEY ("id")
);
CREATE TABLE doris_test.test9 (
id1 smallint,
id2 int,
id3 bool,
id4 varchar(10),
id5 bigint
);
CREATE TABLE catalog_pg_test.test10 (
ID INT NOT NULL,
bit_value bit,
real_value real,
cidr_value cidr,
inet_value inet,
macaddr_value macaddr,
bitn_value bit(10),
bitnv_value bit varying(10),
serial4_value serial4,
jsonb_value jsonb
);
CREATE TABLE catalog_pg_test.test11 (
ID INT PRIMARY KEY NOT NULL,
point_value point,
line_value line,
lseg_value lseg,
box_value box,
path_value path,
polygon_value polygon,
circle_value circle
);
CREATE TABLE catalog_pg_test.test12 (
ID INT NOT NULL,
uuid_value uuid
);
CREATE TABLE catalog_pg_test.test_all_types (
ID INT NOT NULL,
char_value char(100),
varchar_value varchar(128),
date_value date,
smallint_value smallint,
int_value int,
bigint_value bigint,
timestamp_value timestamp,
decimal_value decimal(10, 3),
bit_value bit,
real_value real,
cidr_value cidr,
inet_value inet,
macaddr_value macaddr,
bitn_value bit(10),
bitnv_value bit varying(10),
serial4_value serial4,
jsonb_value jsonb,
point_value point,
line_value line,
lseg_value lseg,
box_value box,
path_value path,
polygon_value polygon,
circle_value circle
);
CREATE TABLE catalog_pg_test.test_insert (
id varchar(128),
name varchar(128),
age int
);
CREATE TABLE catalog_pg_test.wkb_test (
id SERIAL PRIMARY KEY,
location bytea
);
CREATE TABLE catalog_pg_test.dt_test (
ts_field TIMESTAMP(3),
tzt_field TIMESTAMPTZ(3)
);
CREATE TABLE catalog_pg_test.json_test (
id serial PRIMARY KEY,
type varchar(10),
value json
);
CREATE TABLE catalog_pg_test.jsonb_test (
id serial PRIMARY KEY,
type varchar(10),
value jsonb
);
CREATE TABLE catalog_pg_test.person_r (
age int not null,
city varchar not null
)
PARTITION BY RANGE (age);
create table catalog_pg_test.person_r1 partition of catalog_pg_test.person_r for values from (MINVALUE) to (10);
create table catalog_pg_test.person_r2 partition of catalog_pg_test.person_r for values from (11) to (20);
create table catalog_pg_test.person_r3 partition of catalog_pg_test.person_r for values from (21) to (30);
create table catalog_pg_test.person_r4 partition of catalog_pg_test.person_r for values from (31) to (MAXVALUE);
CREATE TABLE catalog_pg_test.tb_test_alarm (
id varchar(64) NOT NULL,
alarm_type varchar(10) NOT NULL,
happen_time timestamptz NOT NULL,
CONSTRAINT tb_test_pk PRIMARY KEY (id)
);
create table catalog_pg_test.tb_test_alarm_2020_12 () inherits (catalog_pg_test.tb_test_alarm);
create table catalog_pg_test.tb_test_alarm_2020_11 () inherits (catalog_pg_test.tb_test_alarm);
create table catalog_pg_test.tb_test_alarm_2020_10 () inherits (catalog_pg_test.tb_test_alarm);
create table catalog_pg_test.tb_test_alarm_2020_09 () inherits (catalog_pg_test.tb_test_alarm);
--创建分区函数
CREATE OR REPLACE FUNCTION alarm_partition_trigger()
RETURNS TRIGGER AS $$
BEGIN
IF NEW.happen_time >= '2020-09-01 00:00:00' and NEW.happen_time <= '2020-09-30 23:59:59'
THEN
INSERT INTO catalog_pg_test.tb_test_alarm_2020_09 VALUES (NEW.*);
ELSIF NEW.happen_time >= '2020-10-01 00:00:00' and NEW.happen_time <= '2020-10-31 23:59:59'
THEN
INSERT INTO catalog_pg_test.tb_test_alarm_2020_10 VALUES (NEW.*);
ELSIF NEW.happen_time >= '2020-11-01 00:00:00' and NEW.happen_time <= '2020-11-30 23:59:59'
THEN
INSERT INTO catalog_pg_test.tb_test_alarm_2020_11 VALUES (NEW.*);
ELSIF NEW.happen_time >= '2020-12-01 00:00:00' and NEW.happen_time <= '2020-12-31 23:59:59'
THEN
INSERT INTO catalog_pg_test.tb_test_alarm_2020_12 VALUES (NEW.*);
END IF;
RETURN NULL;
END;
$$
LANGUAGE plpgsql;
--挂载分区Trigger
CREATE TRIGGER insert_almart_partition_trigger
BEFORE INSERT ON catalog_pg_test.tb_test_alarm
FOR EACH ROW EXECUTE PROCEDURE alarm_partition_trigger();
CREATE TABLE catalog_pg_test.num_zero (
id varchar(20) NULL,
num numeric NULL
);
CREATE TABLE catalog_pg_test.test_all_types_array (
id int4 NOT NULL,
char_value _bpchar NULL,
varchar_value _varchar NULL,
date_value _date NULL,
smallint_value _int2 NULL,
int_value _int4 NULL,
bigint_value _int8 NULL,
timestamp_value _timestamp NULL,
decimal_value _numeric NULL,
bit_value _bit NULL,
real_value _float4 NULL,
cidr_value _cidr NULL,
inet_value _inet NULL,
macaddr_value _macaddr NULL,
bitn_value _bit NULL,
bitnv_value _varbit NULL,
jsonb_value _jsonb NULL,
point_value _point NULL,
line_value _line NULL,
lseg_value _lseg NULL,
box_value _box NULL,
path_value _path NULL,
polygon_value _polygon NULL,
circle_value _circle NULL
);
CREATE TABLE catalog_pg_test.test_all_types_2d_array (
id int4 NOT NULL,
char_value _bpchar NULL,
varchar_value _varchar NULL,
date_value _date NULL,
smallint_value _int2 NULL,
int_value _int4 NULL,
bigint_value _int8 NULL,
timestamp_value _timestamp NULL,
decimal_value _numeric NULL,
bit_value _bit NULL,
real_value _float4 NULL,
cidr_value _cidr NULL,
inet_value _inet NULL,
macaddr_value _macaddr NULL,
bitn_value _bit NULL,
bitnv_value _varbit NULL,
jsonb_value _jsonb NULL,
point_value _point NULL,
line_value _line NULL,
lseg_value _lseg NULL,
box_value _box NULL,
path_value _path NULL,
polygon_value _polygon NULL,
circle_value _circle NULL
);
CREATE TABLE catalog_pg_test.test_all_support_types_array (
id int4 NOT NULL,
char_value bpchar[] NULL,
varchar_value varchar[] NULL,
text_value text[] null,
date_value date[] NULL,
smallint_value int2[] NULL,
int_value int4[] NULL,
bigint_value int8[] NULL,
timestamp_value timestamp[] NULL,
timestamptz_value timestamptz[] null,
bool_value bool[] NULL,
float4_value float4[] null,
float8_value float8[] null
);
CREATE TABLE catalog_pg_test.test_all_support_types_array_2d (
id int4 NOT NULL,
char_value bpchar[][] NULL,
varchar_value varchar[][] NULL,
text_value text[][] NULL,
date_value date[][] NULL,
smallint_value int2[][] NULL,
int_value int4[][] NULL,
bigint_value int8[][] NULL,
timestamp_value timestamp[][] NULL,
timestamptz_value timestamptz[][] NULL,
bool_value bool[][] NULL,
float4_value float4[][] NULL,
float8_value float8[][] NULL
);
create table doris_test.TEST_LOWER (
k1 bit,
k2 char(100)
);
CREATE TABLE catalog_pg_test.extreme_test (
id SERIAL PRIMARY KEY,
-- Numeric types for testing extreme values
smallint_val smallint,
int_val integer,
bigint_val bigint,
decimal_val decimal(38,10),
real_val real,
double_val double precision,
-- Character types for testing string values
char_val char(1),
varchar_val varchar(65535),
text_val text,
-- Date and time types for testing temporal values
date_val date,
timestamp_val timestamp(6),
timestamptz_val timestamptz,
interval_val interval,
-- Boolean type for testing logical values
bool_val boolean,
-- Binary type for testing byte array values
bytea_val bytea,
-- Network address types for testing network values
inet_val inet,
cidr_val cidr,
macaddr_val macaddr,
-- JSON types for testing structured data
json_val json,
jsonb_val jsonb,
-- Geometric types for testing spatial data
point_val point,
line_val line,
circle_val circle,
-- UUID type for testing unique identifiers
uuid_val uuid
);
CREATE TABLE catalog_pg_test.extreme_test_multi_block (
id integer,
-- Numeric types for testing extreme values
smallint_val smallint,
int_val integer,
bigint_val bigint,
decimal_val decimal(38,10),
real_val real,
double_val double precision,
-- Character types for testing string values
char_val char(1),
varchar_val varchar(65535),
text_val text,
-- Date and time types for testing temporal values
date_val date,
timestamp_val timestamp(6),
timestamptz_val timestamptz,
interval_val interval,
-- Boolean type for testing logical values
bool_val boolean,
-- Binary type for testing byte array values
bytea_val bytea,
-- Network address types for testing network values
inet_val inet,
cidr_val cidr,
macaddr_val macaddr,
-- JSON types for testing structured data
json_val json,
jsonb_val jsonb,
-- Geometric types for testing spatial data
point_val point,
line_val line,
circle_val circle,
-- UUID type for testing unique identifiers
uuid_val uuid
);