Skip to content

Commit e15daff

Browse files
committed
Docs: fixes in non-public parts.
1 parent 1956bfc commit e15daff

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

cdk/core/tests/session_crud-t.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ CRUD_TEST_BEGIN(group_by)
14721472
Note: By default sql_mode ONLY_FULL_GROUP_BY is enabled.
14731473
This result in errors from queries generated by xplugin
14741474
(select list refers to fields not listed in GROUP BY clause).
1475-
See: https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_only_full_group_by
1475+
See: https://dev.mysql.com/doc/refman/en/sql-mode.html#sqlmode_only_full_group_by
14761476
*/
14771477
Reply set_mode(sess.sql("set sql_mode=''"));
14781478
set_mode.wait();

cdk/include/mysql/cdk/api/processors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class Row_processor
6060

6161

6262
/*
63-
Called before and after processing one filed within a row. The pos
63+
Called before and after processing one field within a row. The pos
6464
parameter indicates 0-based position of the field within the row.
6565
Method field_begin() returns the amount of space available for storing
6666
field data - following field_data() calls should respect this limit.

cdk/include/mysql/cdk/charsets.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/*
2626
Lists of character sets known to CDK string codec (see codec.h).
2727
This is generally kept in sync with character sets known to the MySQL Server.
28-
See: http://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html
28+
See: http://dev.mysql.com/doc/refman/en/charset-charsets.html
2929
3030
Note: currently the codec can only convert utf8 strings.
3131
*/

cdk/include/mysql/cdk/protocol/mysqlx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ class Protocol
533533
@param data Object defining rows/documents to be inserted. It is a
534534
sequence of tuples of expressions; each tuple in the sequence defines
535535
values of fields in a single row to be inserted (when inserting documents,
536-
there should be just one filed with the document).
536+
there should be just one field with the document).
537537
538538
@param args defines values of named parameters, if any are used in the
539539
expressions of the row source object

cdk/parser/expr_parser.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ Expression* Expr_parser_base::parse_atomic(Processor *prc)
12611261
/*
12621262
Now we treat the identifiers "A.B" parsed by parse_schema_ident() and
12631263
stored as table/schema name in m_col_ref (if any), as an initail segment
1264-
of a document filed reference and complete parsing the whole document
1264+
of a document field reference and complete parsing the whole document
12651265
field.
12661266
*/
12671267

xapi/mysqlx.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ mysqlx_get_node_session_from_url(http://github.com/const%20char%20*conn_string,%3C/div%3E%3C/code%3E%3C/div%3E%3C/td%3E%3C/tr%3E%3Ctr%20class=%22diff-line-row%22%3E%3Ctd%20data-grid-cell-id=%22diff-1e2caad9a6928b711ffd5bc5c54809fe2fc39d3e96a26a293135e8f63391801e-239-239-0%22%20data-selected=%22false%22%20role=%22gridcell%22%20style=%22background-color:var(--bgColor-default);text-align:center" tabindex="-1" valign="top" class="focusable-grid-cell diff-line-number position-relative diff-line-number-neutral left-side">239
239
RETURN:
240240
statement handler containing the results and/or error
241241
NULL is not supposed to be returned even in case of error.
242-
It is very unlikely for this function to end with the error
243-
because it does not do any parsing, parameters checking etc.
242+
It is very unlikely for this function to end with an error
243+
because it does not do any parsing, parameter checking etc.
244244
*/
245245
mysqlx_stmt_t * STDCALL
246246
mysqlx_sql_new(mysqlx_session_t *sess, const char *query,

0 commit comments

Comments
 (0)