You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL queries can be really long and when we join them into a single line we produce a less readable code (that also doesn't pass checks from static analysis tools). Let's preserve newlines and use multiline strings (""" for Python) or concatenation (as last resort).
js/ts
go
python
The text was updated successfully, but these errors were encountered:
SQL queries can be really long and when we join them into a single line we produce a less readable code (that also doesn't pass checks from static analysis tools). Let's preserve newlines and use multiline strings (
"""
for Python) or concatenation (as last resort).The text was updated successfully, but these errors were encountered: