-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:
Tuple::serialize_to
& Tuple::deserialize_from
for `LogicalTy…
…pe::Char`
- Loading branch information
Showing
6 changed files
with
59 additions
and
16 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# E021-10: Implicit casting among the fixed-length and variable-length character string types | ||
|
||
# TODO: CHARACTER and CHARACTER VARYING | ||
statement ok | ||
CREATE TABLE TABLE_E021_10_01_01 ( ID INT PRIMARY KEY, A CHARACTER ( 10 ) , B CHARACTER VARYING ( 15 ) ); | ||
|
||
# statement ok | ||
# CREATE TABLE TABLE_E021_10_01_01 ( A CHARACTER ( 10 ) , B CHARACTER VARYING ( 15 ) ); | ||
statement ok | ||
INSERT INTO TABLE_E021_10_01_01 ( ID, A, B ) VALUES ( 0, 'foo' , 'bar' ); | ||
|
||
# statement ok | ||
# INSERT INTO TABLE_E021_10_01_01 ( A, B ) VALUES ( 'foo' , 'bar' ); | ||
|
||
# query B | ||
# SELECT A = B FROM TABLE_E021_10_01_01 | ||
query B | ||
SELECT A = B FROM TABLE_E021_10_01_01 | ||
---- | ||
false |