Skip to content

CUBRID 11.3

Latest
Compare
Choose a tag to compare
@ssihil ssihil released this 27 Sep 03:57
· 182 commits to develop since this release
bd31bd5

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

CUBRID 11.3

  • improves connectivity by enhancing database links.
  • is more stable, faster, and more convenient for administrators.
  • fixes a large number of critical bugs.
  • includes code refactoring and modernization.

CUBRID 11.3 provided user convenience by providing a table extension style (object@server) for database links, and improved connectivity by providing the ability to insert, modify, and delete data as well as retrieve data for remote DB.

CUBRID 11.3 is faster. This version further improves performance through improve aggregation functions (min, max group_concat) and query optimization, such as predicate pushdown, view transformation, and removal of unnecessary join tables. Additionally, performance problems caused by skewed indexes were improved by providing a deduplication option when creating an index (or foreign key).

CUBRID 11.3 improved administrator convenience by improving the csql, unloaddb, and loaddb utilities.

The database volume of CUBRID 11.3 is compatible with the CUBRID 11.2 volume. (However, when a volume created in CUBRID 11.2 is used in CUBRID 11.3 due to a change in view query spec of db_index and db_vclass among catalog views, unexpected results may be obtained when executing a query related the catalog view.)


Change logs:

DataLink and Related Bugs Fixes

5cbc9eb [CBRD-24501] extending dblink dml (#4036, #4315, #4324, #4342, #4442,#4450, #4477, #4488, #4505, #4507, #4513, #4557, #4561, #4571, #4577, #4587, #4588, #4591, #4592, #4594, #4595, #4607, #4608, #4610, #4612, #4616, #4621, #4623, #4645, #4666, #4669, #4673, #4698, #4700, #4706, #4707, #4715)
4219a75 [CBRD-24551] CUBRID DBLink extension for mariadb (#3979, #4459)
b8e2f70 [CBRD-24893] Add DML function in Gateway (#4496, #4535, #4573, #4578, #4618, #4647)
e77de6d [CBRD-24420] dblink: correct oracle syntax error in rewritten query. (#3705)
0f338b9 [CBRD-24428] dblink: correct error message for repeated query execution (#3725)
6422914 [CBRD-24432] query rewrite to fit oracle (#3739)
9f6303a [CBRD-24433] Add ODBC Data type to not suppoerted type (#3742)
3b0cdcc [CBRD-24437] DBLink query parsing error (#3745)
29bcc66 [CBRD-24506] Changing the way characters are read from DBMS (#3880)
679eca4 [CBRD-24571] assert() occurs when using DELETE/UPDATE including DBLINK (#3978)
d2d59b8 [CBRD-24844] Garbage value when querying bit varying(n) column using DBLINK. (#4421)

Enhance Performance

1fd078d [CBRD-24248] Support NEED_COUNT_ONLY optimization for JOIN (#3780)
d93f4b1 [CBRD-24252] Removes the table of the primary key from the join with the table with the foreign key referencing it. (#3838)
8e5f2aa [CBRD-24258] Rewrite optimization for oracle style partial range scan (#3469)
9d59a09 [CBRD-24304] The problem that the optimal plan cannot be found because the first node is not properly selected (#3563)
f8dc9e9 [CBRD-24349] index scan enhancement for correlated subquery. (#3601)
7a5fdb8 [CBRD-24400] The problem of comparing plan fixed and variable cost respectively (#3665)
cbae603 [CBRD-24436] MAX / MIN performance enhancement (#3746, #3870)
8949033 [CBRD-24516] replace the information which is printed in "show trace" from aggregate function optimization (#3892, #4370, #4424, #4454, #4490)
e2391d3 [CBRD-24537] Improve the performance of MERGE query by using NOT EXISTS sub-query (#3919)
f49cb46 [CBRD-24584] Improved to minimize the impact of query execution speed when setting sql_trace_slow (#4002)
ffb8a38 [CBRD-24632] Change data put, get and support functions using OR_BUF in object_representation.c to inline functions (#4066)
5abd400 [CBRD-24660] Change small functions that are frequently called in index scans to INLINE. (#4109)
0a4a5ce [CBRD-24850] Enhancing group_concat() Performance by Optimizing String Size and Length Calculation Methods (#4432)
1aec308 [CBRD-24876] Improves MIN/MAX performance when a function index but the first key is not a function. (#4601)
1713a7d [CBRD-24467] Sort-limit optimization does not work when host variable is used in limit clause. (#3793)
7add535 [CBRD-24478] Make sure that the index is not skewed by duplicate keys (#3951, #4401, #4549, #4560, #4565, #4686)
e56ae97 [CBRD-24502] The problem of updating statistical information when performing DDL. (#4111)

SQL changing and Related Bugs Fixes

490f75a [CBRD-24425] Add overflow page information when showing the index capacity (#3738, #3781)
e351dd3 [CBRD-24371] In alter synonym, comments can be changed without a for clause, and empty string comments become NULL. (#3694)
b83cfe7 [CBRD-24396] Ignore hints if there is an invalid index name in the USING INDEX clause (#3674)
8bd7a3b [CBRD-24544] not allow to alter the column type to a type that does not support auto-increment. (#3925)
e466fc4 [CBRD-24563] Add RE2 for REGEXP functions (#3997, #4024, #4033)
beb0d5b [CBRD-24573] Among the SERVER information, dbname and user can be input as a string type (#3989)
1d0e25b [CBRD-24654] When getting a NUMERIC type value, if the value after the decimal point is 0, it should be improved so that the trailing 0's are not passed. (#4096, #4541, #4600, #4606, #4615, #4620)
63133ba [CBRD-24684] divide operation result into numeric type (#4150, #4451, #4465, #4484)
c2f33ca [CBRD-24796] Changed the position of the comment clause in the index creation statement (#4347)
8a6ec84 [CBRD-24638] The problem of the default value of column when altering the type of column. (#4074)
a428310 [CBRD-24780] An error occurs when casting an empty string to bigint. (#4320)
04f3b80 [CBRD-24285] Problem of sort limit optimization without checking not null of foreign key (#3509)
0998326 [CBRD-24384] The core occurs if the user drops a synonym for which the target object is dropped. (#3690)
d014897 [CBRD-24401] In case of using UNION in an IN clause in an inline view, a segment fault occurs (#3666)
9e862c1 [CBRD-24429] Not allowed multiple foreign keys on a column attribute (#3733)
2338860 [CBRD-24435] When renaming a view, even if there is a not null constraint, change it so that no error occurs. (#3744)
273eaa6 [CBRD-24473] Index scan cannot be used when a stored function is used in a where condition. (#3811)
e453929 [CBRD-24487] Core dump occurs when query execution is canceled in the middle of inserting dk bucket of FHS (#3827)
acdeae8 [CBRD-24482] Core dump occurs after function index scan (#3818)
34170af [CBRD-24536] Core occurs when referencing null in CTE (#3914)
b795c3b [CBRD-24538] Core dump occurs when a query containing cte is view merged (#3928)
14097f7 [CBRD-24541] Core dump occurs when 'EXISTS' operation or 'count stop' is used for index scan of partitioned table (#3923)
ce80794 [CBRD-24554] incorrect result of "NOT EXISTS" and "NOT IN" with sub-query returning null (#3937)
590885a [CBRD-24564] reflect reuse-oid option in error message printing at view updating query. (#3959)
5c35efd [CBRD-24581] Assert occurs when using indexes using IFNULL(), NULLIF() functions (#4005)
08f2464 [CBRD-24586] Members of the DBA group must be able to see all objects in the system view. (#4003)
aeea57a [CBRD-24587] Core dumped in do_alter_server (#4167)
57dd3c3 [CBRD-24588] to print out only the comment string without single quote escape in session command (#4008)
bc4f35e [CBRD-24597] fix coerce strict with char to numeric (#4016)
08e2baf [CBRD-24615] Result value error when using query cache in partition table (#4028)
2c0303a [CBRD-24636] Result error of order by limit statement in join query using USE_DESC_IDX hint (#4162)
3d20edf [CBRD-24645] When order-by of subquery is copied to main query during view merging, rownum of main query is displayed incorrectly (#4080)
a2ccab8 [CBRD-24651] Problem that need_count_only optimization is applied when query has after_join predicates (#4089)
f2856af [CBRD-24652] The problem performing hash list scan when VOBJECT is included in predicates. (#4091)
ce7937a [CBRD-24668] Problem that predicate evaluation order is not kept after view merging and push-predicate. (#4124)
c328523 [CBRD-24698] Change table names to lowercase in pt_resolve_showstmt_args_unnamed (#4423)
b79227d [CBRD-24705] When attempting a covered index scan in a connect by query, encountering 'Execute: Query execution failure' (#4237)
98cab50 [CBRD-24734] ERROR -1042 (concat string size max size) error on SP query with NVL2 (#4238)
5d6d524 [CBRD-24735] When attempting 'Multiple Key Ranges Optimization (MRO)', An internal error occurs because the '1=1' predicate (data filer) generated by constant folding is not removed (#4240)
f1b3e6c [CBRD-24770] Whenever one QFILE_TUPLE_RECORD of (CONNECTBY_PROC_NODE *)->start_with_list_id is completed, (INDX_SCAN_ID *)->indx_cov.list_id must be cleared (#4297)
0954c98 [CBRD-24772] A segfault occurs when using the connect by REGEXP_SUBSTR statement (#4296)
500398b [CBRD-24791] Problem that the correlated subquery is not executed repeatedly. (#4339)
0452c58 [CBRD-24806] The use of synonyms is not allowed in the update statistics statement (#4362)
0991315 [CBRD-24813] Problem that term.pred_ord is not initialized. (#4372)
baed85b [CBRD-24815] The precision of the NUMERIC type is set differently for SMALLINT, INT, and BIGINT types (#4375)
80c2836 [CBRD-24828] Executor error when using udf() and bind variable in update query (#4394, #4396)
44153fc [CBRD-24835] Added reading the schema information of the target object that created the synonym (#4473, #4682)
50d425e [CBRD-24843] Eliminate joins must not occur unless all columns of the primary key and foreign key are used as join predicates (#4418)
f4734b2 [CBRD-24875] min, max functions results have a strange (#4469)
19ee4bb [CBRD-24897] Query rewriter can lose parent paths of a name in qo_collect_name_spec() (#4501)
86a75b0 [CBRD-24905] The problem is that a core dump occurs when a value of an invalid index type (such as Collection Type) is bound to host variables (#4614)
b912528 [CBRD-24906] The problem of performing a cross join by changing to the '0 <> 0' condition when the WHERE clause is always false (#4510)
b68dfdf [CBRD-24926] The problem of performing predicate pushing when the value of the column changes every time (#4589)

HA and Related Bugs Fixes

91bcc15 [CBRD-24542] Prevent schema loading with loaddb in HA Mode. (#4156, #4185, #4344, #4639)
c38e1a4 [CBRD-24619] execlude 0.0.0.0 from ping hosts (#4035)
7613188 [CBRD-24626] Supports an alternative way when the ping command is blocked in the HA (#4158, #4260)
538fa05 [CBRD-24721] Improve the sql logging in HA (#4243)
bf0837d [CBRD-24530] The replication often fails when replicating large size records in an HA environment (#3916)
0b34197 [CBRD-24643] fix the replication failure when a large number of records are inserted by loaddb with -C option (#4189, #4206)
fa52734 [CBRD-24983] Fixed an issue where replication to the slave failed due to a change in the record type because applylogdb inserts space for MVCC_INSERT_ID into the record. (#4695)

Java SP and Related Bugs Fixes

5a1d9f8 [CBRD-24511] Change java_stored_procedure_uds param's behavior (#3872)
c70e5d7 [CBRD-24592] Add a new Driver for server-side JDBC (#4010)
1080946 [CBRD-24451] Remove libcas for the legacy Java SP (#3754)
3edfa72 [CBRD-24492] Loading native library in Java SP causes UnsatisfiedLinkError (#3886)
4df1071 [CBRD-24499] Setting CUBRID_TMP causes nativesocket bind error in Java a SP (#3878, #3898)
1fcc0b9 [CBRD-24507] Fix large string handling error in Java SP (#3865)
b8b95aa [CBRD-24509] Redundant data is sent to Java SP server in method scan (#3873)
b8e1f71 [CBRD-24522] Shutdown cub_javasp when heartbeat process is stopped (#3897)
3b31856 [CBRD-24523] Set java_stored_procedure_uds to false forcely on Windows (#3899, #3906)
2118651 [CBRD-24557] Jar is not loaded by Java SP ClassLoader (#3945)
d352c15 [CBRD-24689] Upgrade junixsocket library to the 2.6.2 version (#4163)
4f89cc5 [CBRD-24693] Segfault when Server-side JDBC's request is larger than 4096 (#4165)
353e85d [CBRD-24695] Revise loadjava utility to recreate files when overwriting class files (#4177)
e016906 [CBRD-24697] Clearing structures for statement handler cache of SP properly (#4176)
6fdf878 [CBRD-24980] Fix wasNull () in ServerSideResultSet of server-side JDBC (#4651, #4678)
b199209 [CBRD-24331] Remove socket file before binding for UDS (#3708, #3732)
b20b268 [CBRD-24382] Fix segfault when target of CALL statement is not a stored procedure/function (#3770)
a43f7d7 [CBRD-24585] Explicit commit/rollback statement causes invalid XASL error in SP's query (#4004)
ff14722 [CBRD-24601] Defense code to prevent segfault by function call of NULL pointer object in method_scan (#4018)
53d0efe [CBRD-24631] Fix segfault when an error occurs with return_null_on_function_errors is on (#4062)
351bbb2 [CBRD-24642] Add checking JVM is loaded in SA_MODE not to return error (#4075)
7463d4a [CBRD-24662] Add a LoggingThread to access javasp's log file by only one thread (#4137)
acb0f0e [CBRD-24682] Fix error handling problem caused by CBRD-24585 (#4147)
29a71e1 [CBRD-24961] SP's out parameters takes wrong value (#4617)

SHARD and Related Bugs Fixes

a316fd5 [CBRD-24717] Check minimum and maximum values of shard key (#4214)
329f368 [CBRD-24718] Access log file format error for shard (#4215)
5893f2d [CBRD-24719] Add Proxy and CAS status check function (#4246)
da3e645 [CBRD-24722] fix shard error when use of multiple shard keys used together (#4216)
13321fb [CBRD-24724] retry proxy server connect 3 times, up to 1200 msec (#4230)
a74414b [CBRD-24746] Query with non-existent shard_id causes coredump (#4267)
fe40aee [CBRD-24759] Core dump occurs when recording log without error manager initialization in shard cas. (#4304)
527b142 [CBRD-24877] Shard Invalid argument error occurs only in debug build. (#4486)
83b6b03 [CBRD-24969] Remove semicolon after shard key (#4662)

Improve utilities and Related Bugs Fixes

3e8af3f [CBRD-24404] Implementation of user specific hosts file (#3740, #4380,#4414, #4583)
f0a0358 [CBRD-24882] Extracting index information that requires a lot of OVFP reading during vacuum (#4517, #4584)
61c32da [CBRD-24916] Write a shell script to collect index information with OID overflow page (#4555, #4661, #4680)
9f71e8f [CBRD-24599] Add new csql session command 'SingleLine' (#4065)
0b8bcd4 [CBRD-24614] Integrate SQL formatter to ‘edit’ csql session command (#4097, #4151)
84e9877 [CBRD-24620] Add new csql session command 'connect' (#4134, #4232, #4236, #4334)
698580e [CBRD-24603] Add contents of ;help csql session (histogram, etc) (#4154, #4199)
cd07ff3 [CBRD-24736] use emacs profile for the csql (#4242, #4393)
81caf8f [CBRD-24650] Fixed csql login error message redundant display (#4172)
14d7e06 [CBRD-24622] Create 10 SCHEMA Files for each object type. (#4088, #4160, #4413, #4433, #4602, #4622, #4633, #4648, #4664, #4670)
60e4f5b [CBRD-24468] Allows loading even if the user name and the table name are separated in the object file. (#3794)
b044d24 [CBRD-24982] An error occurs when loaddb after unloaddb of a view query using the server ()
aadd159 [CBRD-24624] Add ability to load multiple schema files from loaddb (#4120)
b461594 [CBRD-24633] Delete owner information from schema, index, trigger, and object files of general users. (#4136, #4327)
001d9f0 [CBRD-24634] Delete methods that require privileges from the general user's schema file (#4155)
1744a4a [CBRD-24464] CREATE SERVER must be done before ADD QUERY to the view. (#3778)
c50fa66 [CBRD-24609] When loading objects files online, if the schema name is not specified, the schema name of the current session must be used. (#4026, #4063)
f12f4b0 [CBRD-24372] Add new client type for loaddb to resolve migration issue by user schema. (#3636)
1e586ac [CBRD-24773] Change the description of options in loaddb (#4299)
8965e07 [CBRD-24800] Prevent missing INVISIBLE attribute in result of unloadb tool (#4351)
19e5e1b [CBRD-24841] The loaddb is fail after merging for the synonym. (#4429)
1a7b943 [CBRD-24849] When using -i and --input-class-only in unloaddb, only sql statements related to tables should be recorded. (#4434, #4572, #4596)
15766ee [CBRD-24974] The problem is that error occurs when loading unloaded schema file if both DBA and user have tables and views with same name (#4624)
7c83062 [CBRD-24986] Error when creating a view containing dblink in loaddb (#4668)
83ddb0e [CBRD-24688] Exception handling for users without class data (#4164)
29624f2 [CBRD-24378] Fix the restoredb not to go beyond the given time (-d) (#3664)
fcbb70c [CBRD-24440] Do not consider stop_at in log_recovery_redo() (#3752)
b830d9a [CBRD-24892] The restoredb with level 1 fails when some of the permanent volume header is not included (#4553)
0be0082 [CBRD-24426] The cub_admin is dead abnomally when executing compactdb utility in the SA-mode (#3719)
6d15ed8 [CBRD-24583] Change addvoldb usage for default path (#4013)
d38434c [CBRD-24667] Fix error for backup_dest_path in ha_make_slavedb.sh (#4122)
4564342 [CBRD-24743] change broker_monitor.c - from ncurses to tinfo functions (#4266, #4330)
7278710 [CBRD-24981] accepts Ctrl-C as the character to exit the broker monitor (#4659)
7dad816 [CBRD-24801] modify broker_tester - add more message on '-o' option (#4350)

Others & Bug Fixes

7b97631 [CBRD-21754] Add _declspec(dllexport) macro in porting.h for windows (#3759)
a55bcbe [CBRD-24096] A core dump occurs when cas writes a log after receiving a sigkill signal. (#4244)
f324d03 [CBRD-24103] The permission of lob sub-directory and lob files have execute permission. So it should be eliminated for the permission consistency and prevention the access. (#4245)
6091c7c [CBRD-24187] Append undo log record only when it is needed in catalog_drop_representation_helper (#3772)
436ff44 [CBRD-24387] Rewrite page handling for overflow oid in btree (#3748)
88c2cf5 [CBRD-24388] Detailed error content when generating foreign keys (#3663)
4bf3bfb [CBRD-24389] do broker conf parameter values consistency check (#3670, #4095, #4102)
16fafb7 [CBRD-24391] Add primary key to code table on demodb (#3662)
8f8e3a8 [CBRD-24392] After an index is created, filtering index is created, but not vice versa. (#3661)
63ff3c2 [CBRD-24402] Add notification of the .bash_profile creation during CUBRID install (#3672)
49a5754 [CBRD-24411] Modification of CUBRID installers to maintain the cubrid.sh file consistency (#3691, #3695, #3699, #3709)
8f4be3f [CBRD-24413] Remove the db_user OID from printing event log. (#3689)
d0e35c3 [CBRD-24416] recording CAS error on additional log files (#3760)
9c498cb [CBRD-24417] fix the occurrence of warning messages for parser_parser_table structure when compiling (#3703)
d92503f [CBRD-24419] Beautify and reorganize the query specification of the boot_define_view
function. (#3735)
c458047 [CBRD-24422] When an error occurs in update_class(), it is not initialized to NULL after classobj_free_template() is executed, so core occurs later. (#3711)
1acbd67 [CBRD-24424] When the pt_set_user_specified_name function is called in the show statement, a core dump occurs because the continue_walk argument is NULL. (#3712)
b299240 [CBRD-24431] In synccoll_check and tzc_update functions, not only class_name but also owner_name should be compared. (#3774, #3823)
2dc756c [CBRD-24439] Change pre-condition to assert in pgbuf_is_temporary_volume() (#3751)
b657f91 [CBRD-24455] Fix the header comment typo in lock_initialize_object_lock_entry_list() (#3758)
444869e [CBRD-24456] Add NULL guards after allocating memory in "src/transaction/lock_manager.c". (#3762)
520e3f5 [CBRD-24457] Remove meaningless conditional macros in "src/storage", "src/transaction" (#3761)
930fe21 [CBRD-24461] Fix the core that occurs when finding user information in cdc (#3775)
c37a85a [CBRD-24463] Enable communication histogram (#3777, #3789)
f19afdf [CBRD-24470] improved ddl audit (#3814)
0bdbcc1 [CBRD-24472] Refactor XASL node's members needlessly serialized to XASL stream (#3798)
2d2e22b [CBRD-24485] Refactoring create_or_drop_index_helper() (#3822)
c0ca96f [CBRD-24486] file_Tempcache memory handling refactoring (#3833)
5fd021f [CBRD-24500] refactoring functions allocate index and classobj put index (#3869)
df8e5cc [CBRD-24503] Added condition to prevent core dump to file_tempcache_final in src/storage/file_manager.c (#3926)
ce41d30 [CBRD-24504] When an error occurs in a function that uses a buffer to convert an identifier name, the buffer must be initialized. (#3844)
1787a11 [CBRD-24505] fix assert for a migration tool to 11.2 (#3820)
6e75b80 [CBRD-24508] Change Windows installer JRE minimum requirement to 1.8 (#3874)
44005dd [CBRD-24512] modify cubrid.conf comments for gateway (#3881)
f7aa68a [CBRD-24517] Records -10006 and -10007 error logs to the cas log file. (#3909)
3fcc8c9 [CBRD-24533] fix the problem of increasing the number of pages in a table where data is frequently inserted and deleted (#4321)
7f2ed49 [CBRD-24540] Core dump when run unloaddb on ubuntu OS (#4038, #4053, #4092, #4107, #4193, #4221)
618c38e [CBRD-24543] remove compat directory from the CUBRID distribution (#3949)
963c4d9 [CBRD-24545] Can not create a lot of statements within one transaction (#3957)
41737e4 [CBRD-24555] The spage_collect_statistics function should consider records deleted by vacuum when calculating the number of records in a data page (#3944)
4ab2866 [CBRD-24567] terminate with exit () instead of _exit () for the GCOV (#3973)
a9a280c [CBRD-24569] Reduce unnecessary function calls when getting system parameters. (#3969, #3994)
7b0043c [CBRD-24579] Initialize pointer variables to prevent core dump. (#3993)
f1d6ac3 [CBRD-24580] Set the request from consumer to producer only by the consumer thread (#3995)
ded5aad [CBRD-24582] Assert occurred during Loose index scan operation (#4006)
9b73dd6 [CBRD-24593] replace select () with poll () in the BROKER (#4011)
bb99ca0 [CBRD-24594] fix pr_midxkey_add_elements() (#4012)
e7ecc42 [CBRD-24598] Memory allocated on the global heap must be freed on the global heap. (#4015)
ba545ef [CBRD-24600] Problem with creating the same index with different names (#4020)
5aba6b1 [CBRD-24606] refactoring pr_midxkey_compare() (#4025)
39c427c [CBRD-24640] Specify the upper and lower bounds of the tde_default_algorithm parameter. (#4083)
6ba7945 [CBRD-24644] 64bit statdump output for CMS the clients (#4084)
c1db9f8 [CBRD-24659] Add linux style absolute path as windows style also (#4106)
129a0da [CBRD-24670] Fix simple typo in btree_find_next_index_record. (#4128)
b4de234 [CBRD-24671] Disable deprecated functions in lock manager. (#4129)
0559d05 [CBRD-24672] Remove a unnessasary condition in btree_verify_subtree. (#4131)
24e94f2 [CBRD-24673] Fix meaningless condition in xbtree_class_test_unique. (#4142)
2a8ece8 [CBRD-24675] A meaningless assignment occurs in btree_get_stats_key. (#4138)
5a6fdef [CBRD-24676] Remove the assert in btree_get_stats_with_AR_sampling. (#4139)
ceabf64 [CBRD-24677] Remove the function lock_object_with_btid () which is declared but not defined. (#4144)
9d70ec4 [CBRD-24678] Disable the deprecated function lock_initialize_resource () in lock manager. (#4145)
b73d1cb [CBRD-24679] auto_commit log error in sql log (#4159)
c114bd8 [CBRD-24681] Change the lock mode that will be released on error after the function file_tracker_interruptable_iterate () is called. (#4146)
1a4b2e6 [CBRD-24701] Modify packer class not to call abort in check_range() function (#4184)
73565f7 [CBRD-24704] demodb is not installed when installing CUBRID engine with msi file for windows. (#4186, #4269)
cdcb8e0 [CBRD-24711] fix to recognize case for database name used as section name in cubrid.conf (#4195)
da8fbca [CBRD-24726] In demodb_schema, add a synonym for the public user's tables to the dba user (#4289, #4341)
d377ca9 [CBRD-24747] Add a comment 'Obsolete' to unused error code macro, ER_CANNOT_GET_KEY_LOCK. (#4293)
a1c6e2e [CBRD-24753] If the schedule is already registered in Install, hang occurs on windows installer. (#4271)
ad79a52 [CBRD-24756] Fix the crash while reading a log record for CDC/Flashback (#4281, #4317)
419bffb [CBRD-24771] fix that the allocated count of heap pages increases unnecessarily if the unique violation occurs frequently (#4298)
bfde227 [CBRD-24781] Added csql option for catalog rebuild (#4325)
b05ead1 [CBRD-24782] [win] broker start ctrl-service wait for cas invocation (#4511)
8f28ae9 [CBRD-24788] Add defense code to prevent core dump due to uninitialized pointer variable in csql (#4336)
4370dcf [CBRD-24797] 'databases.txt.sample' file does not exist In CUBRID package(zip, msi) for windows. (#4348)
66de883 [CBRD-24827] Core dumped, use invisible index for SELECT_BTREE_NODE_INFO or SELECT_KEY_INFO (#4399)
b34fa01 [CBRD-24836] Deletion of a large number of skewed FK indexes following the deletion of the parents table in SA mode (#4422)
d037b66 [CBRD-24842] Rewrite error messages for hostname lookup (#4497, #4551, #4597, #4634, #4653)
15edaae [CBRD-24879] core dump at btree_split_node() (#4481)
a860749 [CBRD-24881] division operation bug for limit and offset (#4478)
12904ec [CBRD-24908] [win] use SOMAXCONN_HINT to obtain actual backlog value (#4512)
f4bd81c [CBRD-24910] Fix the core dump caused by accessing a corrupted log record header (#4536, #4562)
2c92873 [CBRD-24996] er_clear() is slipped even if synonym is found succesfully (#4693)