summaryrefslogtreecommitdiff
path: root/sql/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902)monty@mysql.com2005-04-011-1/+1
| | | | | | CAST() now produces warnings when casting a wrong INTEGER or CHAR values. This also applies to implicite string to number casts. (Bug #5912) ALTER TABLE now fails in STRICT mode if it generates warnings. Inserting a zero date in a DATE, DATETIME or TIMESTAMP column during TRADITIONAL mode now produces an error. (Bug #5933)
* Merging support for blackhole up to 5.0.brian@zim.(none)2005-03-251-3/+2
|\
| * Additional storage engine called "blackhole". Customer request, and for that ↵brian@zim.(none)2005-03-221-2/+2
| | | | | | | | matter a Zawodny request. With this you can alter table to a type of table that would never store data. Its a /dev/null for a database.
* | Removed support for RAID, mit-threads, and MySQL FS (really, if someone ↵brian@zim.(none)2005-03-161-1/+1
| | | | | | | | wants this feature look at a web-dav hookup).
* | Precision Math implementationhf@deer.(none)2005-02-091-2/+2
| |
* | small Makefile.am cleanupserg@serg.mylan2005-01-281-4/+2
| | | | | | | | | | clean: targets removed generated *.h files moved to include/
* | Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.0patg@patrick-galbraiths-computer.local2004-12-161-2/+5
|\ \ | | | | | | | | | into patrick-galbraiths-computer.local:/Users/patg/5.0-federated
| * | First commit to mysql-5.0 tree to include MySQL Federated Storage Handler. ↵patg@patrick-galbraiths-computer.local2004-12-111-2/+5
| | | | | | | | | | | | This includes both the source and header files, test (results, test, require), and modifications to server and handler base files, and autoconf modifications to properly build federated handler.
* | | WL#1051, more maintanable error messages.anjuta@arthur.local2004-12-131-1/+1
|/ /
* | Add support for up to VARCHAR (size up to 65535)monty@mysql.com2004-12-061-4/+3
| | | | | | | | | | | | | | | | | | Renamed HA_VAR_LENGTH to HA_VAR_LENGTH_PART Renamed in all files FIELD_TYPE_STRING and FIELD_TYPE_VAR_STRING to MYSQL_TYPE_STRING and MYSQL_TYPE_VAR_STRING to make it easy to catch all possible errors Added support for VARCHAR KEYS to heap Removed support for ISAM Now only long VARCHAR columns are changed to TEXT on demand (not CHAR) Internal temporary files can now use fixed length tables if the used VARCHAR columns are short
* | merge with 4.1monty@mysql.com2004-10-291-1/+1
|\ \ | |/
| * logging_ok:mikael@mc04.(none)2004-09-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Logging to logging@openlogging.org accepted SCI_Transporter.hpp, SCI_Transporter.cpp: Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling TransporterRegistry.cpp: Some fixes for wrap around needed plus DBUG handling TCP_Transporter.hpp, TCP_Transporter.cpp: Added DBUG statements SHM_Transporter.hpp, SHM_Transporter.cpp: Fixed SHM Transporter SHM_Buffer.hpp: Fixed SHM Buffer to handle wrap around properly IPCConfig.cpp: Fixed up config of SCI SocketServer.cpp: Added DBUG support for SocketServer threads ConfigInfo.cpp: Config changes for SCI TransporterDefinitions.hpp, mgmapi_config_parameters.h: SCI fixes Makefile.am, type_ndbapitools.mk.am, type_ndbapitest.mk.am: Added SCI library path to Makefiles configure.in: Fixed small bug with shared mem and sci together in configure acinclude.m4: Added possibility of providing SCI library path in confgure
* | Yet another manual merge with main tree for patch for WL#1218 "Triggers"dlenev@mysql.com2004-09-091-16/+20
|\ \
| * \ Merge with 4.1monty@mysql.com2004-09-061-16/+20
| |\ \ | | |/ | | | | | | | | | (Includes merge of arena code in 4.1 and 5.0)
| | * after merge fixserg@serg.mylan2004-08-201-2/+1
| | |
| | * dependencies are auto-generatedserg@serg.mylan2004-08-191-1/+0
| | |
| | * manually mergedserg@serg.mylan2004-08-181-2/+2
| | |\
| | | * distclean:serg@serg.mylan2004-07-221-2/+2
| | | | | | | | | | | | | | | | | | | | rm -f lex_hash.h BUG#4583
| | * | automake fix for getting dependencies right for ndbtomas@poseidon.(none)2004-08-171-0/+1
| | | |
| | * | Merge baker@bk-internal.mysql.com:/home/bk/mysql-4.1brian@avenger.(none)2004-08-131-2/+4
| | |\ \ | | | | | | | | | | | | | | | into avenger.(none):/export/brian/tina-4.1
| | | * | This is the addition of the CSV engine "aka tina". Its an example engine ↵brian@avenger.(none)2004-08-121-2/+4
| | | | | | | | | | | | | | | | | | | | that works as a plain text file.
| | * | | - added the MYSQL_EXTRA_LDFLAGS to the mysql_tzinfo_to_sql linklenz@mysql.com2004-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | flags to enable static linking (to avoid having a shared lib dependency in the Linux RPMs) - Disabled OpenSSL in the Max RPM
| | * | | WL#1518, "make bundled zlib usable for unix builds": konstantin@mysql.com2004-07-241-9/+10
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | required autotools macro written and deployed in all apropriate Makefile.ams. Use cases checked: - linux, standard location of zlib, no ndb - linux, standard locatoin of zlib, with ndb - linux, non-standard location of zlib, no ndb - hpux11, use of bundled zlib, no ndb The only non-checked case is non-standard location of zlib (or use of bundled zlib) + ndb. I wasn't able to check it as ndb/ just won't compile on beasts like AIX52 or HPUX11, where such a check is possible. It didn't compile there before as these systems dont't have installed zlib, so nothing got broken ;)
* | | | WL#1218 "Triggers". Some very preliminary version of patch.dlenev@brandersnatch.localdomain2004-09-071-2/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mostly needed for Monty for him getting notion what needed for triggers from new .FRM format. Things to be done: - Right placement of trigger's invocations - Right handling of errors in triggers (including transaction rollback) - Support for priviliges - Right handling of DROP/RENAME table (hope that it will be handled automatically with merging of .TRG into .FRM file) - Saving/restoring some information critical for trigger creation and replication with their definitions (e.g. sql_mode, creator, ...) - Replication Already has some known bugs so probably not for general review.
* | | VIEWbell@sanja.is.com.ua2004-07-161-1/+2
| | | | | | | | | | | | two TABLE_LIST copy eliminated
* | | Merge with 4.1.3-betamonty@mysql.com2004-07-071-4/+17
|\ \ \ | |/ /
| * | tell make how to create mysql_tzinfo_to_sql.ccserg@serg.mylan2004-06-271-3/+5
| | |
| * | Ensure that we don't create long temporary .o file (breaks on qnx)monty@mysql.com2004-06-271-6/+6
| | |
| * | Fix for Bug#4030 "Client side conversion string -> date type doesn't konstantin@mysql.com2004-06-241-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | work (prepared statements)" and after-review fixes: - str_to_TIME renamed to str_to_datetime to pair with str_to_time - functions str_to_time and str_to_TIME moved to sql-common - send_data_str now supports MYSQL_TYPE_TIME, MYSQL_TIME_DATE, MYSQL_TIME_DATETIME types of user input buffers. - few more comments in the client library - a test case added.
| * | Final solution to mysql_tzinfo_to_sql problem.dlenev@brandersnatch.localdomain2004-06-231-0/+9
| | |
| * | Fix for build from bk failures with old automake.dlenev@brandersnatch.localdomain2004-06-221-5/+0
| | | | | | | | | | | | | | | mysql_tzinfo_to_sql converter was moved to extra/ directory and its build was made compatible with older automake versions.
| * | Removed building of test_time test since it was not needed/used really and ↵dlenev@brandersnatch.localdomain2004-06-221-5/+1
| | | | | | | | | | | | | | | | | | caused problems on many platforms (the other option was providing portable setenv() replacement).
| * | WL#1264 "Per-thread time zone support infrastructure".dlenev@brandersnatch.localdomain2004-06-181-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added basic per-thread time zone functionality (based on public domain elsie-code). Now user can select current time zone (from the list of time zones described in system tables). All NOW-like functions honor this time zone, values of TIMESTAMP type are interpreted as values in this time zone, so now our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH LOCAL TIME ZONE (or proper PostgresSQL type). WL#1266 "CONVERT_TZ() - basic time with time zone conversion function". Fixed problems described in Bug #2336 (Different number of warnings when inserting bad datetime as string or as number). This required reworking of datetime realted warning hadling (they now generated at Field object level not in conversion functions). Optimization: Now Field class descendants use table->in_use member instead of current_thd macro.
| * | Merge baker@bk-internal.mysql.com:/home/bk/mysql-4.1brian@brian-akers-computer.local2004-05-251-2/+2
| |\ \ | | | | | | | | | | | | into brian-akers-computer.local:/Users/brian/mysql/mysql-4.1
| | * | Mergebrian@brian-akers-computer.local2004-05-221-5/+5
| | | |
| | * | First commit of archive example. Archive is a simple storage engine that ↵brian@avenger.(none)2004-05-201-2/+2
| | | | | | | | | | | | | | | | handles inserts and selects.
* | | | Merging 4.1 to 5.0.pem@mysql.com2004-05-261-2/+2
|\ \ \ \ | |/ / /
| * | | Merge with 4.0, mainly to get changes to windows project filesmonty@mysql.com2004-05-201-2/+2
| |\ \ \ | | | |/ | | |/|
| | * | Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'monty@mysql.com2004-05-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensured that all projects compile Removed compiler warnings Better setting of server_version variable. Fix that make_win_src_distribution creates the privilege tables.
* | | | Post-merge post-merge fix (new error codes for fparser).pem@mysql.com2004-05-141-2/+3
|\ \ \ \
| * | | | file parser for new .frmbell@sanja.is.com.ua2004-05-111-2/+3
| | | | |
* | | | | Merge 4.1 -> 5.0pem@mysql.com2004-05-071-6/+8
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Merge conflicts with EXAMPLE handlermagnus@neptunus.(none)2004-04-151-5/+5
| |\ \ \ | | |_|/ | |/| |
| | * | Added NDB storage enginemagnus@neptunus.(none)2004-04-151-5/+5
| | | |
| * | | All changes are to allow someone to compile the example storage engine and ↵brian@brian-akers-computer.local2004-04-121-3/+5
| |/ / | | | | | | | | | use it.
* | | Merge 4.1 into 5.0.pem@mysql.com2004-02-101-2/+2
|\ \ \ | |/ /
| * | Code cleanup:ram@gw.mysql.r18.ru2004-02-031-2/+2
| | | | | | | | | | | | we don't need opt_range.h and opt_range.cc files at all.
* | | - Added missing backslash to sql/Makefile.am that prevented the sp_* headerlenz@kallisto.local2003-12-041-1/+1
| | | | | | | | | | | | files from being included in the source distribution
* | | Merging 4.1->5.0.pem@mysql.com2003-11-191-1/+4
|\ \ \ | |/ / |/| |
| * | Implemented SP CONDITIONs and HANDLERs, with the extension of handlingpem@mysql.telia.com2003-09-161-1/+2
| | | | | | | | | | | | | | | | | | MySQL error codes as well. (No UNDO HANDLERs yet, and no SIGNAL or RESIGNAL.) WL#850