polardbxengine/mysql-test/suite/x/r/delete_del_bad_collection.r...

69 lines
1.2 KiB
Plaintext

create schema xtest;
command ok
RUN use xtest
0 rows affected
RUN insert into mycoll (doc) values ('{"_id": "1", "name": "Joe1"}')
1 rows affected
RUN insert into mycoll (doc) values ('{"_id": "2", "name": "Joe2", "last_name": "Smith"}')
1 rows affected
RUN insert into mycoll (doc) values ('{"_id": "3", "name": "Joe2", "last_name": "Shmo"}')
1 rows affected
send Mysqlx.Crud.Delete {
collection {
name: "mycol"
schema: "xtest"
}
data_model: DOCUMENT
criteria {
type: OPERATOR
operator {
name: "in"
param {
type: IDENT
identifier {
document_path {
type: MEMBER
value: "_id"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "1"
}
}
}
param {
type: LITERAL
literal {
type: V_OCTETS
v_octets {
value: "3"
}
}
}
}
}
}
Mysqlx.Error {
severity: ERROR
code: 1146
msg: "Table \'xtest.mycol\' doesn\'t exist"
sql_state: "42S02"
}
Mysqlx.Ok {
msg: "bye!"
}
ok
drop schema if exists xtest;