ctshim
ctshim
http://jira.cubrid.org/browse/CBRD-24387 * Perform unnecessary code cleanup and rewrite without changing functionality.
http://jira.cubrid.org/browse/CBRD-24156 * Clean up PT_TYPE_NCHAR and PT_TYPE_VARNCHAR related codes. * Clean up PT_GENERIC_TYPE_NCHAR related codes. * PT_IS_SIMPLE_CHAR_STRING_TYPE() is superseded by PT_IS_CHAR_STRING_TYPE().
http://jira.cubrid.org/browse/CBRD-24261 * [CBRD-24261] POC: tbl@server, step 1 ``` ============================================== These are currently testable cases. ============================================== select * from remote_t@srv1; select * from remote_t@srv1 tbl; select remote_t.* from remote_t@srv1; select tbl.*...
http://jira.cubrid.org/browse/CBRD-24152 qexec_intprt_fnc(), qexec_merge_fnc() The common parts of the two functions are rewritten as separate functions to improve code readability. Removed some unnecessary variable usage. Also, in the qexec_execute_scan() function, unnecessary...
http://jira.cubrid.org/browse/CBRD-24098 We want to reduce the cost of comparing key values in the use of mht_xxx() family of functions. For this, first-order filtering is performed by comparing integers using hash...
http://jira.cubrid.org/browse/CBRD-24470 * Remove unnecessary memory allocation and deallocation. * Make sure that the query string is copied only if it contains the DDL syntax.
http://jira.cubrid.org/browse/CBRD-24438 * Hide the password in the log file
http://jira.cubrid.org/browse/CBRD-25171 * Use PEEK_KEY_VALUE instead of COPY_KEY_VALUE in btree_range_scan_read_record() - If you need to use cur_key after pgbuf_unfix(), clone it.
http://jira.cubrid.org/browse/CBRD-25236 * When obtaining TZM information from the to_char() and time_format() functions, it appears differently from the date_format() function. ``` ;set timezone="-09:10" SELECT TO_CHAR(datetime'2009-10-04 11:07:00', 'TZH TZM TZH:TZM'),DATE_FORMAT(datetime'2009-10-04 11:07:00', '%TZH...
http://jira.cubrid.org/browse/CBRD-25239 * Fixed error when using User variable in TIME_FORMAT() function ``` set @dt=datetime'2009-10-04 11:07:00'; SELECT TIME_FORMAT(@dt, '%TZH:%TZM'); ```