Testing admin creating other topics

Ideally you can configure a topic with certain tags but I wanted to check if I can add others.

So it looks like if you restrict a “Topic” to certain tags even if you add new ones (even by admin) it will be canceled out.

I was considering doing this to keep users from making ridiculous tags.

TreeMap<Integer,String> tmap = new TreeMap<Integer, String>();
tmap.put(3, "Three");
tmap.put(1, "One");
tmap.put(2, "Two");

/*
* This will copy all the mappings of the TreeMap to HashMap object
*/
HashMap<Integer,String> hmap = new HashMap<Integer,String>(tmap);
System.out.println(hmap);
json highlighter
        {
      "timezone": "UTC",
      "serverTime": 1580890807548,
      "rateLimits": [
        {
          "rateLimitType": "REQUEST_WEIGHT",
          "interval": "MINUTE",
          "intervalNum": 1,
          "limit": 1200
        },
        {
          "rateLimitType": "ORDERS",
          "interval": "SECOND",
          "intervalNum": 10,
          "limit": 100
        },
        {
          "rateLimitType": "ORDERS",
          "interval": "DAY",
          "intervalNum": 1,
          "limit": 200000
        }
      ]

bash

#!/bin/bash
echo "Total arguments : $#"
echo "1st Argument = $1"
echo "2nd argument = $2"
SELECT Count(*) AS DistinctCountries
FROM (SELECT DISTINCT Country FROM Customers);