summaryrefslogtreecommitdiff
path: root/src/backend/parser/scan.l
Commit message (Expand)AuthorAgeFilesLines
* Remove useless whitespace at end of linesPeter Eisentraut2010-11-231-3/+3
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Change the default value of standard_conforming_strings to on.Robert Haas2010-07-201-2/+2
* Change the notation for calling functions with named parameters fromTom Lane2010-05-301-3/+1
* Fix unportable use of isxdigit() with char (rather than unsigned char)Tom Lane2010-01-161-11/+28
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Remove plpgsql's separate lexer (finally!), in favor of using the core lexerTom Lane2009-11-121-19/+35
* Re-refactor the core scanner's API, in order to get out from under the problemTom Lane2009-11-091-51/+54
* Sync psql's scanner with recent changes in backend scanner's flex rules.Tom Lane2009-09-271-6/+4
* Prevent isolated second surrogate in U& syntaxPeter Eisentraut2009-09-251-1/+7
* Remove backup states from Unicode escapes patchPeter Eisentraut2009-09-251-3/+3
* Unicode escapes in E'...' stringsPeter Eisentraut2009-09-221-1/+67
* Surrogate pair support for U& string and identifier syntaxPeter Eisentraut2009-09-211-5/+72
* Tweak the core scanner so that it can be used by plpgsql too.Tom Lane2009-07-141-8/+40
* Although the flex documentation avers that yyalloc and yyrealloc takeTom Lane2009-07-131-3/+3
* Convert the core lexer and parser into fully reentrant code, by making useTom Lane2009-07-131-172/+244
* Move some declarations in the raw-parser header files to create a clearerTom Lane2009-07-121-3/+1
* Make new complaint about unsafe Unicode literals include an error location.Tom Lane2009-05-051-3/+4
* Disable the use of Unicode escapes in string constants (U&'') whenPeter Eisentraut2009-05-051-1/+6
* Fix de-escaping checks so that we will reject \000 as well as other invalidlyTom Lane2009-04-191-18/+20
* Fix broken {xufailed} production that made HEAD fail onTom Lane2009-04-141-3/+9
* Clarify to the translator that yyerror() deals with the translation ofPeter Eisentraut2009-03-041-3/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-291-8/+180
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-9/+16
* Remove all traces that suggest that a non-Bison yacc might be supported, andPeter Eisentraut2008-08-291-2/+2
* Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3Peter Eisentraut2008-05-091-1/+2
* Oops, change should go in scan.l to survive a clean checkout and not justMagnus Hagander2008-04-041-2/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Perform post-escaping encoding validity checks on SQL literals and COPY inputAndrew Dunstan2007-09-121-1/+21
* Increase the initial size of StringInfo buffers to 1024 bytes (from 256);Tom Lane2007-08-121-2/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane2006-09-221-1/+4
* Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian2006-09-031-17/+1
* Change FETCH/MOVE to use int8.Bruce Momjian2006-09-021-1/+17
* Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane2006-05-211-1/+13
* Code review for standard_conforming_strings patch. Fix it so it does notTom Lane2006-05-111-11/+6
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-36/+67
* Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane2006-03-071-3/+1
* Enable standard_conforming_strings to be turned on.Bruce Momjian2006-03-061-39/+61
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Mark unescape_single_char() "static": as far as I can see this functionNeil Conway2006-02-181-3/+3
* Reject operator names >= NAMEDATALEN characters. These will not workTom Lane2005-08-161-1/+10
* Code review for escape-strings patch. Sync psql and plpgsql lexersTom Lane2005-06-261-18/+38
* Add E'' syntax so eventually normal strings can treat backslashesBruce Momjian2005-06-261-2/+49
* Improve comment wording.Bruce Momjian2005-06-151-6/+4
* The no-lexer-backup speedup hadn't been there a week before somebodyTom Lane2005-06-021-2/+2
* Add support for \x hex escapes in backend strings. Octal was alreadyBruce Momjian2005-06-021-2/+7
* Tweak the backend scanner (and psqlscan.l, which must track the backendTom Lane2005-05-261-22/+85
* Add fprintf() custom version to libpgport.Bruce Momjian2005-03-111-1/+2