Something in 0.4.8 broke my stuff
See original GitHub issueDescribe 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:
- Created 2 years ago
- Comments:16 (11 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Upcoming release 0.4.20 finally fixes this annoying parsing error by correctly parsing emoji. Yay!
putting a space around all
*
got it working with DV 0.4.10 for me. Many thanks!