Skip to content

invalid tuple comparison #2807

Description

@jycor

doltgres:

postgres=> select (1, 1) = (999, 999);
 (1, 1) = (999, 999) 
---------------------
 f
(1 row)

postgres=> select (1, 1) > (999, 999);
 (1, 1) > (999, 999) 
---------------------
 t
(1 row)

postgres=> select (1, 1) < (999, 999);
 (1, 1) < (999, 999) 
---------------------
 t
(1 row)

postgres:

postgres=> select (1, 1) = (999, 999);
 (1, 1) = (999, 999) 
---------------------
 f
(1 row)

postgres=> select (1, 1) > (999, 999);
 (1, 1) > (999, 999) 
---------------------
 f
(1 row)

postgres=> select (1, 1) < (999, 999);
 (1, 1) < (999, 999) 
---------------------
 t
(1 row)

skipped tests in gms:
https://github.com/dolthub/go-mysql-server/pull/3575/changes#diff-6df90f24b206dbf15eb1d2426c588a08ad6115526c76dae8f8b54a702c768171R1153

Metadata

Metadata

Assignees

Labels

bugSomething isn't workinggood first issueGood for newcomers

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions