Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • T torque-postgresql
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 6
    • Issues 6
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 1
    • Merge requests 1
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Carlos
  • torque-postgresql
  • Wiki
  • TODO

TODO · Changes

Page history
Updated TODO (markdown) authored Aug 10, 2018 by Carlos's avatar Carlos
Hide whitespace changes
Inline Side-by-side
TODO.md
View page @ 920186e3
......@@ -60,8 +60,7 @@ Following the PostgreSQL features list on [this page](https://www.postgresql.org
- [ ] DOCS!!!
- [ ] Auxiliary Statements
- [ ] Table Inheritance
- [ ] Composite
- [ ] CTE queries (auxiliary statements)
- [x] CTE queries (auxiliary statements)
- [x] Improve performance by saving `@base_table ||= base_table` and `@query_table ||= query_table`
- [x] Allow access to `table` and `table_name` from the class scope
- [x] Allow those access on the settings too, *this is important for recursivity*
......@@ -76,7 +75,13 @@ Following the PostgreSQL features list on [this page](https://www.postgresql.org
- [x] Allow table creation without columns when having inheritance
- [x] Keep `inherits` as an option on schema dump
- [x] FROM ONLY [DOCS](https://www.postgresql.org/docs/9.1/static/ddl-inherit.html)
- [x] Relation method `only` to affect the from operator
- [x] Relation method `only` to affect the FROM operator
- [x] Identify inherited models using `physically_inherited?`
- [x] Create a method to identify all possible child tables
- [ ] Associate this information for each individual connection
- [ ] Method to correctly cast the records
- [ ] Cast a single record
- [ ] Cast multiple records (use a relation function and association)
## next versions
......
Clone repository
  • Wiki
  • Configuring

Data types

  • Enum
  • Interval

Querying

  • Distinct On
  • Auxiliary Statements