Commit Graph

11 Commits

Author SHA1 Message Date
c90831cce7 修改interval在PG兼容模式下的默认单位为秒 2024-01-17 19:55:49 +08:00
2b37798c02 IUD底噪等合入 2023-06-17 00:24:02 -07:00
0837cd8309 提高timestamp/time/date输出函数的速度 2023-04-24 11:08:14 +08:00
9f84893535 tupleDesc数据结构及相关函数调用优化 2023-02-21 20:30:35 -08:00
9ed0b3cca4 issue fix:修复ignore在非法输入时insert/update失败的问题 2022-11-11 15:57:22 +08:00
41000e0be3 improve the performance of now()£¬current_time, current_date, etc.
CREATE or replace PROCEDURE t_now(num integer)
AS
DECLARE
n numeric :=0;
curtime timestamp;
BEGIN
  LOOP
  n := n + 1;
  curtime := now();
  EXIT WHEN n > num;
  END LOOP;
END;
/

before optimization:
openGauss=# call t_now(1000000);
t_now
-------

(1 row)

Time: 4714.785 ms

after optimization:
openGauss=# call t_now(1000000);
t_now
-------

(1 row)

Time: 4575.570 ms
2022-08-05 17:42:14 +08:00
c7b25efcff New features (and bug fixes)
1. alter large sequence
    2. subpartition
    2.1 split subpartition
    2.2 truncate subpartition
    3. 支持load
    4. 支持start-with/connect-by
    5. ...
2021-12-29 21:33:28 +08:00
1d540f4462 Patch for 930 release 2021-09-23 15:19:37 +08:00
3d79c59118 Misc bugfixes 2021-03-06 12:39:28 +08:00
1567043064 同步source code
日期: 12-26
    revision: ee5b054c
2020-12-28 22:19:21 +08:00
815a9771fb first commit for openGauss server 2020-06-30 17:38:27 +08:00