2022-02-09から1日間の記事一覧

全角スペースの影響

DB

MySQL (8.0.26)mysqlで確認 drop table tab1;create table tab1(col1 bigint);create unique index ind1 on tab1(col1); drop procedure proc1; delimiter //create procedure proc1(in x int)begin declare i bigint; set i = 0; start transaction; while …

{Lambda}チュートリアル - カスタムランタイムの公開

AWS

https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/runtimes-walkthrough.html -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"unzip awscli…