~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Henrik Ingo
  • Date: 2011-10-04 20:01:12 UTC
  • mto: This revision was merged to the branch mainline in revision 2431.
  • Revision ID: henrik.ingo@avoinelama.fi-20111004200112-saqklktzedntsgef
This does 2 things:

1) Modify pandora-plugin to allow more keys in a plugin.ini. Until now
you could only specify headers, sources and extra-dist, but not
scripts (that are not compiled, just copied) or various text or data
files you wish to be part of an installation.

The new plugin.ini keys correspond to automake targets as follows:

# plugin.ini key
automake variable
-----------------
# scripts or bin_scripts
dist_bin_SCRIPTS=
# sbin_scripts
dist_sbin_SCRIPTS=
# libexec_scripts
dist_libexec_SCRIPTS=
# pkg_scripts
dist_pkgdata_SCRIPTS=
# data
dist_data_DATA=
# pkg_data
dist_pkgdata_DATA=
# sysconf_data
dist_sysconf_DATA=

2a) Uses the new keys pkg_scripts and pkg_data to move some useful
files from the auth_ldap plugin to ./share/drizzle7/ so an end user
can benefit from them without downloading Drizzle source codes.

2b) Also adds libdrizzle-2.0/libdrizzle/mysql_password_hash to programs
that should be installed and changes the name to drizzle_password_hash.
(Source filenames are unchanged. Makefile first builds mysql_password_hash
and then makes a copy to the final name. I didn't know if someone expects
mysql_password_hash to be there in some tests or something.)

The intent is to write documentation for LDAP authentication that uses
bin/drizzle_password_hash and share/drizzle7/* for creating LDAP user
records.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1,t2;
 
2
set @my_sort_buffer_size          =@@global.sort_buffer_size;
2
3
set @my_max_heap_table_size       =@@global.max_heap_table_size;
3
4
set @my_max_join_size             =@@global.max_join_size;
4
5
set @my_mysql_protocol_buffer_length =@@global.mysql_protocol_buffer_length;
549
550
set GLOBAL bulk_insert_buffer_size=DEFAULT;
550
551
set GLOBAL join_buffer_size=DEFAULT;
551
552
set GLOBAL max_allowed_packet=DEFAULT;
552
 
set GLOBAL max_heap_table_size=DEFAULT;
 
553
set GLOBAL max_heap_table_size=@my_max_heap_table_size;
553
554
set GLOBAL max_join_size=DEFAULT;
554
555
set GLOBAL max_sort_length=DEFAULT;
555
556
set GLOBAL max_write_lock_count=DEFAULT;
557
558
set GLOBAL mysql_protocol_buffer_length=DEFAULT;
558
559
set GLOBAL read_buffer_size=DEFAULT;
559
560
set GLOBAL read_rnd_buffer_size=DEFAULT;
560
 
set GLOBAL server_id=DEFAULT;
561
 
set GLOBAL sort_buffer_size=DEFAULT;
 
561
set global server_id=@my_server_id;
 
562
set GLOBAL sort_buffer_size=@my_sort_buffer_size;
562
563
set GLOBAL table_open_cache=DEFAULT;
563
564
set GLOBAL storage_engine= @my_storage_engine;
564
565
set GLOBAL tmp_table_size=DEFAULT;
566
567
set SESSION bulk_insert_buffer_size=DEFAULT;
567
568
set SESSION join_buffer_size=DEFAULT;
568
569
set SESSION max_allowed_packet=DEFAULT;
569
 
set SESSION max_heap_table_size=DEFAULT;
 
570
set SESSION max_heap_table_size=@my_max_heap_table_size;
570
571
set SESSION max_join_size=DEFAULT;
571
572
set SESSION max_sort_length=DEFAULT;
572
573
set SESSION read_buffer_size=DEFAULT;