| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Fixed problems with group_concat() and HAVING
Updated crash-me values
|
| |
|
|\
| |
| |
| | |
into mysql.com:/home/my/mysql-4.1
|
| |
| |
| |
| |
| |
| | |
Fixed bugs in group_concat with ORDER BY and DISTINCT (Bugs #2695, #3381 and #3319)
Fixed crash when doing rollback in slave and the io thread catched up with the sql thread
Set locked_in_memory properly
|
|/
|
|
|
|
|
|
|
|
|
| |
Final version of patch.
Adds support for specifying of DEFAULT NOW() and/or ON UPDATE NOW()
clauses for TIMESTAMP field definition.
Current implementation allows only one such field per table and
uses several unireg types for storing info about this properties of
field. It should be replaced with better implementation when new
.frm format is introduced.
|
|
|
|
| |
(Bug #2654)
|
|
|
|
|
|
|
|
|
|
|
| |
BINARY(N) and VARBIBARY(N)
2. More 4.0 compatibility and more BINARY keyword consistency:
2a. CREATE TABLE a (a CHAR(N) BINARY)
is now synonym for
CREATE TABLE a (a CHAR(N) COLLATE xxxx_bin)
2b. SELECT BINARY x
is still synonin for
SELECT x COLLATE xxxxx_bin.
|
|\
| |
| |
| | |
into mysql.com:/home/my/mysql-4.1
|
| |
| |
| |
| |
| |
| | |
Don't read character set files if we are using only the default charset. In most cases the user will not anymore get a warning about missing character set files
Compare strings with space extend instead of space strip. Now the following comparisons holds: "a" == "a " and "a\t" < "a". (Bug #3152).
Note: Because of the above fix, one has to do a REPAIR on any table that has an ascii character < 32 last in a CHAR/VARCHAR/TEXT columns.
|
|\ \
| |/
|/| |
|
| |
| |
| |
| | |
small optimisation in signed_literal
|
|\ \ |
|
| |/ |
|
|\ \
| | |
| | |
| | | |
into deer.(none):/home/hf/work/mysql-4.1.233
|
| |/ |
|
|/ |
|
|
|
|
|
| |
Now we use virtual calls instead and redirect VMT pointer of the
geometry object with 'new' operation
|
|\
| |
| |
| | |
into eagle.mysql.r18.ru:/home/vva/work/BUG_2082/mysql-4.1
|
| |
| |
| |
| |
| |
| |
| |
| | |
- get my_strtod to return inf
- get Field_float::store(double) and Field_double::store(float) to set null for
nan value
(as extra serg's recomendations to fix for patch on
Bug #2082 'mysqldump converts "inf" to null')
|
| |
| |
| |
| | |
added commands vertical_results and horisontal_results to client/mysqltest.c
|
|/ |
|
|
|
|
|
| |
Fixed that blobs >16M can be inserted/updated
Fixed bug when doing CREATE TEMPORARY TABLE ... LIKE
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Moved all range checks for TIMESTAMP value to my_gmt_sec().
Also fixed check of upper boundary of TIMESTAMP range (which
also now will catch datetime values which are too small for
TIMESTAMP in case if time_t is unsigned).
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
values for TIMESTAMP columns. The solution is not perfect since
we just silently ignoring default value for first TIMESTAMP
column and properly reflecting this fact in SHOW CREATE TABLE.
We can't give a warning or simply support standard syntax
(niladic functions as legal value for default) for first field
since it is 4.0 tree.
|
| | | |
|
| | |\
| | | |
| | | |
| | | | |
into eagle.mysql.r18.ru:/home/vva/work/BUG_2023/mysql-4.0
|
| | | |
| | | |
| | | |
| | | | |
(char * -> const char*)
|
|/ / /
| | |
| | |
| | | |
Multibyte charsets do not check that incoming data is well-formed
|
| | |
| | |
| | |
| | | |
Removed warnings from test suite
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
http://bugs.mysql.com/bug.php?id=2366
Wrong utf8 behaviour when data is trancated
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixed output from mysqlbinlog when using --skip-comments
Fixed warnings from valgrind
Fixed ref_length when used with HEAP tables
More efficent need_conversion()
Fixed error handling in UPDATE with not updateable tables
Fixed bug in null handling in CAST to signed/unsigned
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
WL#1163 (Making spatial code optional)
Pack of changes to do in sql/ code.
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
http://bugs.mysql.com/bug.php?id=2218
updating utf-8 text field generate nonsense chars
Fix for the above bug.
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Cleaned up embedded library access and query cache handling
Changed min stack size to 128K (to allow longer MyISAM keys)
Fixed wrong priority for XOR (should be less than NEG to get -1^1 to work)
|
| |\ \ \
| | |/ / |
|
| | | | |
|
| | |\ \
| | | |/
| | |/|
| | | | |
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
|
| | | |\
| | | | |
| | | | |
| | | | | |
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
|
| | | | | |
|
| | | | | |
|
| | |/ /
| | | |
| | | |
| | | | |
(bug #2023)
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
if we failed to classify integer as datetime
in Field_datetime::store().
Stylistic clean-ups.
|