Adding new syntax in postgre sql

From: ankit bhardwaj <ankitbhrdwj27(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Adding new syntax in postgre sql
Date: 2013-10-16 11:17:16
Message-ID: CAC4R1nmqJ9s842jJVQbaBKbff8__Vq0DXjNnLs5B0iyVcUTrbA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I am new to postgre sql .And i want to add some new feature to postgresql
As a startup i have taken the project to add syntax for table partitioning

CREATE TABLE is modified to accept a PARTITION BY clause. This clause
contains one or more partition declarations. The syntax is as follows:

PARTITION BY {partition_type} (column_name[, column_name...])
[PARTITIONS number]
(
partition_declaration[, partition_declaration...]

)

The partition type can be one of HASH, RANGE or LIST.

so can anyone tell me from where to start .
I have read all the basics
but i dont know the control flow for adding new syntax.

so please tell me how to add new syntax
from parser to executor..

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message MauMau 2013-10-16 12:07:00 Re: Auto-tuning work_mem and maintenance_work_mem
Previous Message Pavan Deolasee 2013-10-16 10:30:18 Re: Standby catch up state change