summaryrefslogtreecommitdiff
path: root/sql/sql_yacc.yy
diff options
context:
space:
mode:
authorunknown <malff/marcsql@weblab.(none)>2006-12-04 16:31:30 -0700
committerunknown <malff/marcsql@weblab.(none)>2006-12-04 16:31:30 -0700
commit0c55e29acbf8e7597a3230ea61c1d9acd93e7181 (patch)
tree3232afd9d7649fef16e1a102579ad3de690e2587 /sql/sql_yacc.yy
parenta309ff223af24b6496f5958a807593bb0c115a74 (diff)
downloadmariadb-git-0c55e29acbf8e7597a3230ea61c1d9acd93e7181.tar.gz
No bug number.
Fixed typos in the comments. sql/sql_yacc.yy: Fixed typos
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r--sql/sql_yacc.yy6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index fcac7eb8e05..dd41c19c9e7 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -6280,7 +6280,7 @@ function_call_nonkeyword:
;
/*
- Functions calls using a non reserved keywork, and using a regular syntax.
+ Functions calls using a non reserved keyword, and using a regular syntax.
Because the non reserved keyword is used in another part of the grammar,
a dedicated rule is needed here.
*/
@@ -6495,7 +6495,7 @@ function_call_generic:
parser and the implementation in item_create.cc clean,
since this will change with WL#2128 (SQL PATH):
- INFORMATION_SCHEMA.version() is the SQL 99 syntax for the native
- funtion version(),
+ function version(),
- MySQL.version() is the SQL 2003 syntax for the native function
version() (a vendor can specify any schema).
*/
@@ -6608,7 +6608,7 @@ sum_expr:
{ $$=new Item_sum_min($3); }
/*
According to ANSI SQL, DISTINCT is allowed and has
- no sence inside MIN and MAX grouping functions; so MIN|MAX(DISTINCT ...)
+ no sense inside MIN and MAX grouping functions; so MIN|MAX(DISTINCT ...)
is processed like an ordinary MIN | MAX()
*/
| MIN_SYM '(' DISTINCT in_sum_expr ')'