Nir Yarden

Results 4 issues of Nir Yarden

## Problem: Adding an alias to a projection in the SELECT clause is a pretty standard syntax: ``` SELECT count(*) AS table_size FROM Table ``` However, the evaluator breaks when...

As can be seen in [this link](https://dba.stackexchange.com/questions/95765/alias-using-as-and-without-using-as), both cases: ``` SELECT * FROM Table AS t ``` ``` SELECT * FROM Table t ``` are valid in many SQL versions,...

When I use the python-grpc module on a server, the only way I can access the active span in the code is using the RPC context (that includes the span)....

https://github.com/opentracing-contrib/python-grpc/issues/34 I'm using my fork with this fix for my needs and it works great, so I decided to suggest adding it to the main code base. never contributed to...