RE: [HACKERS] Lex and things...

From: "Ansley, Michael" <Michael(dot)Ansley(at)intec(dot)co(dot)za>
To: "'Leon'" <leon(at)udmnet(dot)ru>, "Ansley, Michael" <Michael(dot)Ansley(at)intec(dot)co(dot)za>
Cc: "'pgsql-hackers(at)postgresql(dot)org'" <pgsql-hackers(at)postgreSQL(dot)org>
Subject: RE: [HACKERS] Lex and things...
Date: 1999-08-24 13:13:15
Message-ID: 1BF7C7482189D211B03F00805F8527F70ED12B@S-NATH-EXCH2
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

As far as I understand it, the MAX_PARSE_BUFFER limit only applies if char
parsestring[] is used, not if char *parsestring is used. This is the whole
reason for using flex. And scan.l is set up to compile using char
*parsestring, not char parsestring[].

The NAMEDATALEN limit is imposed by the db structure, and is the limit of an
identifier. Because this is not actual data, I'm not too concerned with
this at the moment. As long as we can get pretty much unlimited data into
the tuples, I don't care what I have to call my tables, views, procedures,
etc.

>>
>> Ansley, Michael wrote:
>>
>> > >> Hmm. There is something going on to remove fixed length limits
>> > >> entirely, maybe someone is already doing something to lexer in
>> > >> that respect? If no, I could look at what can be done there.
>> > Yes, me. I've removed the query string limit from psql, libpq, and as
much
>> > of the backend as I can see. I have done some (very) preliminary
testing,
>> > and managed to get a 95kB query to execute. However, the two remaining
>> > problems that I have run into so far are token size (which you have
just
>> > removed, many thanks ;-),
>>
>> I'm afraid not. There is arbitrary limit (named NAMEDATALEN)
>> in lexer.
>> If identifier exeeds it, it gets '\0' at that limit, so truncated
>> effectively. Strings are also limited by MAX_PARSE_BUFFER which is
>> finally something like QUERY_BUF_SIZE = 8k*2.
>>
>> Seems that string literals are the primary target, because it is
>> real-life constraint here now. This is not the case with supposed
>> huge identifiers. Should I work on it, or will you do it yourself?
>>
>> > and string literals, which are limited, it seems
>> > to YY_BUF_SIZE (I think).
>>
>> --
>> Leon.
>>

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Adriaan Joubert 1999-08-24 13:35:02 Re: [HACKERS] Lex and things...
Previous Message Leon 1999-08-24 12:27:00 Re: [HACKERS] Lex and things...