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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
bd95e76b
Commit
bd95e76b
authored
Mar 31, 2007
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
item.cc, insert_update.result:
After merge fix.
parent
f470ac20
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/r/insert_update.result
mysql-test/r/insert_update.result
+1
-1
sql/item.cc
sql/item.cc
+1
-1
No files found.
mysql-test/r/insert_update.result
View file @
bd95e76b
...
@@ -315,7 +315,7 @@ INSERT IGNORE INTO t1 (f1) VALUES ("test1"),("test4")
...
@@ -315,7 +315,7 @@ INSERT IGNORE INTO t1 (f1) VALUES ("test1"),("test4")
ON DUPLICATE KEY UPDATE id=LAST_INSERT_ID(id);
ON DUPLICATE KEY UPDATE id=LAST_INSERT_ID(id);
SELECT LAST_INSERT_ID();
SELECT LAST_INSERT_ID();
LAST_INSERT_ID()
LAST_INSERT_ID()
1
2
SELECT * FROM t1;
SELECT * FROM t1;
id f1
id f1
1 test1
1 test1
...
...
sql/item.cc
View file @
bd95e76b
...
@@ -4370,7 +4370,7 @@ Field *Item::tmp_table_field_from_field_type(TABLE *table, bool fixed_length)
...
@@ -4370,7 +4370,7 @@ Field *Item::tmp_table_field_from_field_type(TABLE *table, bool fixed_length)
field
=
new
Field_blob
(
max_length
,
maybe_null
,
name
,
collation
.
collation
);
field
=
new
Field_blob
(
max_length
,
maybe_null
,
name
,
collation
.
collation
);
break
;
// Blob handled outside of case
break
;
// Blob handled outside of case
case
MYSQL_TYPE_GEOMETRY
:
case
MYSQL_TYPE_GEOMETRY
:
return
new
Field_geom
(
max_length
,
maybe_null
,
name
,
table
,
return
new
Field_geom
(
max_length
,
maybe_null
,
name
,
table
->
s
,
(
Field
::
geometry_type
)
(
Field
::
geometry_type
)
((
Item_geometry_func
*
)
this
)
->
get_geometry_type
());
((
Item_geometry_func
*
)
this
)
->
get_geometry_type
());
}
}
...
...
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