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.

Allow OR syntax on variables

See original GitHub issue

Example, suppose I have these variables:

$cudf=repo:rapidsai/cudf
$cuio_issues = is:issue is:open label:cuIO
$libcudf_issues = is:issue is:open label:libcudf -label:cuIO

It would be nice if this worked (it doesn’t appear to):

$cudf $cuio_issues OR $cudf $libcudf_issues

Instead I have to write it all out (this works):

$cudf is:issue is:open label:cuIO OR $cudf is:issue is:open label:libcudf -label:cuIO

It would also be nice if this worked:

$query1 = $cudf $cudf_issues
$query2 = $cudf $cuio_issues
$query1 OR $query2

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

github_iconTop Results From Across the Web

5. Syntax of Variable Declaration
This declares a variable, declares its data type, and reserves memory for it. It says nothing about what value is put in memory....
Read more >
Syntax of Variable Declaration
This declares a variable, declares its data type, and reserves memory for it. It says nothing about what value is put in memory....
Read more >
Variables in Java - Explore its Types with Syntax and ...
Java Variables are the storage unit that contains the value during a program execution. Learn about types of variables in Java with the...
Read more >
User defined variable syntax
User-defined variable definition syntax consists of the VARIBLE_NAME and VALUE keywords. ... In the syntax descriptions, the underlined portion of the keyword ...
Read more >
SQL Variables: Basics and usage
In this article, we will learn the notions and usage details of the SQL variable. In SQL Server, local variables are used to...
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