~ubuntu-branches/ubuntu/oneiric/postgresql-pljava/oneiric

« back to all changes in this revision

Viewing changes to src/java/pljava/org/postgresql/pljava/management/SQLDeploymentDescriptor.java

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2006-06-26 10:44:55 UTC
  • mfrom: (1.1.1 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20060626104455-135i9wosat2k8vvt
Tags: 1.3.0-1
* New upstream release (closes: #375199)
* Built for postgresql 8.1 (closes: #339641)
* Rebuilt for new libgcj library (closes: #369986)
* Updated copyright file
* Updated standards version
* Made use of cdbs simple patchsys

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2004, 2005 TADA AB - Taby Sweden
 
2
 * Copyright (c) 2004, 2005, 2006 TADA AB - Taby Sweden
3
3
 * Distributed under the terms shown in the file COPYRIGHT
4
4
 * found in the root folder of this project or at
5
5
 * http://eng.tada.se/osprojects/COPYRIGHT.html
267
267
                                break;
268
268
 
269
269
                        case '"':
270
 
                                if(inQuote == 0)
271
 
                                        throw parseError("Unexpected double qoute in SQL command");
272
 
                                m_buffer.append((char)c);
273
 
                                c = this.read();
274
 
                                break;
275
 
 
276
270
                        case '\'':
277
271
                                if(inQuote == 0)
278
272
                                {
284
278
                                        startQuotePos = -1;
285
279
                                        inQuote = 0;
286
280
                                }
287
 
 
288
281
                                m_buffer.append((char)c);
289
282
                                c = this.read();
290
283
                                break;