Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
3823ac32
Commit
3823ac32
authored
Oct 27, 2009
by
Sergey Glukhov
Browse files
Options
Browse Files
Download
Plain Diff
automerge
parents
f554a3c0
6ceaf234
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
25 deletions
+57
-25
mysql-test/r/alter_table.result
mysql-test/r/alter_table.result
+8
-0
mysql-test/t/alter_table.test
mysql-test/t/alter_table.test
+15
-0
sql/field.cc
sql/field.cc
+18
-19
sql/field.h
sql/field.h
+16
-6
No files found.
mysql-test/r/alter_table.result
View file @
3823ac32
...
...
@@ -1330,4 +1330,12 @@ ALTER TABLE t1 MODIFY COLUMN a SET('a1','a2','a0','xx','a5','a6','a7','a8','a9',
affected rows: 2
info: Records: 2 Duplicates: 0 Warnings: 0
DROP TABLE t1;
CREATE TABLE t1 (f1 TIMESTAMP NULL DEFAULT NULL,
f2 INT(11) DEFAULT NULL) ENGINE=MYISAM DEFAULT CHARSET=utf8;
INSERT INTO t1 VALUES (NULL, NULL), ("2009-10-09 11:46:19", 2);
this should affect no rows as there is no real change
ALTER TABLE t1 CHANGE COLUMN f1 f1_no_real_change TIMESTAMP NULL DEFAULT NULL;
affected rows: 0
info: Records: 0 Duplicates: 0 Warnings: 0
DROP TABLE t1;
End of 5.1 tests
mysql-test/t/alter_table.test
View file @
3823ac32
...
...
@@ -1046,4 +1046,19 @@ ALTER TABLE t1 MODIFY COLUMN a SET('a1','a2','a0','xx','a5','a6','a7','a8','a9',
--
disable_info
DROP
TABLE
t1
;
#
# Bug#43508: Renaming timestamp or date column triggers table copy
#
CREATE
TABLE
t1
(
f1
TIMESTAMP
NULL
DEFAULT
NULL
,
f2
INT
(
11
)
DEFAULT
NULL
)
ENGINE
=
MYISAM
DEFAULT
CHARSET
=
utf8
;
INSERT
INTO
t1
VALUES
(
NULL
,
NULL
),
(
"2009-10-09 11:46:19"
,
2
);
--
echo
this
should
affect
no
rows
as
there
is
no
real
change
--
enable_info
ALTER
TABLE
t1
CHANGE
COLUMN
f1
f1_no_real_change
TIMESTAMP
NULL
DEFAULT
NULL
;
--
disable_info
DROP
TABLE
t1
;
--
echo
End
of
5.1
tests
sql/field.cc
View file @
3823ac32
/* Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc.
/* Copyright 2000-2008 MySQL AB, 2008
-2009
Sun Microsystems, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -6550,20 +6550,9 @@ uint Field::is_equal(Create_field *new_field)
}
/* If one of the fields is binary and the other one isn't return 1 else 0 */
bool
Field_str
::
compare_str_field_flags
(
Create_field
*
new_field
,
uint32
flag_arg
)
{
return
(((
new_field
->
flags
&
(
BINCMP_FLAG
|
BINARY_FLAG
))
&&
!
(
flag_arg
&
(
BINCMP_FLAG
|
BINARY_FLAG
)))
||
(
!
(
new_field
->
flags
&
(
BINCMP_FLAG
|
BINARY_FLAG
))
&&
(
flag_arg
&
(
BINCMP_FLAG
|
BINARY_FLAG
))));
}
uint
Field_str
::
is_equal
(
Create_field
*
new_field
)
{
if
(
compare_str_field_flags
(
new_field
,
flags
))
if
(
field_flags_are_binary
()
!=
new_field
->
field_flags_are_binary
(
))
return
0
;
return
((
new_field
->
sql_type
==
real_type
())
&&
...
...
@@ -8329,7 +8318,7 @@ uint Field_blob::max_packed_col_length(uint max_length)
uint
Field_blob
::
is_equal
(
Create_field
*
new_field
)
{
if
(
compare_str_field_flags
(
new_field
,
flags
))
if
(
field_flags_are_binary
()
!=
new_field
->
field_flags_are_binary
(
))
return
0
;
return
((
new_field
->
sql_type
==
get_blob_type_from_length
(
max_data_length
()))
...
...
@@ -8889,7 +8878,7 @@ uint Field_enum::is_equal(Create_field *new_field)
The fields are compatible if they have the same flags,
type, charset and have the same underlying length.
*/
if
(
compare_str_field_flags
(
new_field
,
flags
)
||
if
(
new_field
->
field_flags_are_binary
()
!=
field_flags_are_binary
(
)
||
new_field
->
sql_type
!=
real_type
()
||
new_field
->
charset
!=
field_charset
||
new_field
->
pack_length
!=
pack_length
())
...
...
@@ -9658,7 +9647,7 @@ bool Create_field::init(THD *thd, char *fld_name, enum_field_types fld_type,
}
if
(
length
==
0
)
fld_length
=
0
;
/* purecov: inspected */
fld_length
=
NULL
;
/* purecov: inspected */
}
sign_len
=
fld_type_modifier
&
UNSIGNED_FLAG
?
0
:
1
;
...
...
@@ -9810,8 +9799,7 @@ bool Create_field::init(THD *thd, char *fld_name, enum_field_types fld_type,
case
MYSQL_TYPE_TIMESTAMP
:
if
(
fld_length
==
NULL
)
{
/* Compressed date YYYYMMDDHHMMSS */
length
=
MAX_DATETIME_COMPRESSED_WIDTH
;
length
=
MAX_DATETIME_WIDTH
;
}
else
if
(
length
!=
MAX_DATETIME_WIDTH
)
{
...
...
@@ -9876,7 +9864,7 @@ bool Create_field::init(THD *thd, char *fld_name, enum_field_types fld_type,
sql_type
=
MYSQL_TYPE_NEWDATE
;
/* fall trough */
case
MYSQL_TYPE_NEWDATE
:
length
=
10
;
length
=
MAX_DATE_WIDTH
;
break
;
case
MYSQL_TYPE_TIME
:
length
=
10
;
...
...
@@ -9957,6 +9945,17 @@ bool Create_field::init(THD *thd, char *fld_name, enum_field_types fld_type,
DBUG_RETURN
(
TRUE
);
}
switch
(
fld_type
)
{
case
MYSQL_TYPE_DATE
:
case
MYSQL_TYPE_NEWDATE
:
case
MYSQL_TYPE_TIME
:
case
MYSQL_TYPE_DATETIME
:
case
MYSQL_TYPE_TIMESTAMP
:
charset
=
&
my_charset_bin
;
flags
|=
BINCMP_FLAG
;
default:
break
;
}
DBUG_RETURN
(
FALSE
);
/* success */
}
...
...
sql/field.h
View file @
3823ac32
/* Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc.
/* Copyright 2000-2008 MySQL AB, 2008
, 2009
Sun Microsystems, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -610,6 +610,12 @@ class Field
handle_int64
(
to
,
from
,
low_byte_first_from
,
table
->
s
->
db_low_byte_first
);
return
from
+
sizeof
(
int64
);
}
bool
field_flags_are_binary
()
{
return
(
flags
&
(
BINCMP_FLAG
|
BINARY_FLAG
))
!=
0
;
}
};
...
...
@@ -669,7 +675,6 @@ class Field_str :public Field {
friend
class
Create_field
;
my_decimal
*
val_decimal
(
my_decimal
*
);
virtual
bool
str_needs_quotes
()
{
return
TRUE
;
}
bool
compare_str_field_flags
(
Create_field
*
new_field
,
uint32
flags
);
uint
is_equal
(
Create_field
*
new_field
);
};
...
...
@@ -1284,12 +1289,12 @@ class Field_date :public Field_str {
Field_date
(
uchar
*
ptr_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
enum
utype
unireg_check_arg
,
const
char
*
field_name_arg
,
CHARSET_INFO
*
cs
)
:
Field_str
(
ptr_arg
,
10
,
null_ptr_arg
,
null_bit_arg
,
:
Field_str
(
ptr_arg
,
MAX_DATE_WIDTH
,
null_ptr_arg
,
null_bit_arg
,
unireg_check_arg
,
field_name_arg
,
cs
)
{}
Field_date
(
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
CHARSET_INFO
*
cs
)
:
Field_str
((
uchar
*
)
0
,
10
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
:
Field_str
((
uchar
*
)
0
,
MAX_DATE_WIDTH
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
NONE
,
field_name_arg
,
cs
)
{}
enum_field_types
type
()
const
{
return
MYSQL_TYPE_DATE
;}
enum
ha_base_keytype
key_type
()
const
{
return
HA_KEYTYPE_ULONG_INT
;
}
...
...
@@ -1399,12 +1404,12 @@ class Field_datetime :public Field_str {
Field_datetime
(
uchar
*
ptr_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
enum
utype
unireg_check_arg
,
const
char
*
field_name_arg
,
CHARSET_INFO
*
cs
)
:
Field_str
(
ptr_arg
,
19
,
null_ptr_arg
,
null_bit_arg
,
:
Field_str
(
ptr_arg
,
MAX_DATETIME_WIDTH
,
null_ptr_arg
,
null_bit_arg
,
unireg_check_arg
,
field_name_arg
,
cs
)
{}
Field_datetime
(
bool
maybe_null_arg
,
const
char
*
field_name_arg
,
CHARSET_INFO
*
cs
)
:
Field_str
((
uchar
*
)
0
,
19
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
:
Field_str
((
uchar
*
)
0
,
MAX_DATETIME_WIDTH
,
maybe_null_arg
?
(
uchar
*
)
""
:
0
,
0
,
NONE
,
field_name_arg
,
cs
)
{}
enum_field_types
type
()
const
{
return
MYSQL_TYPE_DATETIME
;}
#ifdef HAVE_LONG_LONG
...
...
@@ -2076,6 +2081,11 @@ class Create_field :public Sql_alloc
Item
*
on_update_value
,
LEX_STRING
*
comment
,
char
*
change
,
List
<
String
>
*
interval_list
,
CHARSET_INFO
*
cs
,
uint
uint_geom_type
);
bool
field_flags_are_binary
()
{
return
(
flags
&
(
BINCMP_FLAG
|
BINARY_FLAG
))
!=
0
;
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment