|
| 1 | +control substitution on |
| 2 | + |
| 3 | +system ok |
| 4 | +rpk topic delete 'glue-sample-my-event' |
| 5 | + |
| 6 | +system ok |
| 7 | +rpk topic create 'glue-sample-my-event' |
| 8 | + |
| 9 | +system ok |
| 10 | +rpk topic produce -f '%v{hex}\\n' 'glue-sample-my-event' <<EOF |
| 11 | +03005af405ef11b5444281a2e0563e5a734606666f6f80868dc8ebd98404 |
| 12 | +EOF |
| 13 | + |
| 14 | +statement ok |
| 15 | +create source t with ( |
| 16 | + connector = 'kafka', |
| 17 | + properties.bootstrap.server='${RISEDEV_KAFKA_BOOTSTRAP_SERVERS}', |
| 18 | + topic = 'glue-sample-my-event') |
| 19 | +format plain encode avro ( |
| 20 | + aws.glue.schema_arn = 'arn:aws:glue:ap-southeast-1:123456123456:schema/default-registry/MyEvent', |
| 21 | + aws.glue.mock_config = '{ |
| 22 | + "by_id":{ |
| 23 | + "5af405ef-11b5-4442-81a2-e0563e5a7346": { |
| 24 | + "type": "record", |
| 25 | + "name": "MyEvent", |
| 26 | + "fields": [ |
| 27 | + { |
| 28 | + "name": "f1", |
| 29 | + "type": "string" |
| 30 | + }, |
| 31 | + { |
| 32 | + "name": "f2", |
| 33 | + "type": { |
| 34 | + "type": "long", |
| 35 | + "logicalType": "timestamp-micros" |
| 36 | + } |
| 37 | + } |
| 38 | + ] |
| 39 | + } |
| 40 | + }, |
| 41 | + "arn_to_latest_id":{ |
| 42 | + "arn:aws:glue:ap-southeast-1:123456123456:schema/default-registry/MyEvent": "5af405ef-11b5-4442-81a2-e0563e5a7346" |
| 43 | + } |
| 44 | + }'); |
| 45 | + |
| 46 | +query TT |
| 47 | +select * from t; |
| 48 | +---- |
| 49 | +foo 2006-01-02 22:04:05.123456+00:00 |
| 50 | + |
| 51 | +statement ok |
| 52 | +alter source t format plain encode avro ( |
| 53 | + aws.glue.schema_arn = 'arn:aws:glue:ap-southeast-1:123456123456:schema/default-registry/MyEvent', |
| 54 | + aws.glue.mock_config = '{ |
| 55 | + "by_id":{ |
| 56 | + "5af405ef-11b5-4442-81a2-e0563e5a7346": { |
| 57 | + "type": "record", |
| 58 | + "name": "MyEvent", |
| 59 | + "fields": [ |
| 60 | + { |
| 61 | + "name": "f1", |
| 62 | + "type": "string" |
| 63 | + }, |
| 64 | + { |
| 65 | + "name": "f2", |
| 66 | + "type": { |
| 67 | + "type": "long", |
| 68 | + "logicalType": "timestamp-micros" |
| 69 | + } |
| 70 | + } |
| 71 | + ] |
| 72 | + }, |
| 73 | + "4516411b-b1e7-4e67-839f-3ef1b8c29280": { |
| 74 | + "type": "record", |
| 75 | + "name": "MyEvent", |
| 76 | + "fields": [ |
| 77 | + { |
| 78 | + "name": "f1", |
| 79 | + "type": "string" |
| 80 | + }, |
| 81 | + { |
| 82 | + "name": "f2", |
| 83 | + "type": { |
| 84 | + "type": "long", |
| 85 | + "logicalType": "timestamp-micros" |
| 86 | + } |
| 87 | + }, |
| 88 | + { |
| 89 | + "name": "f3", |
| 90 | + "type": ["null", "bytes"], |
| 91 | + "default": null |
| 92 | + } |
| 93 | + ] |
| 94 | + } |
| 95 | + }, |
| 96 | + "arn_to_latest_id":{ |
| 97 | + "arn:aws:glue:ap-southeast-1:123456123456:schema/default-registry/MyEvent": "4516411b-b1e7-4e67-839f-3ef1b8c29280" |
| 98 | + } |
| 99 | + }'); |
| 100 | + |
| 101 | +query TTT |
| 102 | +select * from t; |
| 103 | +---- |
| 104 | +foo 2006-01-02 22:04:05.123456+00:00 NULL |
| 105 | + |
| 106 | +system ok |
| 107 | +rpk topic produce -f '%v{hex}\\n' 'glue-sample-my-event' <<EOF |
| 108 | +03004516411bb1e74e67839f3ef1b8c292800441428089b5e9a886ee050208deadbeef |
| 109 | +EOF |
| 110 | + |
| 111 | +query TTT |
| 112 | +select * from t order by 2; |
| 113 | +---- |
| 114 | +foo 2006-01-02 22:04:05.123456+00:00 NULL |
| 115 | +AB 2022-04-08 00:00:00.123456+00:00 \xdeadbeef |
| 116 | + |
| 117 | +statement ok |
| 118 | +drop source t; |
| 119 | + |
| 120 | +system ok |
| 121 | +rpk topic delete 'glue-sample-my-event' |
0 commit comments