1 | root@a50bf5b8109f:/# psql -U odoo -d postgres |
2 | psql (10.16 (Debian 10.16-1.pgdg90+1)) |
3 | Type "help" for help. |
4 | |
5 | postgres=# |
6 | postgres=# SELECT |
7 | postgres-# "res_users"."id" as "id", |
8 | postgres-# "res_users"."partner_id" as "partner_id", |
9 | postgres-# "res_users"."login" as "login", |
10 | postgres-# "res_users"."signature" as "signature", |
11 | postgres-# "res_users"."active" as "active", |
12 | postgres-# "res_users"."action_id" as "action_id", |
13 | postgres-# "res_users"."share" as "share", |
14 | postgres-# "res_users"."company_id" as "company_id", |
15 | postgres-# "res_users"."alias_id" as "alias_id", |
16 | postgres-# "res_users"."notification_type" as "notification_type", |
17 | postgres-# "res_users"."out_of_office_message" as "out_of_office_message", |
18 | postgres-# "res_users"."odoobot_state" as "odoobot_state", |
19 | postgres-# "res_users"."sale_team_id" as "sale_team_id", |
20 | postgres-# "res_users"."website_id" as "website_id", |
21 | postgres-# "res_users"."helpdesk_target_closed" as "helpdesk_target_closed", |
22 | postgres-# "res_users"."helpdesk_target_rating" as "helpdesk_target_rating", |
23 | postgres-# "res_users"."helpdesk_target_success" as "helpdesk_target_success", |
24 | postgres-# "res_users"."create_uid" as "create_uid", |
25 | postgres-# "res_users"."create_date" as "create_date", |
26 | postgres-# "res_users"."write_uid" as "write_uid", |
27 | postgres-# "res_users"."write_date" as "write_date" |
28 | postgres-# FROM |
29 | postgres-# "res_users" |
30 | postgres-# WHERE |
31 | postgres-# "res_users".id IN (2); |
32 | ERROR: relation "res_users" does not exist |
33 | LINE 24: "res_users" |
34 | ^ |