~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to libmysqld/Makefile.am

  • Committer: monty at mysql
  • Date: 2002-07-23 15:31:22 UTC
  • mto: (1110.1.7)
  • mto: This revision was merged to the branch mainline in revision 1116.
  • Revision ID: sp1r-monty@mashka.mysql.fi-20020723153122-09736
New SET syntax & system variables.
Made a some new buffers thread specific and changeable.
Resize of key_buffer.
AUTO_COMMIT -> AUTOCOMMIT
Fixed mutex bug in DROP DATABASE
Fixed bug when using auto_increment as second part of a key where first part could include NULL.
Split handler->extra() to extra() and extra_opt() to be able to support thread specific buffers.
Don't write message to error log when slave reconnects becasue of timeout.
Fixed possible update problem when using DELETE/UPDATE on small tables
(In some cases we used index even if table scanning would be better)
A lot of minior code cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
noinst_LIBRARIES =      libmysqld_int.a
33
33
pkglib_LIBRARIES =      libmysqld.a
34
34
SUBDIRS =               . examples
35
 
libmysqld_sources=      libmysqld.c lib_sql.cc lib_load.cc
 
35
libmysqld_sources=      libmysqld.c lib_sql.cc
36
36
libmysqlsources =       errmsg.c get_password.c password.c
37
37
 
38
38
noinst_HEADERS =        embedded_priv.h
46
46
        item_uniq.cc key.cc lock.cc log.cc log_event.cc mf_iocache.cc\
47
47
        mini_client.cc net_pkg.cc net_serv.cc opt_ft.cc opt_range.cc \
48
48
        opt_sum.cc procedure.cc records.cc sql_acl.cc \
49
 
        repl_failsafe.cc slave.cc \
 
49
        repl_failsafe.cc slave.cc sql_load.cc \
50
50
        sql_analyse.cc sql_base.cc sql_cache.cc sql_class.cc \
51
51
        sql_crypt.cc sql_db.cc sql_delete.cc sql_insert.cc sql_lex.cc \
52
 
        sql_list.cc sql_manager.cc sql_map.cc sql_parse.cc \
 
52
        sql_list.cc sql_manager.cc sql_map.cc set_var.cc sql_parse.cc \
53
53
        sql_rename.cc sql_repl.cc sql_select.cc sql_do.cc sql_show.cc \
54
54
        sql_string.cc sql_table.cc sql_test.cc sql_udf.cc \
55
55
        sql_update.cc sql_yacc.cc table.cc thr_malloc.cc time.cc \