-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #851 from dolthub/fulghum/doltgres-843
Bug fixes for double-quoted relation names
- Loading branch information
Showing
6 changed files
with
122 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
testing/bats/dataloading/tab-load-with-quoted-column-names.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
BEGIN; | ||
|
||
CREATE TABLE Regions ( | ||
"Id" SERIAL UNIQUE NOT NULL, | ||
"Code" VARCHAR(4) UNIQUE NOT NULL, | ||
"Capital" VARCHAR(10) NOT NULL, | ||
"Name" VARCHAR(255) UNIQUE NOT NULL | ||
); | ||
|
||
COPY regions ("Id", "Code", "Capital", "Name") FROM stdin; | ||
1 01 97105 Guadeloupe | ||
2 02 97209 Martinique | ||
3 03 97302 Guyane | ||
\. | ||
|
||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters