Query

From: "Shaunak Godbole" <shaunak(dot)godbole(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Query
Date: 2007-04-09 14:02:10
Message-ID: c51e33740704090702t5d020b7bh54bdbdad5757cb8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

As a part of my university project, I am trying to modify the postgres code
to support parallel system.

As the first step I have partitioned the data on different processors. And
have kept a master node to process all the query requests. Whenever my
master node is queried I need to push my query onto the backend processors.
For this I need a way of connect to different backends via my master node's
backend.

I have tried different functions like:
do_connect
SendQuery
PQconnectdb
etc.

But all of them give the same compilation error of not being able to find
the reference to the functions. Now if I include command.o and
common.opresent in src/bin/psql, I get the error of not referencing
other functions.

I there a way of accessing other backends through the master backend.

Thanks & Regards,
Shaunak Godbole

--
It is not the aptitude but the attitude that decides a persons altitude
Shaunak Godbole
Senior Undergraduate
Computer Science Dept.
IIT Powai, Mumbai 400076
Ph no: +91 98695 41960

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2007-04-09 14:14:41 Re: [HACKERS] Arrays of Complex Types
Previous Message Pavan Deolasee 2007-04-09 13:52:52 Re: CIC and deadlocks