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
993f325d
Commit
993f325d
authored
Jan 07, 2007
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge cleanup and fix minor BUILD/... "="-equality syntax
error.
parent
a16eaf33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
BUILD/SETUP.sh
BUILD/SETUP.sh
+1
-1
mysql-test/r/view.result
mysql-test/r/view.result
+4
-4
No files found.
BUILD/SETUP.sh
View file @
993f325d
...
...
@@ -183,7 +183,7 @@ fi
# (http://samba.org/ccache) is installed, use it.
# We use 'grep' and hope 'grep' will work as expected
# (returns 0 if finds lines)
if
ccache
-V
>
/dev/null 2>&1
&&
test
"
$CCACHE_GCOV_VERSION_ENABLED
"
=
=
"1"
if
ccache
-V
>
/dev/null 2>&1
&&
test
"
$CCACHE_GCOV_VERSION_ENABLED
"
=
"1"
then
echo
"
$CC
"
|
grep
"ccache"
>
/dev/null
||
CC
=
"ccache
$CC
"
echo
"
$CXX
"
|
grep
"ccache"
>
/dev/null
||
CXX
=
"ccache
$CXX
"
...
...
mysql-test/r/view.result
View file @
993f325d
...
...
@@ -2686,12 +2686,12 @@ View Create View
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select (year(now()) - year(`t1`.`DOB`)) AS `Age` from `t1` having (`Age` < 75)
SELECT (year(now())-year(DOB)) AS Age FROM t1 HAVING Age < 75;
Age
4
3
3
9
4
2
3
8
SELECT * FROM v1;
Age
4
3
3
9
4
2
3
8
DROP VIEW v1;
DROP TABLE t1;
CREATE TABLE t1 (id int NOT NULL PRIMARY KEY, a char(6) DEFAULT 'xxx');
...
...
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