--  @testpoint:openGauss关键字excluding(非保留),作为列名带引号并且更新时使用该列,建表成功,excluding的值更新为100
drop table if exists excluding_test;
SQL SUCCESS
create table excluding_test(
	c_id int, c_int int, c_integer integer, c_bool int, c_boolean int, c_bigint integer, 
	c_real real, c_double real, 
	c_decimal decimal(38), c_number number(38), c_numeric numeric(38), 
	c_char char(50) default null, c_varchar varchar(20), c_varchar2 varchar2(4000),
	c_date date, c_datetime date, c_timestamp timestamp,
	"excluding" varchar(100) default 'excluding'
)
PARTITION BY RANGE (c_integer)
(
	partition P_20180121 values less than (0),
	partition P_20190122 values less than (50000),
	partition P_20200123 values less than (100000),
	partition P_max values less than (maxvalue)
);
SQL SUCCESS
insert into excluding_test(c_id,"excluding") values(1,'hello');
SQL SUCCESS
update excluding_test set "excluding"=100;
SQL SUCCESS
select * from excluding_test order by "excluding";
+------+-------+-----------+--------+-----------+----------+--------+----------+-----------+----------+-----------+--------+-----------+------------+--------+------------+-------------+-----------+
| c_id | c_int | c_integer | c_bool | c_boolean | c_bigint | c_real | c_double | c_decimal | c_number | c_numeric | c_char | c_varchar | c_varchar2 | c_date | c_datetime | c_timestamp | excluding |
+------+-------+-----------+--------+-----------+----------+--------+----------+-----------+----------+-----------+--------+-----------+------------+--------+------------+-------------+-----------+
| 1    |       |           |        |           |          |        |          |           |          |           |        |           |            |        |            |             | 100       |
+------+-------+-----------+--------+-----------+----------+--------+----------+-----------+----------+-----------+--------+-----------+------------+--------+------------+-------------+-----------+
drop table excluding_test;
SQL SUCCESS