File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -640,6 +640,12 @@ class Op_base
640
640
}
641
641
}
642
642
643
+ /*
644
+ Note: This is a method to implement positional '?' parmaeters which are not
645
+ used by CRUD operations (they use named parmaeters insted). The method
646
+ should not be called in this context and we use assertion to verify this.
647
+ */
648
+
643
649
void add_param (Value)
644
650
{
645
651
assert (false );
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ namespace mysqlx {
96
96
/* *
97
97
Represents a database schema.
98
98
99
- A `Schema` instance can be obtained from `Session::getSchema()`
99
+ A `Schema` instance can be obtained from `Session::getSchema()`
100
100
method:
101
101
102
102
~~~~~~
@@ -171,7 +171,7 @@ class PUBLIC_API Schema
171
171
Return `Collection` object representing named collection in
172
172
the schema. If `check_exists` is true and named collection
173
173
does not exist, an error will be thrown. Otherwise, if named
174
- collection does not exists , the returned object will refer
174
+ collection does not exist , the returned object will refer
175
175
to non-existent collection.
176
176
177
177
@note Checking existence of the collection involves
You can’t perform that action at this time.
0 commit comments