Compare commits

..

No commits in common. "05c59937e9cbdc62015741d1eb56656eb8d0dbd6" and "39d66e5280d5eaf80db2b85c62c233aa0dbb23b9" have entirely different histories.

2 changed files with 11 additions and 25 deletions

View File

@ -88,14 +88,12 @@ class SqliteDocumentAccessor implements DocumentAccessor {
.executeTakeFirst() as { id: number };
const id = id_lst.id;
if (tags.length > 0){
// add tags
await trx.insertInto("tags")
.values(tags.map((x) => ({ name: x })))
// on conflict is supported in sqlite and postgresql.
.onConflict((oc) => oc.doNothing())
.execute();
}
// add tags
await trx.insertInto("tags")
.values(tags.map((x) => ({ name: x })))
// on conflict is supported in sqlite and postgresql.
.onConflict((oc) => oc.doNothing())
.execute();
if (tags.length > 0) {
await trx.insertInto("doc_tag_relation")
@ -312,12 +310,10 @@ class SqliteDocumentAccessor implements DocumentAccessor {
.where("doc_id", "=", c.id)
.execute();
// update tags and doc_tag_relation
if (tags.length > 0) {
await trx.insertInto("tags")
.values(tags.map((x) => ({ name: x })))
.onConflict((oc) => oc.doNothing())
.execute();
}
await trx.insertInto("tags")
.values(tags.map((x) => ({ name: x })))
.onConflict((oc) => oc.doNothing())
.execute();
await trx.insertInto("doc_tag_relation")
.values(tags.map((x) => ({ tag_name: x, doc_id: c.id }))
)

View File

@ -22,17 +22,7 @@ export function getKysely() {
kysely = new Kysely<DB>({
dialect: createSqliteDialect(),
// plugins: [new ParseJSONResultsPlugin()],
log: (event) => {
if (event.level === "error") {
console.error("Query failed : ", {
durationMs: event.queryDurationMillis,
error: event.error,
sql: event.query.sql,
params: event.query.parameters,
});
}
}
});
}
return kysely;
}
}