Skip to content

Commit

Permalink
Fix workbench tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Oct 17, 2023
1 parent 34a143c commit 73f1bfa
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions integration-tests/mysql-client-tests/node/workbenchTests/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,10 @@ const readmeText = `# README
`;

export const docsTests = [
{
q: "select * from dolt_docs",
expectedErr: "table not found: dolt_docs",
},
{
q: `CREATE TABLE IF NOT EXISTS \`dolt_docs\` (
\`doc_name\` varchar(16383) NOT NULL,
\`doc_text\` varchar(16383),
PRIMARY KEY (\`doc_name\`)
)`,
res: {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: "",
serverStatus: 2,
warningStatus: 0,
},
},
{
q: "select * from dolt_docs",
res: [],
},
{
q: `CREATE TABLE IF NOT EXISTS \`dolt_docs\` (
\`doc_name\` varchar(16383) NOT NULL,
\`doc_text\` varchar(16383),
PRIMARY KEY (\`doc_name\`)
)`,
res: {
fieldCount: 0,
affectedRows: 0,
insertId: 0,
info: "",
serverStatus: 2,
warningStatus: 0,
},
},
{
q: "INSERT INTO dolt_docs VALUES (:docName, :docText) ON DUPLICATE KEY UPDATE doc_text=:docText",
p: {
Expand Down

0 comments on commit 73f1bfa

Please sign in to comment.