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
{{ message }}
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
They try to run SELECT * FROM table queries, which we reject because of the uid-column being selected.
Then they run the following query:
SELECTn.nspname,
c.relname,
a.attname,
a.atttypid,
t.typname,
a.attnum,
a.attlen,
a.atttypmod,
a.attnotnull,
c.relhasrules,
c.relkind,
c.oid,
Pg_get_expr(d.adbin, d.adrelid),
CASE t.typtype
WHEN 'd' THEN t.typbasetype
ELSE 0
END,
t.typtypmod,
c.relhasoidsFROM (((pg_catalog.pg_class c
inner joinpg_catalog.pg_namespace n
ONn.oid=c.relnamespaceANDc.relnameLIKE'games'ANDn.nspnameLIKE'public')
inner joinpg_catalog.pg_attribute a
ON ( NOT a.attisdropped )
ANDa.attnum>0ANDa.attrelid=c.oid)
inner joinpg_catalog.pg_type t
ONt.oid=a.atttypid)
left outer join pg_attrdef d
ONa.atthasdefANDd.adrelid=a.attrelidANDd.adnum=a.attnum
ORDER BY n.nspname,
c.relname,
attnum
to which we reply with:
2021-01-04 12:18:53.703 [info] psql server: sending {:syntax_error, "current transaction is aborted, commands ignored until end of transaction block"}
I'm not sure what is going on here to be honest.
I also don't think it necessarily needs to prevent us from making the release.
The text was updated successfully, but these errors were encountered:
This happens when pulling in table players then games in the GamesAndPlayers dataset.
However when removing games and then adding it again, I get it to work quite consistently...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
They try to run
SELECT * FROM table
queries, which we reject because of theuid
-column being selected.Then they run the following query:
to which we reply with:
I'm not sure what is going on here to be honest.
I also don't think it necessarily needs to prevent us from making the release.
The text was updated successfully, but these errors were encountered: