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
SELECT
r.repository_idASrepo,
c.committer_whenASdate,
file_pathASpath,
EXPLODE(UAST_EXTRACT(UAST(f.blob_content, 'Go', '//uast:Import/Path'), 'Value')) ASimportsFROMrefsASrNATURALJOINcommitsAScNATURALJOINcommit_filesAScmNATURALJOINfilesASfWHERE r.ref_name= 'HEAD'
AND f.file_pathREGEXP('.*.go$')
AND f.file_pathNOTREGEXP '^vendor.*'
ANDNOTIS_BINARY(f.blob_content)
ANDf.blob_size<1000000LIMIT10
Produced a panic with this output (reduced):
time="2019-06-19T15:59:58Z" level=error msg=
"mysql_server caught panic:\nunresolved column is a placeholder node, but IsNullable was called
/usr/local/go/src/runtime/panic.go:513
...)"
Removing the EXPLODE made it works. Tested with beta2 and beta3.
The text was updated successfully, but these errors were encountered:
This query:
Produced a panic with this output (reduced):
Removing the EXPLODE made it works. Tested with beta2 and beta3.
The text was updated successfully, but these errors were encountered: