@matrix Is drive_file.userId supposed to be surrounded by ' '? (plus there is a space between the name and the second '.)
@trinsec Without ' ' it says
ERROR: column drive_file.userid does not exist
LINE 1: SELECT id, name, url FROM drive_file WHERE drive_file.userId...
^
HINT: Perhaps you meant to reference the column "drive_file.userId".
@matrix Then maybe that trailing space is the culprit, otherwise try the double quotes (") instead?
@trinsec Neither works, removing the space does nothing and using double quotes causes this error:
ERROR: column "drive_file.userId" does not exist
LINE 1: SELECT id, name, url FROM drive_file WHERE "drive_file.userI...