-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SET statement to pg dialect (#4927)
* Add SET statement to pg dialect * Fix statement name
- Loading branch information
Showing
2 changed files
with
41 additions
and
2 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
26 changes: 26 additions & 0 deletions
26
dialects/postgresql/src/testFixtures/resources/fixtures_postgresql/set/Test.s
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,26 @@ | ||
SET test = yes; | ||
SET test = 'yes'; | ||
SET test = DEFAULT; | ||
SET test TO yes; | ||
SET test TO 'yes'; | ||
SET test TO DEFAULT; | ||
|
||
SET SESSION test = yes; | ||
SET LOCAL test = yes; | ||
|
||
SET TIME ZONE 'PST8PDT'; | ||
SET TIME ZONE 'Europe/Paris'; | ||
SET TIME ZONE +1; | ||
SET TIME ZONE -7; | ||
SET TIME ZONE INTERVAL '-08:00' HOUR TO MINUTE; | ||
SET TIME ZONE LOCAL; | ||
SET TIME ZONE DEFAULT; | ||
|
||
SET SCHEMA 'postgres'; | ||
|
||
SET NAMES 'utf8'; | ||
SET NAMES DEFAULT; | ||
|
||
SET SEED TO 0.1; | ||
SET SEED TO -0.5; | ||
SET SEED TO DEFAULT; |