3

オンライン ポーカー プレイヤーは、オプションでプレイルーム 1 またはプレイルーム 2 へのアクセスを購入できます。

また、不正行為のために一時的に禁止される可能性があります。

CREATE TABLE users (
        uid SERIAL PRIMARY KEY,

        paid1_until timestamptz NULL,     -- may play in room 1
        paid2_until timestamptz NULL,     -- may play in room 2

        banned_until timestamptz NULL,    -- punished for cheating etc.
        banned_reason varchar(255) NULL
);

上記の表には、4 つのテスト レコードが含まれています。

INSERT INTO users (paid1_until, paid2_until, banned_until, banned_reason)
VALUES (NULL, NULL, NULL, NULL),
       (current_timestamp + interval '1 month', NULL, NULL, NULL),
       (current_timestamp + interval '2 month', current_timestamp + interval '4 month', NULL, NULL),
       (NULL, current_timestamp + interval '8 month', NULL, NULL);

4 つのレコードはすべて、異なるソーシャル ネットワーク (たとえば、Facebook、Twitter、Apple Game Center など) を介して自分自身を認証した同一人物のものです。

数値のユーザー ID のリストを (JSON 配列として) 取り、同じ人物に属するレコードを単一のレコードにマージするストアド関数を作成しようとしています - 彼女の支払いや罰を失うことはありません:

CREATE OR REPLACE FUNCTION merge_users(
        IN in_users jsonb,
        OUT out_uid integer)
        RETURNS integer AS
$func$
DECLARE
        new_paid1 timestamptz;
        new_paid2 timestamptz;
        new_banned timestamptz;
        new_reason varchar(255);
BEGIN
        SELECT min(uid),
                current_timestamp + sum(paid1_until - current_timestamp),
                current_timestamp + sum(paid2_until - current_timestamp),
                max(banned_until)
        INTO
                out_uid, new_paid1, new_paid2, new_banned
        FROM users 
        WHERE uid IN (SELECT JSONB_ARRAY_ELEMENTS(in_users));

        IF out_uid IS NOT NULL THEN
                SELECT banned_reason
                INTO new_reason
                FROM users
                WHERE new_banned IS NOT NULL
                AND banned_until = new_banned
                LIMIT 1;

                DELETE FROM users
                WHERE uid IN (SELECT JSONB_ARRAY_ELEMENTS(in_users))
                AND uid <> out_uid;

                UPDATE users 
                SET paid1_until = new_paid1,
                    paid2_until = new_paid2,
                    banned_until = new_banned,
                    banned_reason = new_reason
                WHERE uid = out_uid;
        END IF; 
END
$func$ LANGUAGE plpgsql;

残念ながら、これを使用すると次のエラーが発生します。

# TABLE users;
 uid |          paid1_until          |          paid2_until          | banned_until | banned_reason 
-----+-------------------------------+-------------------------------+--------------+---------------
   1 |                               |                               |              | 
   2 | 2016-03-27 19:47:55.876272+02 |                               |              | 
   3 | 2016-04-27 19:47:55.876272+02 | 2016-06-27 19:47:55.876272+02 |              | 
   4 |                               | 2016-10-27 19:47:55.876272+02 |              | 
(4 rows)

# select merge_users('[1,2,3,4]'::jsonb);
ERROR:  operator does not exist: integer = jsonb
LINE 6:         WHERE uid IN (SELECT JSONB_ARRAY_ELEMENTS(in_users))
                          ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.
QUERY:  SELECT min(uid),
                current_timestamp + sum(paid1_until - current_timestamp),
                current_timestamp + sum(paid2_until - current_timestamp),
                max(banned_until)
                                                                               FROM users 
        WHERE uid IN (SELECT JSONB_ARRAY_ELEMENTS(in_users))
CONTEXT:  PL/pgSQL function merge_users(jsonb) line 8 at SQL statement

問題を解決するのを手伝ってください。

便宜上、ここに SQL コードの要旨を示します。

4

1 に答える 1

6

の結果はjsonbjsonb_array_elements()要素のセットであるため、関数を使用して jsonb に明示的なキャストを追加する必要があり、演算子に置き換えられます。uidto_jsonb()IN<@

WITH t(val) AS ( VALUES
  ('[1,2,3,4]'::JSONB)
)
SELECT TRUE
FROM t,jsonb_array_elements(t.val) element
WHERE to_jsonb(1) <@ element;

あなたの場合、スニペットは次のように調整する必要があります。

...SELECT ...,JSONB_ARRAY_ELEMENTS(in_users) user_ids
WHERE to_jsonb(uid) <@ user_ids...

于 2016-02-27T20:18:02.783 に答える