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
a67beee2
Commit
a67beee2
authored
Nov 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-5.0
into mysql.com:/home/mydev/mysql-5.0-bug13707
parents
e8b14c4d
07ddf769
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
+12
-9
sql/field.cc
sql/field.cc
+12
-9
No files found.
sql/field.cc
View file @
a67beee2
...
@@ -6194,6 +6194,8 @@ uint Field_string::max_packed_col_length(uint max_length)
...
@@ -6194,6 +6194,8 @@ uint Field_string::max_packed_col_length(uint max_length)
Field
*
Field_string
::
new_field
(
MEM_ROOT
*
root
,
struct
st_table
*
new_table
)
Field
*
Field_string
::
new_field
(
MEM_ROOT
*
root
,
struct
st_table
*
new_table
)
{
{
Field
*
new_field
;
if
(
type
()
!=
MYSQL_TYPE_VAR_STRING
||
table
==
new_table
)
if
(
type
()
!=
MYSQL_TYPE_VAR_STRING
||
table
==
new_table
)
return
Field
::
new_field
(
root
,
new_table
);
return
Field
::
new_field
(
root
,
new_table
);
...
@@ -6202,15 +6204,16 @@ Field *Field_string::new_field(MEM_ROOT *root, struct st_table *new_table)
...
@@ -6202,15 +6204,16 @@ Field *Field_string::new_field(MEM_ROOT *root, struct st_table *new_table)
This is done to ensure that ALTER TABLE will convert old VARCHAR fields
This is done to ensure that ALTER TABLE will convert old VARCHAR fields
to now VARCHAR fields.
to now VARCHAR fields.
*/
*/
Field
*
new_field
=
new
Field_varstring
(
field_length
,
maybe_null
(),
if
(
new_field
=
new
Field_varstring
(
field_length
,
maybe_null
(),
field_name
,
new_table
,
field_name
,
new_table
,
charset
()))
charset
());
{
/*
/*
delayed_insert::get_local_table() needs a ptr copied from old table.
delayed_insert::get_local_table() needs a ptr copied from old table.
This is what other new_field() methods do too. The above method of
This is what other new_field() methods do too. The above method of
Field_varstring sets ptr to NULL.
Field_varstring sets ptr to NULL.
*/
*/
new_field
->
ptr
=
ptr
;
new_field
->
ptr
=
ptr
;
}
return
new_field
;
return
new_field
;
}
}
...
...
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