0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Databricks Runtime 13.1 (Beta)の新機能

Posted at

Databricks Runtime 13.1 (Beta)が公開されました。

新機能と改善点

SQL関数の追加

array_prepend(array, elem)

SQL
SELECT array_prepend(array(1, 2, 3), 0);

配列の先頭に0が追加されました。
Screenshot 2023-05-17 at 9.02.05.png

try_aes_decrypt(expr, key [, mode [, padding]])

最初にAESで暗号化します。

SQL
SELECT base64(aes_encrypt('Spark', 'abcdefghijklmnop'));
R763N8E99TwxGlt8MFIMQrX7foEv8D4rk7mYPn46rKhn

これを復号化します。

SQL
SELECT cast(try_aes_decrypt(unbase64('R763N8E99TwxGlt8MFIMQrX7foEv8D4rk7mYPn46rKhn'),
                          'abcdefghijklmnop') AS STRING);

複合化されました。

Spark

sql_keywords()

SQL
SELECT * FROM sql_keywords() LIMIT 10

キーワードがkeyword、予約語であるかどうかを示すreservedが返ってきます。予約語になるかどうかは実行時のモードによります。詳細はこちら

Screenshot 2023-05-17 at 9.03.40.png

Databricksクイックスタートガイド

Databricksクイックスタートガイド

Databricks無料トライアル

Databricks無料トライアル

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?