question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Something in 0.4.8 broke my stuff

See original GitHub issue

Describe the bug I have a DV table that shows upcoming brithdays (I think I got it from @Moonbase59). Since 0.4.8 it gives me the following error === Dataview: Every row during operation ‘where’ failed with an error; first 3:

        - Operator '+' is not supported for 'null' and 'number

===

To Reproduce This is the DV query being run…

## Upcoming birthDays
Here are the upcoming birthdays for the next 2 months (until =date(today) + dur(2 months)).
```dataview
TABLE birthDate as "DoB", choice(
date(today).month*100+date(today).day = birthDate.month*100+birthDate.day,(date(today)-birthDate).year,(date(today)-birthDate).year+1) as Age
FROM "People"
WHERE file.name != this.file.name and
choice(date(today).month*100+date(today).day > birthDate.month*100+birthDate.day,
(date(today).year+1)*10000 + birthDate.month*100 + birthDate.day,
date(today).year*10000 + birthDate.month*100 + birthDate.day) <= (date(today) + dur(2 months)).year*10000+(date(today) + dur(2 months)).month*100+(date(today) + dur(2 months)).day
SORT choice(
date(today).month*100+date(today).day > birthDate.month*100+birthDate.day,
(date(today).year+1)*10000 + birthDate.month*100 + birthDate.day,
date(today).year*10000 + birthDate.month*100 + birthDate.day)
```

Expected behavior Until 0.4.8 this query ran as expected. I reverted from 0.4.9, and 0.4.10, back to 0.4.7, and all is again as expected.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: Windows 10
  • Obsidian Version 0.12.16 (installer 0.12.15)

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:16 (11 by maintainers)

github_iconTop GitHub Comments

2reactions
blacksmithgucommented, Oct 20, 2021

Upcoming release 0.4.20 finally fixes this annoying parsing error by correctly parsing emoji. Yay!

0reactions
menagerie198commented, Sep 22, 2021

putting a space around all * got it working with DV 0.4.10 for me. Many thanks!

Read more comments on GitHub >

github_iconTop Results From Across the Web

bots CAN now break ALL durability blocks : r/ScrapMechanic
It's in the patch notes as - Totebots and Haybots will try to destroy blocks and parts with all durability levels. You can...
Read more >
Wireplumber breaking when reloading stored state (#202)
No, the patch applied to 0.4.8 does not appear to fix anything with this issue. However, I did some more poking around to...
Read more >
Tests for 0.4.8 - ReactOS Wiki
Software/Stage Installation Application 7‑Zip 16.04 Works Failed AbiWord 2.6.8 Works Run w/o result AbiWord 2.9.4 Works Run w/o result
Read more >
Update 0.4.8 is here! :: Scrap Mechanic Events ...
New things added to Scrap Mechanic! ... Update 0.4.8 is here! ... mean our existing worlds will be broken from the oil pits...
Read more >
Parts — kRPC 0.4.8 documentation - GitHub Pages
Instances of this class are used to interact with the parts of a vessel. ... to control the motors, steering and deployment of...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found