Created
November 22, 2019 21:00
-
-
Save tym-xqo/29576037cd7ff14b573c3d896dd442c9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
-- other generic comment | |
/* :meta | |
foo: bar | |
columns: | |
- foo | |
- bar | |
- quux | |
- quuux | |
params: | |
- greeting | |
*/ | |
select cast(1.25 as float) as foo -- float check | |
-- timestamp check | |
, strftime('%Y-%m-%d', '2019-09-09') as bar | |
, 'Hello' as quux -- ascii string check | |
, 'Björk Guðmundsdóttir' as quuux -- unicode check | |
union | |
select 42 | |
, strftime('%Y-%m-%d','2031-05-25') | |
, 'yo' | |
, 'ƺƺƺƺ'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment