@@ -352,7 +352,7 @@ mysqlx_opt_type_t;
352
352
/**
353
353
Constants for defining the View algorithm using
354
354
mysqlx_set_view_algorithm() function.
355
- @see https://dev.mysql.com/doc/refman/5.7/ en/view-algorithms.html
355
+ @see https://dev.mysql.com/doc/refman/en/view-algorithms.html
356
356
*/
357
357
358
358
typedef enum mysqlx_view_algorithm_enum
@@ -366,7 +366,7 @@ typedef enum mysqlx_view_algorithm_enum
366
366
/**
367
367
Constants for defining the View security using
368
368
mysqlx_set_view_security() function.
369
- @see https://dev.mysql.com/doc/refman/5.7/ en/stored-programs-security.html
369
+ @see https://dev.mysql.com/doc/refman/en/stored-programs-security.html
370
370
*/
371
371
372
372
typedef enum mysqlx_view_security_enum
@@ -379,7 +379,7 @@ typedef enum mysqlx_view_security_enum
379
379
/**
380
380
Constants for defining the View check options
381
381
mysqlx_set_view_security() function.
382
- @see https://dev.mysql.com/doc/refman/5.7/ en/view-check-option.html
382
+ @see https://dev.mysql.com/doc/refman/en/view-check-option.html
383
383
*/
384
384
385
385
typedef enum mysqlx_view_check_option_enum
@@ -967,7 +967,7 @@ PUBLIC_API mysqlx_result_t * mysqlx_sql_param(mysqlx_session_t *sess,
967
967
@return statement handle containing the results and/or error.
968
968
NULL can be returned only in case when there are problems
969
969
allocating memory, which normally should not happen.
970
- It is very unlikely for this function to end with the error
970
+ It is very unlikely for this function to end with an error
971
971
because it does not do any parsing, parameter checking etc.
972
972
973
973
@note To actually execute the SQL query the returned statement has to be
@@ -1025,7 +1025,7 @@ mysqlx_collection_find(mysqlx_collection_t *collection, const char *criteria);
1025
1025
can be obtained using `mysqlx_error()` function
1026
1026
1027
1027
Each document must have a unique identifier which is stored in `_id`
1028
- filed of the document. Document identifiers are character strings no longer
1028
+ field of the document. Document identifiers are character strings no longer
1029
1029
than 32 characters. If added document does not have `_id` field, a unique
1030
1030
identifier will be generated for it. Document identifier generated by given
1031
1031
collection add operation can be examined using `mysqlx_fetch_doc_id()`
@@ -1133,8 +1133,8 @@ mysqlx_collection_modify_unset(mysqlx_collection_t *collection,
1133
1133
@return handle for the newly created FIND statement.
1134
1134
NULL can be returned only in case when there are problems
1135
1135
allocating memory, which normally should not happen.
1136
- It is very unlikely for this function to end with the error
1137
- because it does not do any parsing, parameters checking etc.
1136
+ It is very unlikely for this function to end with an error
1137
+ because it does not do any parsing, parameter checking etc.
1138
1138
1139
1139
@note To actually execute the operation, use `mysqlx_execute()`.
1140
1140
@@ -1227,8 +1227,8 @@ A macro defining a function for setting GROUP BY for FIND operation.
1227
1227
@return handle for the newly created ADD statement.
1228
1228
NULL can be returned only in case when there are problems
1229
1229
allocating memory, which normally should not happen.
1230
- It is very unlikely for this function to end with the error
1231
- because it does not do any parsing, parameters checking etc.
1230
+ It is very unlikely for this function to end with an error
1231
+ because it does not do any parsing, parameter checking etc.
1232
1232
1233
1233
@note To actually execute the operation, use `mysqlx_execute()` after
1234
1234
specifying documents to be added.
@@ -1277,8 +1277,8 @@ mysqlx_set_add_document(mysqlx_stmt_t *stmt, const char *json_doc);
1277
1277
@return handle for the newly created REMOVE statement.
1278
1278
NULL can be returned only in case when there are problems
1279
1279
allocating memory, which normally should not happen.
1280
- It is very unlikely for this function to end with the error
1281
- because it does not do any parsing, parameters checking etc.
1280
+ It is very unlikely for this function to end with an error
1281
+ because it does not do any parsing, parameter checking etc.
1282
1282
1283
1283
@note To actually execute the statement, use `mysqlx_execute()`
1284
1284
@@ -1327,8 +1327,8 @@ mysqlx_collection_remove_new(mysqlx_collection_t *collection);
1327
1327
@return handle for the newly created MODIFY statement.
1328
1328
NULL can be returned only in case when there are problems
1329
1329
allocating memory, which normally should not happen.
1330
- It is very unlikely for this function to end with the error
1331
- because it does not do any parsing, parameters checking etc.
1330
+ It is very unlikely for this function to end with an error
1331
+ because it does not do any parsing, parameter checking etc.
1332
1332
1333
1333
@note To actually execute the statement, use `mysqlx_execute()` after
1334
1334
specifying modifications that should be performed.
@@ -1604,8 +1604,8 @@ mysqlx_table_update(mysqlx_table_t *table,
1604
1604
@return handle to the newly created SELECT statement.
1605
1605
NULL can be returned only in case when there are problems
1606
1606
allocating memory, which normally should not happen.
1607
- It is very unlikely for this function to end with the error
1608
- because it does not do any parsing, parameters checking etc.
1607
+ It is very unlikely for this function to end with an error
1608
+ because it does not do any parsing, parameter checking etc.
1609
1609
1610
1610
@note To actually execute the statement, the returned handle has to be
1611
1611
given to `mysqlx_execute()`.
@@ -1688,8 +1688,8 @@ A macro defining a function for setting GROUP BY for SELECT operation.
1688
1688
@return statement handle for the newly created INSERT operation.
1689
1689
NULL can be returned only in case when there are problems
1690
1690
allocating memory, which normally should not happen.
1691
- It is very unlikely for this function to end with the error
1692
- because it does not do any parsing, parameters checking etc.
1691
+ It is very unlikely for this function to end with an error
1692
+ because it does not do any parsing, parameter checking etc.
1693
1693
1694
1694
@note To actually execute the SQL query the returned Statement has to be
1695
1695
given to `mysqlx_execute()`
@@ -1761,8 +1761,8 @@ mysqlx_set_insert_row(mysqlx_stmt_t *stmt, ...);
1761
1761
@return handle for the newly created DELETE statement.
1762
1762
NULL can be returned only in case when there are problems
1763
1763
allocating memory, which normally should not happen.
1764
- It is very unlikely for this function to end with the error
1765
- because it does not do any parsing, parameters checking etc.
1764
+ It is very unlikely for this function to end with an error
1765
+ because it does not do any parsing, parameter checking etc.
1766
1766
1767
1767
@note To actually execute the statement, use `mysqlx_execute()`.
1768
1768
@@ -1812,8 +1812,8 @@ mysqlx_table_delete_new(mysqlx_table_t *table);
1812
1812
@return handle for the newly created UPDATE statement.
1813
1813
NULL can be returned only in case when there are problems
1814
1814
allocating memory, which normally should not happen.
1815
- It is very unlikely for this function to end with the error
1816
- because it does not do any parsing, parameters checking etc.
1815
+ It is very unlikely for this function to end with an error
1816
+ because it does not do any parsing, parameter checking etc.
1817
1817
1818
1818
@note To actually execute the statement, use `mysqlx_execute()` after
1819
1819
specifying what updates should it perform.
@@ -2861,7 +2861,7 @@ mysqlx_result_next_warning(mysqlx_result_t *res);
2861
2861
The definer is used to determine access rights for the view. It is specified
2862
2862
as a valid MySQL account name of the form "user@host".
2863
2863
2864
- @see https://dev.mysql.com/doc/refman/5.7/ en/stored-programs-security.html
2864
+ @see https://dev.mysql.com/doc/refman/en/stored-programs-security.html
2865
2865
*/
2866
2866
#define VIEW_DEFINER (D ) (void*)VIEW_OPTION_DEFINER, D
2867
2867
@@ -2954,8 +2954,8 @@ mysqlx_view_create(mysqlx_schema_t *schema, const char *name,
2954
2954
@return statement handle for view create operation.
2955
2955
NULL can be returned only in case when there are problems
2956
2956
allocating memory, which normally should not happen.
2957
- It is very unlikely for this function to end with the error
2958
- because it does not do any parsing, parameters checking etc.
2957
+ It is very unlikely for this function to end with an error
2958
+ because it does not do any parsing, parameter checking etc.
2959
2959
2960
2960
@note To actually execute the statement, the returned handle has to be
2961
2961
given to `mysqlx_execute()`.
@@ -3040,8 +3040,8 @@ mysqlx_view_modify(mysqlx_schema_t *schema, const char *name,
3040
3040
@return statement handle for view modify operation.
3041
3041
NULL can be returned only in case when there are problems
3042
3042
allocating memory, which normally should not happen.
3043
- It is very unlikely for this function to end with the error
3044
- because it does not do any parsing, parameters checking etc.
3043
+ It is very unlikely for this function to end with an error
3044
+ because it does not do any parsing, parameter checking etc.
3045
3045
3046
3046
@note To actually execute the statement, the returned handle has to be
3047
3047
given to `mysqlx_execute()`.
@@ -3117,8 +3117,8 @@ mysqlx_view_replace(mysqlx_schema_t *schema, const char *name,
3117
3117
@return statement handle for view replace operation.
3118
3118
NULL can be returned only in case when there are problems
3119
3119
allocating memory, which normally should not happen.
3120
- It is very unlikely for this function to end with the error
3121
- because it does not do any parsing, parameters checking etc.
3120
+ It is very unlikely for this function to end with an error
3121
+ because it does not do any parsing, parameter checking etc.
3122
3122
3123
3123
@note To actually execute the statement, the returned handle has to be
3124
3124
given to `mysqlx_execute()`.
@@ -3202,7 +3202,7 @@ mysqlx_set_view_security(mysqlx_stmt_t *view_stmt, int security);
3202
3202
view statement object using `mysqlx_error()` or
3203
3203
`mysqlx_error_message()`.
3204
3204
3205
- @see https://dev.mysql.com/doc/refman/5.7/ en/stored-programs-security.html
3205
+ @see https://dev.mysql.com/doc/refman/en/stored-programs-security.html
3206
3206
3207
3207
@ingroup xapi_ddl
3208
3208
*/
0 commit comments