Skip to content

Releases: CUBRID/cubrid

CUBRID 11.4 Patch 1

26 Jun 07:36
8d83685

Choose a tag to compare

CUBRID 11.5 Patch 1 includes a number of fixes of legacy issues.

CUBRID 11.4 Patch 1

CUBRID 11.4 patch 1 includes several critical fixes of 11.4. All users of CUBRID 11.4 patches are kindly requested to upgrade to 11.4 patch 1.


Change logs:

Bug Fixes

ed2fd2c [CBRD-26039] fix error that occurs when inserting NULL using setNull() method in jdbc (#6196)
5c61144 [CBRD-26059] Remove comments about server information from the rewritten string of a DBLINK query (#6194) (#6266)
e8ccb19 [CBRD-26120] Fixed case-sensitive behavior when querying system catalog classes (#6250)
edc449d [CBRD-26129] bugfix: duplicate PL server log java0.log in $HOME directory (#6264)
3317a88 [CBRD-26133] Ensure that AU_DISABLE_PASSWORDS() is correctly set to prevent unnecessary password authentication prompts during server access. (#6265) (#6267)

CUBRID 11.0 Patch 14

11 Jun 04:05
5bcfc05

Choose a tag to compare

CUBRID 11.0 Patch 14 includes a number of fixes of legacy issues.

CUBRID 11.0 Patch 14

CUBRID 11.0 patch 14 includes several critical fixes of 11.0 Patch 13. All users of CUBRID 11.0 patches are kindly requested to upgrade to 11.0 patch 14.


Change logs:

Performance Enhancements

7b525ff [CBRD-25454] performance enhancement at TRACE ON (#5313) (#5963)
1d28926 [CBRD-25905] backport the speed-up unloaddb to lower version to 11.0.14 (#6017) (#6240)

unloaddb, loaddb and Related Bug Fixes

52fb1d3 [CBRD-25360] Backport to 11.0 - Modify the method of obtaining schema information for tables with auto_increment using unloaddb (#6087)
99d57a8 [CBRD-25480] Backport from develop to 11.0 - When an error occurs in loaddb, it does not stop and continues execution. (#6073)
f2f3999 [CBRD-25934] Backport from develop to 11.0 - Skip errors due to ownership change in unloaddb. (#6024)

HA and Related Bug Fixes

b53ff7b [CBRD-25463] Update db_ha_apply_info periodically when applying logs replicated from slave node (#5328) (#5498)

Result cache and Related Bug Fixes

c7c5265 [CBRD-25854] Fixed the memory leak phenomenon that occurs when using DML in a mode that uses result-cache. (#5838) (#5932)

CUBRID 10.2 Patch 16

04 Jun 07:18
d6d6374

Choose a tag to compare

CUBRID 10.2 Patch 16 includes a number of fixes of legacy issues.

CUBRID 10.2 Patch 16

CUBRID 10.2 patch 16 includes several critical fixes of 10.2 Patch 15. All users of CUBRID 10.2 patches are kindly requested to upgrade to 10.2 patch 16.


Change logs:

SQL Changes and Related Bug Fixes

ae6f923 [CBRD-25317] The problem is that the Oracle-style LEFT OUTER JOIN is not rewritten as an INNER JOIN if there is a method call and host variables are used in the WHERE clause (#5292) (#5992)
4eead7f [CBRD-25617] Backport to 10.2 - The phenomenon that position numbers within the analytic function become incorrect occurs when the analytic function is included in the view (#5590) (#5985)

Performance Enhancements

19d279c [CBRD-25454] Backport: performance enhancement at TRACE ON (#5313) (#5964)
468b193 [CBRD-25458] backport for CBRD-25374, CBRD-25458 (#5997)
91f5958 [CBRD-25905] backport the speed-up unloaddb to lower version to 10.2.16 (#6004, #6200)

unloaddb, loaddb and Related Bug Fixes

8919991 [CBRD-25360] Backport to 10.2 - Modify the method of obtaining schema information for tables with auto_increment using unloaddb (#6088)
8d23cdf [CBRD-25480] Backport from develop to 10.2 - When an error occurs in loaddb, it does not stop and continues execution. (#5978)
f357bf0 [CBRD-25934] Backport from develop to 10.2 - Skip errors due to ownership change in unloaddb. (#6026)

Improve Utilities and Related Bug Fixes

020369e [CBRD-25532] Remove the unnecessary archiving log volume when backupdb (#5432) (#6001)

HA and Related Bug Fixes

aa4269a [CBRD-25561] Resolve the issue of applying duplicate changes after restoreslave (#5468) (#5979)

Java SP and Related Bug Fixes

fdaf8f9 [CBRD-24783] Numeric return value in SP has been created incorrectly (#5330) (#5332)

v11.4

19 May 05:04
6b2bc75

Choose a tag to compare

CUBRID 11.4 is the latest stable version that includes new features, significant changes and enhancements.

CUBRID 11.4

  • PL/CSQL (Procedural Language) Support
  • Improved Performance through optimizer and index processing enhancements
  • Performance boost in data recovery through parallel processing
  • Extended Result Cache Functionality
  • Memory Monitoring Feature Added
  • Improved data dump performance

CUBRID 11.4 introduces support for PL/CSQL, the procedural language extension of CUBRID SQL, enabling the development of stored procedures and functions. PL/CSQL enhances CUBRID SQL with procedural programming constructs such as conditional statements, loops, variables, error handling, and modularization through internal procedures and functions―features that are difficult to implement using declarative SQL alone.

SQL statements can be seamlessly embedded within PL/CSQL blocks, making it easier to implement complex business logic and perform data manipulation tasks more efficiently.

CUBRID 11.4 significantly improves query execution performance by enhancing internal statistics used during query planning. These enhancements include tracking the number of distinct values and increasing the number of sampled pages during statistics collection.

The engine now supports HASH JOIN and the LEADING hint to accelerate join operations. Additional optimizations include introducing cost formulas for the LIMIT clause and eliminating logically unnecessary join conditions.

Performance is further enhanced through multi-threaded (parallel) processing in the unloaddb utility and during redo recovery operations.
The result cache feature has been expanded to support correlated scalar subqueries and Common Table Expressions (CTEs). Additionally, usage details of the result cache are now included in trace logs, providing users with deeper insights for performance analysis and optimization.

CUBRID 11.4 introduces a memory monitoring capability that allows users to track and analyze memory usage within the CUBRID system. This feature helps identify potential memory mismanagement or leaks, thereby improving system reliability and resource control.


Change logs:

SQL Changes and Related Bug Fixes

55884e7 [CBRD-23768] Unnecessary row X-LOCK is set depending on the plan (#4916)
5bcf5e8 [CBRD-24795] When using a function under <= and >= conditions, the plan generator does not perform a range scan (#4365)
6fee335 [CBRD-24798] Changing the index structure using ALTER INDEX is treated as an error (#4675)
d9f9ae8 [CBRD-25054] Numeric type column inserted by using rownum does not show error even it's outranged. (#4766)
a35eabc [CBRD-25098] Problem where inst_num() is inappropriately changed to order_by_num() when a subquery containing an ORDER BY is view merged. (#4809)
9718c43 [CBRD-25115] fixed inaccuracy in length limit of where clause when creating filter index (#5021)
4a4d497 [CBRD-25128] In STRING_CAT '||' operation, incorrect handling of null when setting oracle_style_empty_string (#4842)
1251e63 [CBRD-25139] When using oracle style empty string, the result of replace is null. (#4848)
c6ae599 [CBRD-25147] Add SQL syntax to add users as members of the group (#4957)
f6dbc63 [CBRD-25164] Fix error in covered index query results using function indexes (#4881)
9cffae9 [CBRD-25179] A core dump occurs when the CTE query is a false query (null query) (#4890)
8f0d709 [CBRD-25195] A core dump occurs when multiple tables and serial functions are used simultaneously in one query. (#4897)
1858d5d [CBRD-25216] Check if there is enough buffer to store the user-specified name (#4946)
1f1d455 [CBRD-25238] Problem with outer joined views being merged. (#4998)
81709c4 [CBRD-25241] Add SQL syntax to change the owner of the serial (#5038)
1b8cefc [CBRD-25260] Change the behavior of finding server when omitting user schema (#5040)
2d1cdd1 [CBRD-25262] Problem with some show statements not filtering the owner correctly (#5042)
eb67595 [CBRD-25277] 'Outer join query optimization failed.' error occurs in Eliminate INNER JOIN (#5053)
6151673 [CBRD-25279] Casting functions in prepared statements with host variable arguments incorrectly occur syntax errors (#5060)
cfaaeaa [CBRD-25290] _db_auth's rows are not deleted when dropping an user (#5079)
5c9b523 [CBRD-25316] For UPDATE JOIN statements, aggregate functions or analytic functions cannot be used in the SET and WHERE clauses (#5143)
3d6841b [CBRD-25317] The problem is that the Oracle-style LEFT OUTER JOIN is not rewritten as an INNER JOIN if there is a method call and host variables are used in the WHERE clause (#5292)
3d05a09 [CBRD-25318] Problem that the subquery containing orderby_num() is view-merged. (#5140)
04e9a57 [CBRD-25335] Problem where nodes without a join relationship are connected and incorrect results are output. (#5170)
fcce39e [CBRD-25358] error handling when using for update clause for system tables such as db_root, dual, etc. (#5197, #5273, #5882, #6107, #6094, #6047)
44c022c [CBRD-25365] Change 'Creation_time' in 'SHOW VOLUME|LOG|ARCHIVE LOG HEADER' statements to Volume creation time. (#5719)
1c28e7a [CBRD-25372] remove pt_check_class_attr_qspec_compatible (#5366)
e7a7093 [CBRD-25374] sort-limit-optimization does not work when there is an expression containing a bind variable in the limit clause. (#5225)
b2bc156 [CBRD-25382] Support HASH JOIN with hint required (#5221)
3e03344 [CBRD-25393] Allow Oracle style CREATE VIEW with NULL (#5241)
48ed488 [CBRD-25439] Modify to output an error when setting an wrong value in the optimization_level. (#5295)
9d38c67 [CBRD-25446] relative lob locator for ES_POSIX (#5300)
4017adf [CBRD-25448] Problem with orderby_num not being rewritten when removing unnecessary 'order by' (#5299)
1e3a0a4 [CBRD-25449] Remove db_authorization's record when dropping user (#5349)
c032f14 [CBRD-25457] Executing the "AUTO_INCREMENT" and "DEFAULT" attributes separately using the "ALTER TABLE MODIFY" syntax on the same column resulted in an error of two attributes co-existing in that column (#5364)
442123c [CBRD-25484] When using an inner join and an Oracle style outer join together, errors may occur depending on the order of the join predicates (#5365)
3d306ea [CBRD-25505] insert ... select .. on duplicate key update query result error with view (#5400, #5416, #5526, #5541, #5789)
ecca3d6 [CBRD-25617] The phenomenon that position numbers within the analytic function become incorrect occurs when the analytic function is included in the view (#5552, #5589, #5590)
e560ed5 [CBRD-25713] limit max length of CHAR type to 2048 (#5658, #5692, #5996, #5701, #5702)

Optimizer Enhancements

d905c55 [CBRD-25060 The problem of not selecting a better index which is superset of primary key. (#4775, #4935)
5dbe3be [CBRD-25080 Add cost formula for LIMIT clause. (#4786)
bbe8ffd [CBRD-25084 Add fetch time to trace info (#4803, #5098)
c1c0369 [CBRD-25089 Add 'LEADING' SQL hint (#4798 #5219)
86063bc [CBRD-25214 Remove join predicate already logically evaluated. (#4954)
92b6af5 [CBRD-25801 Problems that occur when a hidden column is generated due to ORDER BY clause in a subquery (#5780)

Performance Enhancements

394a26e [CBRD-24988] If a key containing null is inserted after the fence key is created, the decompressed key may have an incorrect nullmap (#4796, #4684, #4812)
a5cbf3e [CBRD-25036] Improved key reading in B-Tree index (#5305)
c1e7266 [CBRD-25082] If the leaf nodes are compressed, store the common prefix in BTREE_NODE_HEADER (#4789)
8a19472 [CBRD-25235] Improved performance of time_format() and date_format() (#5012)
1c99d7d [CBRD-25282] Improve speed of unloaddb (#5074, #5514, #5516, #5557)
c914987 [[CBRD-25350]](http://jir...

Read more

CUBRID 11.3.3.1226 hotfix

25 Apr 07:47
bf02ea1

Choose a tag to compare

CUBRID 11.3.3.1226 hotfix


Change logs:

5c5dbbb [CBRD-26025] Error occurs when sending NULL value to DBLink via JDBC (#6118) (#6134)
bf02ea1 [CBRD-26031] Backport from develop to 11.3 - When entering Korean characters using bind variables in DBLINK, Korean characters are broken (#6138)

CUBRID 11.3 Patch 3

15 Apr 08:36
ec4eddd

Choose a tag to compare

CUBRID 11.3 Patch 3 includes a number of fixes of legacy issues.

CUBRID 11.3 Patch 3

CUBRID 11.3 patch 3 includes several critical fixes of 11.3 Patch 2. All users of CUBRID 11.3 patches are kindly requested to upgrade to 11.3 patch 3.


Change logs:

Enhancements

96dc66e [CBRD-25358] backport: error handling when using for update clause for inline view (#5882, #5927, #6047, #6072, #6107, #6108, #6094, #6100, #5882, #6043)
e497ecb [CBRD-25454] backport: performance enhancement at TRACE ON (#5313) (#5929)
543e6d7 [CBRD-25905] backport the speed-up unloaddb to lower version to 11.3.3 (#5977)

Bug Fixes

27b2a7c [CBRD-24795] When using a function under <= and >= conditions, the plan generator does not perform a range scan (#4365, #4830) (#5938)
3c096d3 [CBRD-24911] Issue where trim() cannot be called in cub_manager for Windows (#5167) (#5525)
3785140 [CBRD-25317] The problem is that the Oracle-style LEFT OUTER JOIN is not rewritten as an INNER JOIN if there is a method call and host variables are used in the WHERE clause (#5292) (#5991)
9824106 [CBRD-25377] Enable the 'monitor_waiting_thread' feature regardless of whether the EnableThreadMonitoring macro is defined (#5228) (#5951)
b34417c [CBRD-25457] backport: Executing the “AUTO_INCREMENT” and “DEFAULT” attributes separately using the “ALTER TABLE MODIFY” syntax on the same column resulted in an error of two attributes co-existing in that column (#5364) (#5928)
ea27406 [CBRD-25458] backport for CBRD-25458 (#5998)
5f03429 [CBRD-25463] Update db_ha_apply_info periodically when applying logs replicated from slave node (#5328) (#5993)
c7da608 [CBRD-25480] Backport from develop to 11.3 - When an error occurs in loaddb, it does not stop and continues execution. (#5973)
da6c89a [CBRD-25484] When using an inner join and an Oracle style outer join together, errors may occur depending on the order of the join predicates (#5365) (#5986)
aaac170 [CBRD-25505] backport: 뷰가 포함된 insert ... select .. on duplicate key update 쿼리 결과 오류 (#5400) (#5933)
1a454bb [CBRD-25507] Occurs ArrayIndexOutOfBoundsException when processing PL… (#5776, #5777)
64f3f97 [CBRD-25532] Remove the unnecessary archiving log volume when backupdb (#5432) (#5945)
f71b71d [CBRD-25561] Resolve the issue of applying duplicate changes after restoreslave (#5468) (#5983)
b8059c7 [CBRD-25562] SP의 연관되지 않은 컬럼에 대해 지원하지 않는 인수 에러 발생 수정 (#5462)
00ae940 [CBRD-25567] Problem with Range Predicates Using Pipe Operators Not Being Reducible to Common Range Terms (#5467) (#5476)
311d40c [CBRD-25586] Fix the problem that query entries with no result sets are not freed (#5489) (#5490)
76f055a [CBRD-25617] The phenomenon that position numbers within the analytic function become incorrect occurs when the analytic function is included in the view (#5590) (#5984)
8385229 [CBRD-25656] remove space character from line 561 of the ko_KR.utf8/utils.msg (#6027)
07d009e [CBRD-25737] Backport from develop to 11.3 - When unloading serial and trigger as dba user, schema name is missing (#5720, #6041)
7f5c02c [CBRD-25801] Problems that occur when a hidden column is generated due to ORDER BY clause in a subquery (#5810)
d3f8f90 [CBRD-25854] result-cache enable 환경에서 DML 사용 시 memory leak 발생 (#5838) (#5841)
4240727 [CBRD-25912] the problem of memory leak occurs when the SP function generates an error (#5954)
30703b7 [CBRD-25934] Skip errors due to ownership change in unloaddb. (#6008)
bf6f81b [CBRD-25940] Fix JVM's ListenerThread could terminate abnormally due to a system error (#5958)
105c3aa [CBRD-25944] Differences in results related to time zone when using user-defined variables in the time_format function (#5947) (#5965)
4586af9 [CBRD-25989] Improve interrupt handling during SP execution (#6053, #6076, #6081, #6079)
43c2dad [CBRD-26003] Fix assert error caused by scan manager's open() does not expect error code (#6092)

CUBRID 11.3.2.1190 hotfix

23 Jan 03:48
7f5c02c

Choose a tag to compare

Pre-release

CUBRID 11.3.2.1190 hotfix


Change logs:

1a454bb [CBRD-25507] Occurs ArrayIndexOutOfBoundsException when processing PL… (#5776)
163fe8c [CBRD-25507] slip: Occurs ArrayIndexOutOfBoundsException when processing PLCSQL explicit cursors (#5777)
7f5c02c [CBRD-25801] Problems that occur when a hidden column is generated due to ORDER BY clause in a subquery (#5810)

CUBRID 11.3 Patch 2

04 Oct 14:05
3c096d3

Choose a tag to compare

CUBRID 11.3 Patch 2 includes a number of fixes of legacy issues.

CUBRID 11.3 Patch 2

CUBRID 11.3 patch 2 includes several critical fixes of 11.3 Patch 1. All users of CUBRID 11.3 and 11.3 patches are kindly requested to upgrade to 11.3 patch 1.


Change logs:

Enhancements

f7573a7 [CBRD-25043] refactor functions related to isspace, tolower, and toupper (#4932)
16bc684 [CBRD-25323] Perform the 'Eliminate INNER JOIN' optimization for the first table, and remove the join type for the second table (#5148, #5404, #5411)
91585e7 [CBRD-25369] provide broker info, NET_BUF_SIZE (#5249, #5222)
eaaa51a [CBRD-25375] Enhance String handling to support multiple character encodings (#5232)
324b9a4 [CBRD-25376] revise error message that may occur when loading ha_node_list and ha_replica_list (#5231)
228725d [CBRD-25434] Change the recovery range in analysis phase when executing restoredb (#5278, #5319)

Bug Fixes

6931fca [CBRD-24783] Numeric return value in SP has been created incorrectly (#5330)
58c8cf3 [CBRD-25235] Improved performance of time_format() and date_format() (#5012)
3286253 [CBRD-25236] Output error related to TZM in timezone information (#5002)
35a98c2 [CBRD-25239] user variable time format (#5001)
0f95fef [CBRD-25318] Problem that the subquery containing orderby_num() is view-merged. (#5140)
d29a35a [CBRD-25335] Problem where nodes without a join relationship are connected and incorrect results are output. (#5170)
131d75c [CBRD-25336] modify ha_make_slave.sh script to use $CUBRID_TMP and $TMPDIR (#5171, #5281)
bda37c7 [CBRD-25337] After switching users from csql to session command, DDL Log must be recorded in the changed DB log file. (#5223, #5344)
b1566e2 [CBRD-25343] Resolve repeated ClassNotFoundException when SP is called without the Java directory (#5340)
468866e [CBRD-25343] rev: Create /java_static directory if not exists to avoid ClassNotFoundException (#5370)
102076f [CBRD-25354] The format specifier for the argument is incorrect and the error_code argument is missing in vacuum_er_log_error(). (#5198, #5322)
1a8c09f [CBRD-25358] error handling when using for update clause for system tables such as db_root, dual, etc. (#5197, #5273)
625c9a5 [CBRD-25361] Fixed the issue where trace information for CTEs and subqueries not provided. (#5200)
4e06329 [CBRD-25374] sort-limit-optimization does not work when there is an expression containing a bind variable in the limit clause. (#5225)
ffa8db4 [CBRD-25419] If you use the -i and --input-class-only options together in unloaddb, unrelated alter serial statements will be output. (#5259)
2bf7289 [CBRD-25426] Backport to 11.3 - If the current_val of serial is the same as max_val, an error occurs during unloaddb/loaddb. (#5262)
c4e526b [CBRD-25428] When execution of the recursive part in the recursive CTE ends, clear VAL_LIST (#5264)
e82b29d [CBRD-25448] Problem with orderby_num not being rewritten when removing unnecessary ‘order by’ (#5299)
83eb7d7 [CBRD-25449] Remove db_authorization's record when dropping user (#5302)
1adbf7e [CBRD-25481] Corrects an error in unloaddb when the JSON type column contains data larger than 1MB (#5357)
5c4899c [CBRD-25525] Modify cub_vsnprintf() to support vsnprintf() in Windows build (#5409) : to release/11.3 (#5421)
89fe130 [CBRD-25545] Invalid serial value occurs in unloaddb (#5453)
b8059c7 [CBRD-25562] SP의 연관되지 않은 컬럼에 대해 지원하지 않는 인수 에러 발생 수정 (#5462)
00ae940 [CBRD-25567] Problem with Range Predicates Using Pipe Operators Not Being Reducible to Common Range Terms (#5467) (#5476)
311d40c [CBRD-25586] Fix the problem that query entries with no result sets are not freed (#5489) (#5490)

CUBRID 11.2 Patch 9

04 Oct 13:47
ef544a1

Choose a tag to compare

CUBRID 11.2 Patch 9 includes a number of fixes of legacy issues.

CUBRID 11.2 Patch 9

CUBRID 11.2 patch 9 includes several critical fixes of 11.2 Patch 8. All users of CUBRID 11.2 and 11.2 patches are kindly requested to upgrade to 11.2 Patch 8.


Change logs:

Enhancements

c491e69 [CBRD-25043] refactor functions related to isspace, tolower, and toupper (#4932)
ea00371 [CBRD-25235] Improved performance of time_format() and date_format() (#5012)
34a2da9 [CBRD-25295] set ppid of broker/cas proc created by cub_manager to 1 (#5124)
6ed2ca1 [CBRD-25375] Enhance String handling to support multiple character encodings (#5232)
50820ec [CBRD-25376] revise error message that may occur when loading ha_node_list and ha_replica_list (#5231)
c38fa88 [CBRD-25434] Change the recovery range in analysis phase when executing restoredb (#5278, #5320)

Bug Fixes

97d51de [CBRD-24783] Numeric return value in SP has been created incorrectly (#5330, #5331)
f1ea0e4 [CBRD-25128] In STRING_CAT '||' operation, incorrect handling of null when setting oracle_style_empty_string (#4842)
5d130f0 [CBRD-25139] When using oracle style empty string, the result of replace is null. (#4848)
7af39df [CBRD-25236] Output error related to TZM in timezone information (#5002)
497957b [CBRD-25239] user variable time format (#5001)
fc7aba8 [CBRD-25248] Server crash for Java SPs running a SELECT statement with 'WHERE 0 <> 0' clause (#5017, #5037)
55ff57d [CBRD-25260] Change the the behavior of finding server when omitting user schema (#5040)
5e00011 [CBRD-25262] Problem with some show statements not filtering the owner correctly (#5042, #5071)
5705af8 [CBRD-25290] _db_auth's rows are not deleted when dropping an user (#5079) (#5119)
602ed88 [CBRD-25291] The release files is include an empty directory in the JDBC folder. (#5078, #5081)
fd968c9 [CBRD-25298] trim class and method names of the target method (#5110)
c4971a7 [CBRD-25300] When unloaddb, the comment of reverse unique index is missing. (#5125)
7a94569 [CBRD-25335] Problem where nodes without a join relationship are connected and incorrect results are output. (#5170)
ab5444e [CBRD-25336] modify ha_make_slave.sh script to use $CUBRID_TMP and $TMPDIR (#5171)
5ac0123 [CBRD-25336] modify ha_make_slave.sh script to use $CUBRID_TMP and $TMPDIR (#5281)
da82c81 [CBRD-25343] Resolve repeated ClassNotFoundException when SP is called without the Java directory (#5341)
66c5d00 [CBRD-25354] The format specifier for the argument is incorrect and the error_code argument is missing in vacuum_er_log_error(). (#5198, #5324)
b2e592e [CBRD-25358] error handling when using for update clause for system tables such as db_root, dual, etc. (#5197, #5273)
f046f60 [CBRD-25361] Fixed the issue where trace information for CTEs and subqueries not provided. (#5200)
dabc0c2 [CBRD-25374] sort-limit-optimization does not work when there is an expression containing a bind variable in the limit clause. (#5225)
ddbd49a [CBRD-25426] Backport to 11.2 - If the current_val of serial is the s… (#5265)
6829f75 [CBRD-25448] Problem with orderby_num not being rewritten when removing unnecessary ‘order by’ (#5299)
71dc541 [CBRD-25449] Remove db_authorization's record when dropping user (#5303)
dc200e8 [CBRD-25481] Corrects an error in unloaddb when the JSON type column contains data larger than 1MB (#5357)
c26b550 [CBRD-25525] Modify cub_vsnprintf() to support vsnprintf() in Windows build (#5409, #5420)
ef544a1 [CBRD-25586] Fix the problem that query entries with no result sets are not freed (#5489, #5491)

CUBRID 11.0.13.0379 hotfix

07 Oct 08:36
b53ff7b

Choose a tag to compare

CUBRID 11.0.13.0379 hotfix


Change logs:

b53ff7b [CBRD-25463] Update db_ha_apply_info periodically when applying logs replicated from slave node (#5328, #5498)