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
00089b81
Commit
00089b81
authored
Jul 23, 2002
by
monty@mashka.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0
parents
fc7f7a21
4082fca2
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
5 deletions
+22
-5
Docs/manual.texi
Docs/manual.texi
+5
-4
mysql-test/r/insert_set.result
mysql-test/r/insert_set.result
+6
-0
mysql-test/t/insert_set.test
mysql-test/t/insert_set.test
+10
-0
sql/sql_base.cc
sql/sql_base.cc
+1
-1
No files found.
Docs/manual.texi
View file @
00089b81
...
@@ -50157,7 +50157,8 @@ Renamed some sql variables, but old names will still work until 5.0.
...
@@ -50157,7 +50157,8 @@ Renamed some sql variables, but old names will still work until 5.0.
@item
@item
Removed not used variable @code{query_buffer_size}.
Removed not used variable @code{query_buffer_size}.
@item
@item
Fixed a bug that made the pager option in the mysql client non-functional.
Fixed a bug that made the pager option in the @code{mysql} client
non-functional.
@item
@item
Added full @code{AUTO_INCREMENT} support to @code{MERGE} tables.
Added full @code{AUTO_INCREMENT} support to @code{MERGE} tables.
@item
@item
...
@@ -50181,7 +50182,7 @@ as a synonym for bitwise @code{XOR}.
...
@@ -50181,7 +50182,7 @@ as a synonym for bitwise @code{XOR}.
Added function @code{IS_FREE_LOCK("lock_name")}.
Added function @code{IS_FREE_LOCK("lock_name")}.
Based on code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}.
Based on code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}.
@item
@item
Removed @code{mysql_ssl_clear()}, as it was not needed.
Removed @code{mysql_ssl_clear()}
from C API
, as it was not needed.
@item
@item
@code{DECIMAL} and @code{NUMERIC} types can now read exponential numbers.
@code{DECIMAL} and @code{NUMERIC} types can now read exponential numbers.
@item
@item
...
@@ -50200,7 +50201,7 @@ consistent dump of @code{InnoDB} tables.
...
@@ -50200,7 +50201,7 @@ consistent dump of @code{InnoDB} tables.
@item
@item
Fixed bug in @code{innodb_log_group_home_dir} in @code{SHOW VARIABLES}.
Fixed bug in @code{innodb_log_group_home_dir} in @code{SHOW VARIABLES}.
@item
@item
Fixed a bug in optimiser with merge tables when non-unique
s
values are
Fixed a bug in optimiser with merge tables when non-unique values are
used in summing up (causing crashes).
used in summing up (causing crashes).
@item
@item
Fixed a bug in optimiser when a range specified makes index grouping
Fixed a bug in optimiser when a range specified makes index grouping
...
@@ -50235,7 +50236,7 @@ Fixed bug in @code{DROP DATABASE} with symlink.
...
@@ -50235,7 +50236,7 @@ Fixed bug in @code{DROP DATABASE} with symlink.
@item
@item
Fixed crash in @code{REPAIR ... USE_FRM}.
Fixed crash in @code{REPAIR ... USE_FRM}.
@item
@item
Fixed bug in @code{EXPLAIN} with @code{LIMIT offset != 0}
Fixed bug in @code{EXPLAIN} with @code{LIMIT offset != 0}
.
@item
@item
Fixed bug in phrase operator @code{"..."} in boolean full-text search.
Fixed bug in phrase operator @code{"..."} in boolean full-text search.
@item
@item
mysql-test/r/insert_set.result
0 → 100644
View file @
00089b81
drop database if exists a;
create database a;
use a;
create table b (c int);
insert into a.b set a.b.c = '1';
drop database a;
mysql-test/t/insert_set.test
0 → 100644
View file @
00089b81
#
# Test of mysqld crash with fully qualified column names
#
drop
database
if
exists
a
;
create
database
a
;
use
a
;
create
table
b
(
c
int
);
insert
into
a
.
b
set
a
.
b
.
c
=
'1'
;
drop
database
a
;
sql/sql_base.cc
View file @
00089b81
...
@@ -1608,7 +1608,7 @@ find_field_in_tables(THD *thd,Item_field *item,TABLE_LIST *tables)
...
@@ -1608,7 +1608,7 @@ find_field_in_tables(THD *thd,Item_field *item,TABLE_LIST *tables)
for
(;
tables
;
tables
=
tables
->
next
)
for
(;
tables
;
tables
=
tables
->
next
)
{
{
if
(
!
strcmp
(
tables
->
name
,
table_name
)
&&
if
(
!
strcmp
(
tables
->
name
,
table_name
)
&&
(
!
db
||
!
strcmp
(
db
,
tables
->
db
)))
(
!
db
||
!
tables
->
db
||
!
strcmp
(
db
,
tables
->
db
)))
{
{
found_table
=
1
;
found_table
=
1
;
Field
*
find
=
find_field_in_table
(
thd
,
tables
->
table
,
name
,
length
,
Field
*
find
=
find_field_in_table
(
thd
,
tables
->
table
,
name
,
length
,
...
...
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