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
d0722d73
Commit
d0722d73
authored
Mar 15, 2001
by
monty@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added fix for using variables with distinct
parent
1bd0d416
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
43 additions
and
11 deletions
+43
-11
Docs/manual.texi
Docs/manual.texi
+5
-0
client/mysqltest.c
client/mysqltest.c
+6
-1
configure.in
configure.in
+1
-1
mysql-test/r/user_var.result
mysql-test/r/user_var.result
+6
-0
mysql-test/t/kill.test
mysql-test/t/kill.test
+11
-8
mysql-test/t/user_var.test
mysql-test/t/user_var.test
+10
-0
sql-bench/run-all-tests.sh
sql-bench/run-all-tests.sh
+2
-1
sql/item_func.h
sql/item_func.h
+2
-0
No files found.
Docs/manual.texi
View file @
d0722d73
...
@@ -2459,6 +2459,9 @@ A Windows GUI client by David Ecker.
...
@@ -2459,6 +2459,9 @@ A Windows GUI client by David Ecker.
Kiosk; a @strong{MySQL} client for database management. Written in Perl.
Kiosk; a @strong{MySQL} client for database management. Written in Perl.
Will be a part of Bazaar.
Will be a part of Bazaar.
@item @uref{http://www.casestudio.com/}
Db design tool that supports MySQL 3.23.
@item @uref{http://home.skif.net/~voland/zeos/eng/index.html}@*
@item @uref{http://home.skif.net/~voland/zeos/eng/index.html}@*
Zeos - A client that supports @strong{MySQL}, Interbase and PostgreSQL.
Zeos - A client that supports @strong{MySQL}, Interbase and PostgreSQL.
...
@@ -42152,6 +42155,8 @@ Fixed newly introduce bug in @code{ORDER BY}.
...
@@ -42152,6 +42155,8 @@ Fixed newly introduce bug in @code{ORDER BY}.
Fixed wrong define @code{CLIENT_TRANSACTIONS}.
Fixed wrong define @code{CLIENT_TRANSACTIONS}.
@item
@item
Fixed bug in @code{SHOW VARIABLES} when using INNOBASE tables.
Fixed bug in @code{SHOW VARIABLES} when using INNOBASE tables.
@item
Setting and using user variables in @code{SELECT DISTINCT} didn't work.
@end itemize
@end itemize
@node News-3.23.34a, News-3.23.34, News-3.23.35, News-3.23.x
@node News-3.23.34a, News-3.23.34, News-3.23.35, News-3.23.x
client/mysqltest.c
View file @
d0722d73
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
**********************************************************************/
**********************************************************************/
#define MTEST_VERSION "1.
6
"
#define MTEST_VERSION "1.
7
"
#include <global.h>
#include <global.h>
#include <my_sys.h>
#include <my_sys.h>
...
@@ -156,6 +156,7 @@ struct st_query
...
@@ -156,6 +156,7 @@ struct st_query
Q_SYNC_WITH_MASTER
,
Q_ERROR
,
Q_SYNC_WITH_MASTER
,
Q_ERROR
,
Q_SEND
,
Q_REAP
,
Q_SEND
,
Q_REAP
,
Q_DIRTY_CLOSE
,
Q_REPLACE
,
Q_DIRTY_CLOSE
,
Q_REPLACE
,
Q_PING
,
Q_UNKNOWN
,
/* Unknown command. */
Q_UNKNOWN
,
/* Unknown command. */
Q_COMMENT
,
/* Comments, ignored. */
Q_COMMENT
,
/* Comments, ignored. */
Q_COMMENT_WITH_COMMAND
Q_COMMENT_WITH_COMMAND
...
@@ -174,6 +175,7 @@ const char *command_names[] = {
...
@@ -174,6 +175,7 @@ const char *command_names[] = {
"sync_with_master"
,
"error"
,
"sync_with_master"
,
"error"
,
"send"
,
"reap"
,
"send"
,
"reap"
,
"dirty_close"
,
"replace_result"
,
"dirty_close"
,
"replace_result"
,
"ping"
,
0
0
};
};
...
@@ -1662,6 +1664,9 @@ int main(int argc, char** argv)
...
@@ -1662,6 +1664,9 @@ int main(int argc, char** argv)
case
Q_SYNC_WITH_MASTER
:
do_sync_with_master
(
q
);
break
;
case
Q_SYNC_WITH_MASTER
:
do_sync_with_master
(
q
);
break
;
case
Q_COMMENT
:
/* Ignore row */
case
Q_COMMENT
:
/* Ignore row */
case
Q_COMMENT_WITH_COMMAND
:
case
Q_COMMENT_WITH_COMMAND
:
case
Q_PING
:
(
void
)
mysql_ping
(
&
cur_con
->
mysql
);
break
;
default:
processed
=
0
;
break
;
default:
processed
=
0
;
break
;
}
}
}
}
...
...
configure.in
View file @
d0722d73
...
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
...
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT
(
sql/mysqld.cc
)
AC_INIT
(
sql/mysqld.cc
)
AC_CANONICAL_SYSTEM
AC_CANONICAL_SYSTEM
# The Docs Makefile.am parses this line!
# The Docs Makefile.am parses this line!
AM_INIT_AUTOMAKE
(
mysql, 3.23.3
4a
)
AM_INIT_AUTOMAKE
(
mysql, 3.23.3
5
)
AM_CONFIG_HEADER
(
config.h
)
AM_CONFIG_HEADER
(
config.h
)
PROTOCOL_VERSION
=
10
PROTOCOL_VERSION
=
10
...
...
mysql-test/r/user_var.result
View file @
d0722d73
@a - connection_id()
@a - connection_id()
3
3
i
1
2
i @vv1:=if(sv1.i,1,0) @vv2:=if(sv2.i,1,0) @vv3:=if(sv3.i,1,0) @vv1+@vv2+@vv3
1 1 0 1 2
2 1 0 0 1
mysql-test/t/kill.test
View file @
d0722d73
...
@@ -3,21 +3,24 @@ connect (con2, localhost, root,,test,0, mysql-master.sock);
...
@@ -3,21 +3,24 @@ connect (con2, localhost, root,,test,0, mysql-master.sock);
#remember id of con1
#remember id of con1
connection
con1
;
connection
con1
;
drop
table
if
exists
connection_kill
;
drop
table
if
exists
t1
;
create
table
connection_kill
(
kill_id
int
);
create
table
t1
(
kill_id
int
);
insert
into
connection_kill
values
(
connection_id
());
insert
into
t1
values
(
connection_id
());
#kill con1
#kill con1
connection
con2
;
connection
con2
;
select
((
@
id
:=
kill_id
)
-
kill_id
)
from
connection_kill
;
select
((
@
id
:=
kill_id
)
-
kill_id
)
from
t1
;
kill
@
id
;
kill
@
id
;
# verify that con1 is really dead
# Wait for thread to do.
--
sleep
5
# verify that con1 is doning a reconnect
connection
con1
;
connection
con1
;
error
2013
;
ping
select
1
;
ping
select
@
id
!=
connection_id
();
#make sure the server is still alive
#make sure the server is still alive
connection
con2
;
connection
con2
;
select
4
;
select
4
;
drop
table
connection_kill
;
drop
table
t1
;
mysql-test/t/user_var.test
View file @
d0722d73
...
@@ -3,3 +3,13 @@ set @a := foo;
...
@@ -3,3 +3,13 @@ set @a := foo;
set
@
a
:=
connection_id
()
+
3
;
set
@
a
:=
connection_id
()
+
3
;
select
@
a
-
connection_id
();
select
@
a
-
connection_id
();
# Check using and setting variables with SELECT DISTINCT
drop
table
if
exists
t1
,
t2
;
CREATE
TABLE
t1
(
i
int
not
null
,
v
int
not
null
,
index
(
i
));
insert
into
t1
values
(
1
,
1
),(
1
,
3
),(
2
,
1
);
create
table
t2
(
i
int
not
null
,
unique
(
i
));
insert
into
t2
select
distinct
i
from
t1
;
select
*
from
t2
;
select
distinct
t2
.
i
,
@
vv1
:=
if
(
sv1
.
i
,
1
,
0
),
@
vv2
:=
if
(
sv2
.
i
,
1
,
0
),
@
vv3
:=
if
(
sv3
.
i
,
1
,
0
),
@
vv1
+@
vv2
+@
vv3
from
t2
left
join
t1
as
sv1
on
sv1
.
i
=
t2
.
i
and
sv1
.
v
=
1
left
join
t1
as
sv2
on
sv2
.
i
=
t2
.
i
and
sv2
.
v
=
2
left
join
t1
as
sv3
on
sv3
.
i
=
t2
.
i
and
sv3
.
v
=
3
;
drop
table
t1
,
t2
;
sql-bench/run-all-tests.sh
View file @
d0722d73
...
@@ -37,6 +37,7 @@ use DBI;
...
@@ -37,6 +37,7 @@ use DBI;
$opt_silent
=
1
;
# Don't write header
$opt_silent
=
1
;
# Don't write header
@ORG_ARGV
=
@ARGV
;
chomp
(
$pwd
=
`
pwd
`
)
;
$pwd
=
"."
if
(
$pwd
eq
''
)
;
chomp
(
$pwd
=
`
pwd
`
)
;
$pwd
=
"."
if
(
$pwd
eq
''
)
;
require
"
$pwd
/bench-init.pl"
||
die
"Can't read Configuration file:
$!
\n
"
;
require
"
$pwd
/bench-init.pl"
||
die
"Can't read Configuration file:
$!
\n
"
;
$opt_silent
=
0
;
$opt_silent
=
0
;
...
@@ -46,7 +47,7 @@ $redirect= !($machine =~ /windows/i || $machine =~ "^NT\s") ? "2>&1" : "";
...
@@ -46,7 +47,7 @@ $redirect= !($machine =~ /windows/i || $machine =~ "^NT\s") ? "2>&1" : "";
$dir
=
(
$pwd
=
~ /
\\
/
)
?
'\\'
:
'/'
;
# directory symbol for shell
$dir
=
(
$pwd
=
~ /
\\
/
)
?
'\\'
:
'/'
;
# directory symbol for shell
$prog_args
=
""
;
$prog_args
=
""
;
foreach
$arg
(
@ARGV
)
foreach
$arg
(
@
ORG_
ARGV
)
{
{
if
(
$redirect
)
if
(
$redirect
)
{
{
...
...
sql/item_func.h
View file @
d0722d73
...
@@ -835,6 +835,8 @@ class Item_func_get_user_var :public Item_func
...
@@ -835,6 +835,8 @@ class Item_func_get_user_var :public Item_func
void
fix_length_and_dec
();
void
fix_length_and_dec
();
enum
Item_result
result_type
()
const
;
enum
Item_result
result_type
()
const
;
const
char
*
func_name
()
const
{
return
"get_user_var"
;
}
const
char
*
func_name
()
const
{
return
"get_user_var"
;
}
bool
const_item
()
const
{
return
0
;
}
table_map
used_tables
()
const
{
return
RAND_TABLE_BIT
;
}
};
};
class
Item_func_inet_aton
:
public
Item_int_func
class
Item_func_inet_aton
:
public
Item_int_func
...
...
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