~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

enable subselect_not, subselect_no_mat and variables tests, some other misc clean up on other tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
355
355
 
356
356
SET GLOBAL table_open_cache=-1;
357
357
SHOW VARIABLES LIKE 'table_open_cache';
358
 
# NEEDS INVESTIGATION
359
 
SELECT * FROM INFORMATION_SCHEMA.SESSION_VARIABLES WHERE VARIABLE_NAME LIKE 'table_open_cache';
 
358
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
 
359
#SELECT * FROM INFORMATION_SCHEMA.SESSION_VARIABLES WHERE VARIABLE_NAME LIKE 'table_open_cache';
360
360
SET GLOBAL table_open_cache=DEFAULT;
361
361
 
362
362
#
363
 
# Bug #9613: @@have_innodb
364
 
#
365
 
 
366
 
--replace_column 1 #
367
 
# NEED INVESTIGATION
368
 
#select @@have_innodb;
369
 
 
370
 
#
371
363
# Tests for lc_time_names
372
364
# Note, when adding new locales, please fix ID accordingly:
373
365
# - to test the last ID (currently 108)
497
489
set @old_sql_big_selects = @@sql_big_selects;
498
490
set @@sql_big_selects = 1;
499
491
show variables like 'sql_big_selects';
500
 
# NEEDS INVESTIGATION
 
492
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
501
493
#select * from information_schema.session_variables where variable_name like 'sql_big_selects';
502
494
set @@sql_big_selects = @old_sql_big_selects;
503
495
 
507
499
508
500
set @@sql_notes = 0, @@sql_warnings = 0;
509
501
show variables like 'sql_notes';
510
 
# NEEDS INVESTIGATION
 
502
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
511
503
#select * from information_schema.session_variables where variable_name like 'sql_notes';
512
504
show variables like 'sql_warnings';
513
 
# NEEDS INVESTIGATION
 
505
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
514
506
#select * from information_schema.session_variables where variable_name like 'sql_warnings';
515
507
set @@sql_notes = 1, @@sql_warnings = 1;
516
508
show variables like 'sql_notes';
517
 
# NEEDS INVESTIGATION
 
509
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
518
510
#select * from information_schema.session_variables where variable_name like 'sql_notes';
519
511
show variables like 'sql_warnings';
520
 
# NEEDS INVESTIGATION
 
512
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
521
513
#select * from information_schema.session_variables where variable_name like 'sql_warnings';
522
514
 
523
515
#
545
537
--replace_column 2 #
546
538
show variables like 'basedir';
547
539
--replace_column 2 #
548
 
# NEEDS INVESTIGATION
 
540
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
549
541
#select * from information_schema.session_variables where variable_name like 'basedir';
550
542
--replace_column 2 #
551
543
show variables like 'datadir';
552
544
--replace_column 2 #
553
 
# NEEDS INVESTIGATION
 
545
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
554
546
#select * from information_schema.session_variables where variable_name like 'datadir';
555
547
--replace_column 2 #
556
548
show variables like 'tmpdir';
557
549
--replace_column 2 #
558
 
# NEEDS INVESTIGATION
 
550
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
559
551
#select * from information_schema.session_variables where variable_name like 'tmpdir';
560
552
 
561
553
#
562
554
# Bug #19606: make ssl settings available via SHOW VARIABLES and @@variables
563
555
564
556
# Don't actually output, since it depends on the system
565
 
--replace_column 1 # 2 # 3 # 4 # 5 #
566
 
# NEEDS INVESTIGATION
 
557
#--replace_column 1 # 2 # 3 # 4 # 5 #
 
558
# Not supported in Drizzle
567
559
#select @@ssl_ca, @@ssl_capath, @@ssl_cert, @@ssl_cipher, @@ssl_key;
568
 
--replace_column 2 #
569
 
show variables like 'ssl%';
570
 
--replace_column 2 #
571
 
# NEEDS INVESTIGATION
 
560
#--replace_column 2 #
 
561
#show variables like 'ssl%';
 
562
#--replace_column 2 #
 
563
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
572
564
#select * from information_schema.session_variables where variable_name like 'ssl%' order by 1;
573
565
 
574
566
#
575
567
# Bug #19616: make log_queries_not_using_indexes available in SHOW VARIABLES
576
568
# and as @@log_queries_not_using_indexes
577
569
#
578
 
# NEEDS INVESTIGATION
 
570
# Not valid in Drizzle
579
571
#select @@log_queries_not_using_indexes;
580
572
#show variables like 'log_queries_not_using_indexes';
581
 
# NEEDS INVESTIGATION
 
573
# Bug 311025 Segmentation fault when accessing INFORMATION_SCHEMA
582
574
#select * from information_schema.session_variables where variable_name like 'log_queries_not_using_indexes';
583
575
 
584
576
#
613
605
set global binlog_cache_size         =@my_binlog_cache_size;
614
606
set global connect_timeout           =@my_connect_timeout;
615
607
set global flush                     =@my_flush;
616
 
# NEEDS INVESTIGATION
617
608
--error 1193
618
609
set global flush_time                =@my_flush_time;
619
610
set global key_buffer_size           =@my_key_buffer_size;
626
617
# No default
627
618
#set global max_user_connections      =default;
628
619
set global max_write_lock_count      =default;
629
 
# NEEDS INVESTIGATION
630
620
--error 1193
631
621
set global myisam_data_pointer_size  =@my_myisam_data_pointer_size;
632
622
set global net_buffer_length         =@my_net_buffer_length;
633
623
set global net_write_timeout         =@my_net_write_timeout;
634
624
set global net_read_timeout          =@my_net_read_timeout;
635
 
# NEEDS INVESTIGATION
636
625
--error 1193
637
626
set global rpl_recovery_rank         =@my_rpl_recovery_rank;
638
627
set global server_id                 =@my_server_id;
639
628
set global slow_launch_time          =@my_slow_launch_time;
640
629
set global storage_engine            =@my_storage_engine;
641
 
# NEEDS INVESTIGATION
642
630
--error 1193
643
631
set global thread_cache_size         =@my_thread_cache_size;
644
632
 
646
634
# Bug#28580 Repeatation of status variables
647
635
#
648
636
--replace_column 2 #
649
 
# NEEDS INVESTIGATION
650
 
#show global variables where Variable_name='table_definition_cache' or
651
 
#Variable_name='table_lock_wait_timeout';
652
 
 
653
 
###########################################################################
654
 
 
655
 
--echo
656
 
--echo # --
657
 
--echo # -- Bug#34820: log_output can be set to illegal value.
658
 
--echo # --
659
 
 
660
 
# NEEDS INVESTIGATION
661
 
--error ER_WRONG_VALUE_FOR_VAR
662
 
#SET GLOBAL log_output = '';
663
 
 
664
 
# NEEDS INVESTIGATION
665
 
--error ER_WRONG_VALUE_FOR_VAR
666
 
#SET GLOBAL log_output = 0;
667
 
 
668
 
--echo
669
 
--echo # -- End of Bug#34820.
670
 
 
 
637
# Drizzle Bug 311044
 
638
#show global variables where variable_name='table_definition_cache' or Variable_name='table_lock_wait_timeout';