Opened 15 years ago

Closed 15 years ago

#11685 closed (duplicate)

enable scheme and tablespace support for postgressql

Reported by: anonymous Owned by: nobody
Component: Database layer (models, ORM) Version: 1.1
Severity: Keywords: postgresql, schema, tablespace
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

subj

Change History (2)

comment:1 by Петр Eлагин, 15 years ago

i look in code, and cant find.

'SELECT "sc_order.orders"."ord_id", "sc_order.orders"."ord_dat", "sc_order.orders"."ord_status_dat", "sc_order.orders"."ord_message", "sc_order.orders"."ost_id", "sc_order.orders"."ord_socket", "sc_order.orders"."ord_hash" FROM "sc_order.orders" ORDER BY "sc_order.orders"."ord_dat" DESC LIMIT 21'

i need :

'SELECT sc_order.orders.ord_id, sc_order.orders.ord_dat, sc_order.orders.ord_status_dat, sc_order.orders.ord_message, sc_order.orders.ost_id, sc_order.orders.ord_socket, sc_order.orders.ord_hash FROM sc_order.orders ORDER BY sc_order.orders.ord_dat DESC LIMIT 21'

no quotes!

or make special attribute db_schema in META option of model

comment:2 by Russell Keith-Magee, 15 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #6148. Please search the archive before opening new tickets.

Note: See TracTickets for help on using tickets.
Back to Top