Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(Spanner): Removed JSONB array system tests #5543

Merged
merged 1 commit into from
Oct 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions Spanner/tests/System/PgWriteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public static function set_up_before_class()
arraytimestampfield timestamptz[],
arraydatefield date[],
arraypgnumericfield numeric[],
arraypgjsonbfield jsonb[],
PRIMARY KEY (id)
)',
'CREATE TABLE ' . self::COMMIT_TIMESTAMP_TABLE_NAME . ' (
Expand Down Expand Up @@ -253,9 +252,6 @@ public function arrayFieldValueProvider()
[$this->randId(), 'arraydatefield', null],
[$this->randId(), 'arraypgnumericfield', []],
[$this->randId(), 'arraypgnumericfield', null],
[$this->randId(), 'arraypgjsonbfield', null],
[$this->randId(), 'arraypgjsonbfield', []],
[$this->randId(), 'arraypgjsonbfield', null],
];
}

Expand Down Expand Up @@ -301,7 +297,6 @@ public function arrayFieldComplexValueProvider()
[$this->randId(), 'arraytimestampfield', [new Timestamp(new \DateTime),null,new Timestamp(new \DateTime)]],
[$this->randId(), 'arraydatefield', [new Date(new \DateTime),null,new Date(new \DateTime)]],
[$this->randId(), 'arraypgnumericfield', [new PgNumeric("0.12345"),null,new PgNumeric("12345")]],
[$this->randId(), 'arraypgjsonbfield', [new PgJsonb('{"a":1.1,"b":"hello"}'),null,new PgJsonb(["a" => 1])]],
];
}

Expand Down