|
9ae40be0c8
|
!1933 修复log_destination某些设置下启动失败的问题
Merge pull request !1933 from 胡正超/master
|
2022-07-30 06:58:20 +00:00 |
|
|
648df1a8e3
|
!1990 修复多个客户端同时连接到B数据库时,出现并发创建dolphin插件导致连接失败的问题
Merge pull request !1990 from pengjiong/array
|
2022-07-30 02:45:53 +00:00 |
|
|
e91ae0c8cc
|
issue修复:ignore插入时,若插入值类型与目标类型无转换规则,目标类型的默认零值无法被插入的问题修复
|
2022-07-30 10:01:24 +08:00 |
|
|
eab698a2eb
|
fix gtt residual files after db breakdown
|
2022-07-30 09:51:42 +08:00 |
|
|
1c6332d508
|
Fix concurrent create dolphin bug.
|
2022-07-29 17:51:42 +08:00 |
|
|
03cf837af9
|
issue修复:ignore处理json与jsonb类型时,类型零值修改
|
2022-07-29 17:24:53 +08:00 |
|
|
6c8e569752
|
!1969 issue处理:ignore关键字在指定分区/二级分区插入,且插入分区键超出分区范围时,无法将error降级为warning问题修复
Merge pull request !1969 from zhangzhixian/master
|
2022-07-29 03:11:31 +00:00 |
|
|
7b7fc4ecf0
|
fix problem: pg_proc.provariadic is invalid after initdb
|
2022-07-29 09:41:21 +08:00 |
|
|
812f586beb
|
Reduce memory allocation and deallocation to improve the computational performance of numeric digits.
before optimization:
openGauss=# explain analyse select sqrt(t0) from t_numeric limit 10000000;
QUERY PLAN
-------------------------------------------------------------------------------------------
------------------------------------
Limit (cost=0.00..197973.49 rows=8386919 width=5) (actual time=0.054..167434.766 rows=838
8608 loops=1)
-> Seq Scan on t_numeric (cost=0.00..197973.49 rows=8386919 width=5) (actual time=0.05
3..166061.081 rows=8388608 loops=1)
Total runtime: 168495.866 ms
(3 rows)
Time: 168499.243 ms
after optimization:
openGauss=# explain analyse select sqrt(t0) from t_numeric limit 10000000;
QUERY PLAN
-------------------------------------------------------------------------------------------
------------------------------------
Limit (cost=0.00..197973.49 rows=8386919 width=5) (actual time=0.045..151376.445 rows=838
8608 loops=1)
-> Seq Scan on t_numeric (cost=0.00..197973.49 rows=8386919 width=5) (actual time=0.04
4..150108.807 rows=8388608 loops=1)
Total runtime: 152469.050 ms
(3 rows)
Time: 152472.278 ms
|
2022-07-28 21:58:16 +08:00 |
|
|
3b44473f19
|
修复SQL语句中同时出现窗口函数和子查询时因子查询被提升导致执行失败的问题。
|
2022-07-28 20:27:18 +08:00 |
|
|
46cdfe82c4
|
create table/comment support
|
2022-07-28 17:58:38 +08:00 |
|
|
b6d7d5abef
|
!1983 add libsecure.so in cmake build
Merge pull request !1983 from zhangxubo/master
|
2022-07-28 07:19:36 +00:00 |
|
|
fc9150153b
|
!1910 pcd文件open失败,重试参数错误
Merge pull request !1910 from 林科旭/pcd_fix
|
2022-07-28 06:19:15 +00:00 |
|
|
66467f5883
|
add libsecure.so in cmake build
|
2022-07-28 11:47:18 +08:00 |
|
|
ebd714a73c
|
!1959 修复merge into全局临时表报表文件不存在的bug
Merge pull request !1959 from Cross-罗/merge_into
|
2022-07-27 06:39:04 +00:00 |
|
|
680962280a
|
修复merge全局临时表的bug
|
2022-07-27 09:49:14 +08:00 |
|
|
004f671b4d
|
!1896 numactl库未打包到openGauss发布包里面,导致容器安装时候失败
Merge pull request !1896 from zhangxubo/master_bugfix
|
2022-07-26 12:25:14 +00:00 |
|
|
15ecab2608
|
!1975 修复行存转向量化场景下,explain plan由于字符串超长导致的问题
Merge pull request !1975 from pengjiong/array
|
2022-07-26 12:05:43 +00:00 |
|
|
cc9676165e
|
Fix epxlain plan in row to vec case.
|
2022-07-26 18:47:28 +08:00 |
|
|
fbf5f72233
|
!1941 新增codegen ir文件插件点
Merge pull request !1941 from pengjiong/array
|
2022-07-26 07:17:53 +00:00 |
|
|
761f32abf2
|
!1971 修复timestamp不支持infinity的问题
Merge pull request !1971 from Cross-罗/to_timestamp
|
2022-07-26 03:57:42 +00:00 |
|
|
fc5f028b22
|
allow infinity to timestamp
|
2022-07-26 10:12:36 +08:00 |
|
|
674ded743b
|
issue fix for I5HSHT
|
2022-07-25 14:55:48 +08:00 |
|
|
b08bcca779
|
!1965 解决issue--列存加唯一索引插100万数据慢问题
Merge pull request !1965 from zhaobingyu/master
|
2022-07-23 07:47:25 +00:00 |
|
|
c034f1cfa7
|
解决issue -- 列存加唯一索引插100万数据慢问题
|
2022-07-23 14:47:31 +08:00 |
|
|
1ad3d5fca7
|
pgstatuple build err!
|
2022-07-22 18:06:40 +08:00 |
|
|
5bfcad6de3
|
!1962 修复行存向量化在创建物化视图时结果不正确的问题
Merge pull request !1962 from Cross-罗/matview
|
2022-07-22 08:25:22 +00:00 |
|
|
8577521efe
|
修复行存向量化在创建物化视图时结果不正确的问题
|
2022-07-22 15:03:24 +08:00 |
|
|
ee8a721a83
|
修正SPI受自定义解析器影响而导致PL/pgSQL在启用自定义解析器时可能导致非逾期结果的问题。
SPI接口以及pg_parse_query函数添加一个默认参数可使用户指定不同的语法解析函数,
而不是直接调用raw_parser函数是要为以后新增加其它PL准备。
比如新增加兼容MySQL或其它存储过程时,它需要使用自已的语法解析,
又因为相同的语句在不同的数据库下可能存在不同的语义,
所以不可能做到完全兼容PG的语法(即便可以,工作量也会非常大)。
|
2022-07-22 09:51:18 +08:00 |
|
|
973f51c908
|
!1890 修复构造DN连接字符串的pgoption时,访问悬挂指针的问题
Merge pull request !1890 from jojo273565420/fix_dangling_pointer
|
2022-07-21 12:01:45 +00:00 |
|
|
07e1f275d3
|
!1911 issue修复:ignore在bypass场景下insert,当插入失败时回显错误问题修复
Merge pull request !1911 from zhangzhixian/fix_insert_fusion_echo_error
|
2022-07-21 02:22:48 +00:00 |
|
|
9da57fdf70
|
!1908 issue处理:ignore_hint在interval分区表中插入null值时,报error而不是warning
Merge pull request !1908 from zhangzhixian/issue_handling_for_interval_partition
|
2022-07-20 10:33:18 +00:00 |
|
|
6f89062192
|
!1955 智能索引推荐更新
Merge pull request !1955 from guoguozhenhaowan/syn_code
|
2022-07-20 07:20:07 +00:00 |
|
|
ebae4201d2
|
Code alignment with masstree third party code
|
2022-07-20 11:30:04 +08:00 |
|
|
19f5109c8d
|
syn code for workload index advisor
|
2022-07-20 07:26:14 +08:00 |
|
|
ffae76f123
|
ignore_hint: issue handling for interval partition condition, which cannot report warning when inserting null value
|
2022-07-19 10:58:44 +08:00 |
|
|
3c2478f77d
|
!1951 【轻量级 PR】:小型化版本不支持postgres_fdw,无需打包相关sql/control文件
Merge pull request !1951 from pengjiong/N/A
|
2022-07-16 06:12:39 +00:00 |
|
|
bf7c37e879
|
!1946 修复创建订阅时指定的发布在对端不存在也能创建成功的问题
Merge pull request !1946 from 薛蒙恩/CheckPublicationsExistOnPublisher
|
2022-07-16 03:01:41 +00:00 |
|
|
67d0f68f14
|
temp
|
2022-07-15 09:56:55 +00:00 |
|
|
62d8634a87
|
修复创建订阅时指定的发布在对端不存在也能创建成功的问题
|
2022-07-14 15:21:42 +08:00 |
|
|
90b5d9ae49
|
link #I5H1L6 fixed the misspelling of function name.
|
2022-07-14 15:46:06 +10:00 |
|
|
c68c1f493c
|
!1943 Fixes a minor leak in MOT masstree index
Merge pull request !1943 from Vinoth Veeraraghavan/master
|
2022-07-14 03:05:58 +00:00 |
|
|
a7c2493956
|
Fixes a minor leak in MOT masstree index
|
2022-07-14 10:04:28 +08:00 |
|
|
bd8d3424f8
|
Add codegen hook point.
|
2022-07-13 18:59:21 +08:00 |
|
|
8198a77bda
|
!1928 修复向量化引擎场景下,length结果不一致的问题
Merge pull request !1928 from pengjiong/array
|
2022-07-13 01:42:04 +00:00 |
|
|
73ba974a9e
|
!1937 【代码回合】interval分区不支持sqlbypass回显适配
Merge pull request !1937 from zhangzhixian/master
|
2022-07-12 13:01:04 +00:00 |
|
|
dbee5bbbb0
|
Fix bpchar length in vec engine and codegen case.
|
2022-07-12 20:26:22 +08:00 |
|
|
44e3262d67
|
回合修改:bypass不支持interval分区表的提示信息优化
|
2022-07-12 19:01:40 +08:00 |
|
|
6ce004b9f3
|
!1932 增加regexp相关兼容性函数,增加decode兼容性
Merge pull request !1932 from 邓旭玥/compatiability
|
2022-07-12 03:25:45 +00:00 |
|
|
cd5f02b696
|
fix core about log_destination
|
2022-07-11 16:10:37 +08:00 |
|