mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-03 07:18:49 +01:00
🎨 Database grouping by field https://github.com/siyuan-note/siyuan/issues/10964
This commit is contained in:
parent
6e1f54238a
commit
ffb88a72d6
2 changed files with 67 additions and 67 deletions
|
|
@ -98,7 +98,7 @@ func flushTx(tx *Transaction) {
|
|||
return
|
||||
case TxErrCodeDataIsSyncing:
|
||||
util.PushMsg(Conf.Language(222), 5000)
|
||||
case TxErrWriteAttributeView:
|
||||
case TxErrHandleAttributeView:
|
||||
util.PushMsg(Conf.language(258), 5000)
|
||||
logging.LogErrorf("handle attribute view failed: %s", txErr.msg)
|
||||
default:
|
||||
|
|
@ -123,10 +123,10 @@ func PerformTransactions(transactions *[]*Transaction) {
|
|||
}
|
||||
|
||||
const (
|
||||
TxErrCodeBlockNotFound = 0
|
||||
TxErrCodeDataIsSyncing = 1
|
||||
TxErrCodeWriteTree = 2
|
||||
TxErrWriteAttributeView = 3
|
||||
TxErrCodeBlockNotFound = 0
|
||||
TxErrCodeDataIsSyncing = 1
|
||||
TxErrCodeWriteTree = 2
|
||||
TxErrHandleAttributeView = 3
|
||||
)
|
||||
|
||||
type TxErr struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue