This commit is contained in:
root
2024-04-24 10:25:44 +08:00
parent 627bf43ee3
commit 248388a322
5271 changed files with 3753425 additions and 803 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
--disable_query_log
EXECUTE ins_sel_with_result;
SET @select_id = LAST_INSERT_ID();
--enable_query_log

View File

@@ -0,0 +1,5 @@
--disable_query_log
EXECUTE ins_sel_no_result;
SET @select_id = LAST_INSERT_ID();
--enable_query_log

View File

@@ -0,0 +1,4 @@
--disable_query_log
eval SET @my_select = 'SELECT CAST($col_type AS $target_type),
$col_type, id FROM t1_values';
--source suite/funcs_1/views/fv1.inc

View File

@@ -0,0 +1,4 @@
--disable_query_log
eval SET @my_select = 'SELECT IF($col_type, ''IS TRUE'', ''IS NOT TRUE''),
$col_type, id FROM t1_values';
--source suite/funcs_1/views/fv1.inc

View File

@@ -0,0 +1,4 @@
--disable_query_log
eval SET @my_select = 'SELECT IF($col_type IS NULL, ''IS NULL'',
''IS NOT NULL''), $col_type, id FROM t1_values';
--source suite/funcs_1/views/fv1.inc

View File

@@ -0,0 +1,4 @@
--disable_query_log
eval SET @my_select = 'SELECT IFNULL($col_type,''IS_NULL''),
$col_type, id FROM t1_values';
--source suite/funcs_1/views/fv1.inc

File diff suppressed because it is too large Load Diff