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
e12dbcde
Commit
e12dbcde
authored
Dec 07, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge trift2.:/MySQL/M50/mysql-5.0
into trift2.:/MySQL/M50/push-5.0
parents
21fd6c0f
f3514dc3
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
78 additions
and
46 deletions
+78
-46
.bzrignore
.bzrignore
+2
-0
Docs/Makefile.am
Docs/Makefile.am
+1
-1
configure.in
configure.in
+5
-0
include/my_global.h
include/my_global.h
+25
-30
mysql-test/suite/funcs_1/r/innodb_views.result
mysql-test/suite/funcs_1/r/innodb_views.result
+11
-4
mysql-test/suite/funcs_1/r/memory_views.result
mysql-test/suite/funcs_1/r/memory_views.result
+11
-4
mysql-test/suite/funcs_1/r/myisam_views.result
mysql-test/suite/funcs_1/r/myisam_views.result
+11
-4
mysql-test/suite/funcs_1/views/views_master.inc
mysql-test/suite/funcs_1/views/views_master.inc
+9
-0
scripts/mysql_install_db.sh
scripts/mysql_install_db.sh
+3
-3
No files found.
.bzrignore
View file @
e12dbcde
...
@@ -1351,3 +1351,5 @@ win/vs71cache.txt
...
@@ -1351,3 +1351,5 @@ win/vs71cache.txt
win/vs8cache.txt
win/vs8cache.txt
zlib/*.ds?
zlib/*.ds?
zlib/*.vcproj
zlib/*.vcproj
scripts/make_win_src_distribution_old
server-tools/instance-manager/net_serv.cc
Docs/Makefile.am
View file @
e12dbcde
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
# along with this program; if not, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
EXTRA_DIST
=
mysql.info INSTALL-BINARY
EXTRA_DIST
=
mysql.info INSTALL-BINARY
@extra_docs@
# make sure that "make install" installs the info page, too
# make sure that "make install" installs the info page, too
# automake only seems to take care of this automatically,
# automake only seems to take care of this automatically,
...
...
configure.in
View file @
e12dbcde
...
@@ -2452,10 +2452,15 @@ AC_ARG_WITH(docs,
...
@@ -2452,10 +2452,15 @@ AC_ARG_WITH(docs,
if
test
"
$with_docs
"
=
"yes"
if
test
"
$with_docs
"
=
"yes"
then
then
docs_dirs
=
"Docs"
docs_dirs
=
"Docs"
if
test
-f
"
$srcdir
/Docs/manual.chm"
;
then
extra_docs
=
"manual.chm"
fi
else
else
docs_dirs
=
""
docs_dirs
=
""
extra_docs
=
""
fi
fi
AC_SUBST
(
docs_dirs
)
AC_SUBST
(
docs_dirs
)
AC_SUBST
(
extra_docs
)
# Shall we build the man pages?
# Shall we build the man pages?
AC_ARG_WITH
(
man,
AC_ARG_WITH
(
man,
...
...
include/my_global.h
View file @
e12dbcde
...
@@ -109,36 +109,31 @@
...
@@ -109,36 +109,31 @@
The macros below are used to allow build of Universal/fat binaries of
The macros below are used to allow build of Universal/fat binaries of
MySQL and MySQL applications under darwin.
MySQL and MySQL applications under darwin.
*/
*/
#if
def TARGET_FAT_BINARY
#if
defined(__APPLE__) && defined(__MACH__)
# undef SIZEOF_CHARP
# undef SIZEOF_CHARP
# undef SIZEOF_SHORT
# undef SIZEOF_INT
# undef SIZEOF_INT
# undef SIZEOF_LONG
# undef SIZEOF_LONG
# undef SIZEOF_LONG_LONG
# undef SIZEOF_LONG_LONG
# undef SIZEOF_OFF_T
# undef SIZEOF_OFF_T
# undef SIZEOF_SHORT
#if defined(__i386__)
# undef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
#
define SIZEOF_CHARP 4
#
define SIZEOF_SHORT 2
# define SIZEOF_INT 4
# define SIZEOF_INT 4
# define SIZEOF_LONG 4
# define SIZEOF_LONG_LONG 8
# define SIZEOF_LONG_LONG 8
# define SIZEOF_OFF_T 8
# define SIZEOF_OFF_T 8
# define SIZEOF_SHORT 2
# if defined(__i386__) || defined(__ppc__)
#elif defined(__ppc__)
# define WORDS_BIGENDIAN
# define SIZEOF_CHARP 4
# define SIZEOF_CHARP 4
# define SIZEOF_INT 4
# define SIZEOF_LONG 4
# define SIZEOF_LONG 4
# define SIZEOF_LONG_LONG 8
# elif defined(__x86_64__) || defined(__ppc64__)
# define SIZEOF_OFF_T 8
# define SIZEOF_CHARP 8
# define SIZEOF_SHORT 2
# define SIZEOF_LONG 8
# else
#else
# error Building FAT binary for an unknown architecture.
# error Building FAT binary for an unknown architecture.
#endif
# endif
#endif
/* TARGET_FAT_BINARY */
# if defined(__ppc__) || defined(__ppc64__)
# define WORDS_BIGENDIAN
# endif
#endif
/* defined(__APPLE__) && defined(__MACH__) */
/*
/*
...
...
mysql-test/suite/funcs_1/r/innodb_views.result
View file @
e12dbcde
...
@@ -9836,11 +9836,18 @@ f2
...
@@ -9836,11 +9836,18 @@ f2
two
two
SET sql_mode = 'traditional,ansi';
SET sql_mode = 'traditional,ansi';
CREATE OR REPLACE VIEW v1 AS
CREATE OR REPLACE VIEW v1 AS
SELECT f3 AS "pure column f3:", f1 + f3 AS "sum of columns f1 + f3 =",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1):",
'->' || CAST(f3 AS CHAR) || '<-'
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR):"
FROM t1 WHERE f1 = 2;
CREATE OR REPLACE VIEW v1 AS
SELECT f3 AS "pure column f3: ", f1 + f3 AS "sum of columns f1 + f3 = ",
SELECT f3 AS "pure column f3: ", f1 + f3 AS "sum of columns f1 + f3 = ",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1): ",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1): ",
'->' || CAST(f3 AS CHAR) || '<-'
'->' || CAST(f3 AS CHAR) || '<-'
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR): "
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR): "
FROM t1 WHERE f1 = 2;
FROM t1 WHERE f1 = 2;
ERROR 42000: Incorrect column name 'pure column f3: '
SELECT * FROM v1;
SELECT * FROM v1;
pure column f3: 2.20000
pure column f3: 2.20000
sum of columns f1 + f3 = 4.20000
sum of columns f1 + f3 = 4.20000
...
...
mysql-test/suite/funcs_1/r/memory_views.result
View file @
e12dbcde
...
@@ -9841,11 +9841,18 @@ f2
...
@@ -9841,11 +9841,18 @@ f2
two
two
SET sql_mode = 'traditional,ansi';
SET sql_mode = 'traditional,ansi';
CREATE OR REPLACE VIEW v1 AS
CREATE OR REPLACE VIEW v1 AS
SELECT f3 AS "pure column f3:", f1 + f3 AS "sum of columns f1 + f3 =",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1):",
'->' || CAST(f3 AS CHAR) || '<-'
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR):"
FROM t1 WHERE f1 = 2;
CREATE OR REPLACE VIEW v1 AS
SELECT f3 AS "pure column f3: ", f1 + f3 AS "sum of columns f1 + f3 = ",
SELECT f3 AS "pure column f3: ", f1 + f3 AS "sum of columns f1 + f3 = ",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1): ",
3 * (- 0.11111E+1) AS "product of constants 3 * (- 0.11111E+1): ",
'->' || CAST(f3 AS CHAR) || '<-'
'->' || CAST(f3 AS CHAR) || '<-'
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR): "
AS "expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR): "
FROM t1 WHERE f1 = 2;
FROM t1 WHERE f1 = 2;
ERROR 42000: Incorrect column name 'pure column f3: '
SELECT * FROM v1;
SELECT * FROM v1;
pure column f3: 2.20000
pure column f3: 2.20000
sum of columns f1 + f3 = 4.20000
sum of columns f1 + f3 = 4.20000
...
...
mysql-test/suite/funcs_1/r/myisam_views.result
View file @
e12dbcde
No preview for this file type
mysql-test/suite/funcs_1/views/views_master.inc
View file @
e12dbcde
...
@@ -2410,6 +2410,15 @@ SELECT * FROM v1;
...
@@ -2410,6 +2410,15 @@ SELECT * FROM v1;
# 3.3.1.54
# 3.3.1.54
--
vertical_results
--
vertical_results
SET
sql_mode
=
'traditional,ansi'
;
SET
sql_mode
=
'traditional,ansi'
;
# due to bug#32496 "no trailing blanks in identifier".
CREATE
OR
REPLACE
VIEW
v1
AS
SELECT
f3
AS
"pure column f3:"
,
f1
+
f3
AS
"sum of columns f1 + f3 ="
,
3
*
(
-
0.11111E+1
)
AS
"product of constants 3 * (- 0.11111E+1):"
,
'->'
||
CAST
(
f3
AS
CHAR
)
||
'<-'
AS
"expression with '||'=CONCAT and CAST(DECIMAL column AS CHAR):"
FROM
t1
WHERE
f1
=
2
;
# This error is not conformant with ansi (see bug#32496). hhunger
--
error
ER_WRONG_COLUMN_NAME
CREATE
OR
REPLACE
VIEW
v1
AS
CREATE
OR
REPLACE
VIEW
v1
AS
SELECT
f3
AS
"pure column f3: "
,
f1
+
f3
AS
"sum of columns f1 + f3 = "
,
SELECT
f3
AS
"pure column f3: "
,
f1
+
f3
AS
"sum of columns f1 + f3 = "
,
3
*
(
-
0.11111E+1
)
AS
"product of constants 3 * (- 0.11111E+1): "
,
3
*
(
-
0.11111E+1
)
AS
"product of constants 3 * (- 0.11111E+1): "
,
...
...
scripts/mysql_install_db.sh
View file @
e12dbcde
...
@@ -181,14 +181,14 @@ parse_arguments PICK-ARGS-FROM-ARGV "$@"
...
@@ -181,14 +181,14 @@ parse_arguments PICK-ARGS-FROM-ARGV "$@"
if
test
-n
"
$basedir
"
if
test
-n
"
$basedir
"
then
then
print_defaults
=
`
find_in_basedir my_print_defaults bin extra
`
print_defaults
=
`
find_in_basedir my_print_defaults bin extra
`
if
!
test
-x
"
$print_defaults
"
if
test
!
-x
"
$print_defaults
"
then
then
missing_in_basedir my_print_defaults
missing_in_basedir my_print_defaults
exit
1
exit
1
fi
fi
else
else
print_defaults
=
"@bindir@/my_print_defaults"
print_defaults
=
"@bindir@/my_print_defaults"
if
!
test
-x
"
$print_defaults
"
if
test
!
-x
"
$print_defaults
"
then
then
echo
"FATAL ERROR: Could not find
$print_defaults
"
echo
"FATAL ERROR: Could not find
$print_defaults
"
echo
echo
...
@@ -223,7 +223,7 @@ else
...
@@ -223,7 +223,7 @@ else
exit
1
exit
1
fi
fi
mysqld
=
`
find_in_basedir mysqld libexec sbin bin
`
mysqld
=
`
find_in_basedir mysqld libexec sbin bin
`
if
!
test
-x
"
$mysqld
"
if
test
!
-x
"
$mysqld
"
then
then
missing_in_basedir mysqld
missing_in_basedir mysqld
exit
1
exit
1
...
...
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